Puppet Class: filebeats
- Inherits:
- ::filebeats::params
- Defined in:
- manifests/init.pp
Overview
Class: filebeats
This module will install and configure a very basic filebeats installation.
Parameters
Document parameters here.
-
‘export_log_paths`
An array of Strings that specifies which logs the filebeats application must export.
-
‘prospectors`
An array of Hashes that specifies which groups of prospectors log entries the filebeats application must export.
-
‘elasticsearch_username`
The username filebeats should use to authenticate should your cluster make use of elasticsearch
-
‘elasticsearch_password`
The password filebeats should use to authenticate should your cluster make use of elasticsearch
-
‘elasticsearch_proxy_host`
A string containing the hostname of your proxy host used for load balancing your cluster. If left empty it will default to exporting logs to your local host on port 9200.
-
‘elasticsearch_protocol`
A string containing the protocl used by filebeats to send logs.
-
‘ssl_certificate_authorities`
An array of Strings that specifies paths to Certificate authority files.
-
‘ssl_certificate`
A String that specifies a path to your hosts certificate to use when connecting to elasticsearch.
-
‘ssl_certificate_key`
A String that specifies a path to your hosts certificate key to use when connecting to elasticsearch.
-
‘log_settings`
A puppet Hash containing log level (‘debug’, ‘warning’, ‘error’ or ‘critical’),
to_syslog(true/false), path('/var/log/filebeat'), keepfiles(7), rotateeverybytes(10485760), name(filebeats.log)
-
‘service_bootstrapped`
A boolean to turn on or off the filebeat service at boot (‘false’/‘true’), defaults to ‘true’
-
‘service_state`
A string to describe the state of the filebeats service (‘stopped’/‘running’), defaults to ‘running’ *‘loadbalance` A boolean to turn on or off load balancing for logstash outputs, defulats to false. *`logstash_hosts` An array of strings that specifies remote hosts to use for logstash outputs, e.g [’localhost:5044’] *‘logstash_index` A string that specifies the index to use for the logstash output, defaults to ’[filebeat-]YYYY.MM.DD’ as per the package. *‘logstash_bulk_max_size` A number representing the maximum number of events to bulk in a single Logstash request, e.g 2048
Setting this to zero or negative disables the splitting of batches.
*‘logstash_ttl` A string that specifies the Time To Live for a connection to Logstash, you must use a elastic duration e.g. ’5m’, ‘1h’, ‘45s’
see https://www.elastic.co/guide/en/beats/libbeat/master/config-file-format-type.html#_duration
NOTE: this option explicitly disables pipelining, it is not compatible with the async logstash client
https://www.elastic.co/guide/en/beats/filebeat/current/logstash-output.html#_literal_ttl_literal
*‘elasticsearch_index` A string that specifies the index to use for the elasticsearch output, defaults to ’[filebeat-]YYYY.MM.DD’ as per the package.
Example
Authors
Author Name <henlu.starke@hetzner.co.za>
Copyright
Copyright 2016 Henlu Starke, unless otherwise noted.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'manifests/init.pp', line 75
class filebeats (
$elasticsearch_hosts = $filebeats::params::elasticsearch_hosts,
$elasticsearch_index = $filebeats::params::elasticsearch_index,
$elasticsearch_password = $filebeats::params::elasticsearch_password,
$elasticsearch_protocol = $filebeats::params::elasticsearch_protocol,
$elasticsearch_ssl_certificate = $filebeats::params::elasticsearch_ssl_certificate,
$elasticsearch_ssl_certificate_authorities = $filebeats::params::elasticsearch_ssl_certificate_authorities,
$elasticsearch_ssl_certificate_key = $filebeats::params::elasticsearch_ssl_certificate_key,
$elasticsearch_template_enabled = $filebeats::params::elasticsearch_template_enabled,
$elasticsearch_template_name = $filebeats::params::elasticsearch_template_name,
$elasticsearch_template_overwrite = $filebeats::params::elasticsearch_template_overwrite,
$elasticsearch_template_path = $filebeats::params::elasticsearch_template_path,
$elasticsearch_username = $filebeats::params::elasticsearch_username,
$export_log_paths = $filebeats::params::export_log_paths,
$log_settings = {},
$logstash_hosts = $filebeats::params::logstash_hosts,
$logstash_bulk_max_size = $filebeats::params::logstash_bulk_max_size,
$logstash_index = $filebeats::params::logstash_index,
$logstash_loadbalance = $filebeats::params::logstash_loadbalance,
$logstash_ssl_certificate = $filebeats::params::logstash_ssl_certificate,
$logstash_ssl_certificate_authorities = $filebeats::params::logstash_ssl_certificate_authorities,
$logstash_ssl_certificate_key = $filebeats::params::logstash_ssl_certificate_key,
$logstash_ttl = $filebeats::params::logstash_ttl,
$logstash_worker = $filebeats::params::logstash_worker,
$prospectors = $filebeats::params::prospectors,
$service_bootstrapped = $filebeats::params::service_bootstrapped,
$service_state = $filebeats::params::service_state,
) inherits ::filebeats::params {
include ::elastic_stack::repo
include ::filebeats::package
class {'::filebeats::service':
service_bootstrapped => $service_bootstrapped,
service_state => $service_state,
}
class{'::filebeats::config':
elasticsearch_hosts => $elasticsearch_hosts,
elasticsearch_index => $elasticsearch_index,
elasticsearch_password => $elasticsearch_password,
elasticsearch_protocol => $elasticsearch_protocol,
elasticsearch_ssl_certificate => $elasticsearch_ssl_certificate,
elasticsearch_ssl_certificate_authorities => $elasticsearch_ssl_certificate_authorities,
elasticsearch_ssl_certificate_key => $elasticsearch_ssl_certificate_key,
elasticsearch_template_enabled => $elasticsearch_template_enabled,
elasticsearch_template_name => $elasticsearch_template_name,
elasticsearch_template_overwrite => $elasticsearch_template_overwrite,
elasticsearch_template_path => $elasticsearch_template_path,
elasticsearch_username => $elasticsearch_username,
export_log_paths => $export_log_paths,
log_settings => $log_settings,
logstash_hosts => $logstash_hosts,
logstash_bulk_max_size => $logstash_bulk_max_size,
logstash_index => $logstash_index,
logstash_loadbalance => $logstash_loadbalance,
logstash_ssl_certificate => $logstash_ssl_certificate,
logstash_ssl_certificate_authorities => $logstash_ssl_certificate_authorities,
logstash_ssl_certificate_key => $logstash_ssl_certificate_key,
logstash_ttl => $logstash_ttl,
logstash_worker => $logstash_worker,
prospectors => $prospectors,
}
Class['::filebeats::params']-> Class['::filebeats::config']
Class['::filebeats::config']-> Class['::filebeats::service']
}
|