metricbeat
Version information
This version is compatible with:
- Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 4.7.0 < 7.0.0
- , , , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'coreyh-metricbeat', '0.5.0'
Learn more about managing modules with a PuppetfileDocumentation
metricbeat
Table of Contents
- Description
- Setup - The basics of getting started with metricbeat
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Description
The metricbeat
installs the metricbeat operating system and service collector maintained by elastic.
Setup
What metricbeat affects
By default metricbeat
adds a software repository to your system and installs metricbeat
along with required configurations.
Beginning with metricbeat
Full metricbeat
functionality cam be configured with the modules
and outputs
parameters
declared. This module can run but the metricbeat agent on the nodes may not start their
services without these parameters defined.
class{'metricbeat':
modules => [
{
'module' => 'system',
'metricsets' => [
'cpu',
'load',
'memory',
'process',
],
'processes' => ['.*'],
},
],
outputs => {
'elasticsearch' => {
'hosts' => ['http://localhost:9200'],
'index' => 'metricbeat',
},
},
}
Usage
As of this writing all the default values follow the upstream values. This module saves all configuration
options in a to_yaml()
fashion. Therefore this allows some advanced configuration settings to be easily
rendered.
To ship metrics from an Apache Web Server to Elasticsearch
class{'metricbeat':
modules => [
{
'module' => 'apache',
'metricsets' => ['status'],
'hosts' => ['http://localhost'],
},
],
outputs => {
'elasticsearch' => {
'hosts' => ['http://localhost:9200'],
},
},
}
To ship metrics from a MySQL Database Server to Logstash
class{'metricbeat':
modules => {
'module' => 'mysql',
'metricsets' => ['status'],
'hosts' => ['tcp(127.0.0.1:3306)/']
'username' => 'root',
'password' => 'secret',
},
outputs => {
'logstash' => {
'hosts' => ['localhost:5044'],
},
},
}
To use the module via Hiera:
metricbeat::major_version: '6'
metricbeat::manage_repo: true
metricbeat::package_ensure: 'latest'
metricbeat::cloud_id: 'xxx'
metricbeat::cloud_auth: 'xxx:xxx'
metricbeat::fields_under_root: true
metricbeat::fields:
'metricbeat.config.modules':
'path': '${path.config}/modules.d/*.yml'
'reload.enabled': false
'setup.dashboards.enabled': true
'setup.template.settings':
'index.number_of_shards': 1
'index.codec': 'best_compression'
metricbeat::outputs:
'elasticsearch':
'hosts': 'localhost:9200'
metricbeat::xpack:
'monitoring':
'enabled': true
metricbeat::module_templates:
- system
Please review the elastic documentation for configuration options and service compatability.
Upgrade to 6.0
Version 0.2.0 of this module supports Metricbeat 6.0. Please review the Metricbeat Changelog for a full list of software changes and the module changelog for a list of module updates.
To upgrade existing installations:
class{'metricbeat':
'major_version' => '6',
'package_ensure' => 'latest',
...
}
Processors
Libbeat 5.0 and later include a feature for filtering/enhancing exported data
called processors.
These may be added into the configuration by populating the processors
parameter
and may apply to all events or those that match certain conditions.
To drop events when field apache.status.total_accesses
is 0
class{'metricbeat':
processors => [
{
'drop_event' => {
'when' => {
'apache.status.total_accesses' => 0,
}
}
}
],
...
}
To drop the mysql.status.aborted.clients
field from the output
class{'metricbeat':
processors => [
{
'drop_field' => {
'fields' => 'mysql.status.aborted.clients',
}
}
]
}
Please review the documentation
Reference
Public Classes
Class: metricbeat
Installs and configures metricbeat.
Parameters within metricbeat
apt_repo_url
: [HTTP(S) URL] The URL of the APT repository to install Metricbeat from. Only applicable on Debian systems. (default: "https://artifacts.elastic.co/packages/${metricbeat::major_version}.x/apt")cloud_id
: [String] Override theoutput.elasticsearch.hosts
andsetup.kibana.host
options. You can find the value in the Elastic Cloud web UI. (default: undef)cloud_auth
: [String] Override theoutput.elasticsearch.username
andoutput.elasticsearch.password
options. This is in the format of<user>:<password>
. (default: undef)modules
: [Array[Hash]] The required metricbeat.modules section of the configuration.outputs
: [Hash] The required output section of the configuration.beat_name
: [String] The name of the beat shipper (default: hostname)config_dir
: [String] The absolute path to where the Metricbeat configuration exists. (default: /etc/metricbeat on Linux, C:/Program Files/Metricbeat on Windows)config_mode
: [String] The file permission mode of the Metricbeat config file in octal format. (default: 0600)ensure
: [String] Valid values are 'present' and 'absent'. Determines weather to manage all required resources or remove them from the node. (default: 'present')disable_config_test
: [Boolean] If true, disable configuration file testing. It is generally recommended to leave this parameter at this default value. (default: false)download_url
: [HTTP(S) URL] The URL of the ZIP file to download. Only applicable on Windows systems. (default: undef)fields
: [Hash] Optional fields to add any additional information to the output. (default: undef)fields_under_root
: [Boolean] By default custom fields are under afields
sub-dictionary. When set to true custom fields are added to the root-level document. (default: false)install_dir
: [String] The absolute path to the location where Metricbeat will be installed. Only applicable on Windows systems. (default: C:/Program Files)logging
: [Hash] Defines metricbeat's logging configuration, if not explicitly configured all logging output is forwarded to syslog on Linux nodes and file output on Windows. See the docs for all available options.major_version
: [String] The major version of Metricbeat to install and manage. (default: 5)manage_repo
: [Boolean] When false does not install the upstream repository to the node's package manager. (default: true)package_ensure
: [String] The desired state of the Package resources. Only applicable ifensure
is 'present'. (default: 'present')processors
: [Array[Hash]] Add processors to the configuration to run on data before sending to the output. (default: undef)proxy_address
: [HTTP(S) URL] The proxy address used for downloading files. (default: undef)queue
: [Hash] Configure the internal queue in packetbeat before being consumed by the output(s) in 6.x versions and greater.queue_size
: [Integer] The queue size for single events in the processing pipeline. This is only applicable ifmajor_version
is '5'. (default: 1000)service_ensure
: [String] Determine the state of the metricbeat service. Must be one of 'enabled', 'disabled', 'running', 'unmanaged'. (default: enabled)service_has_restart
: [Boolean] When true the Service resource issues the 'restart' command instead of 'stop' and 'start'. (default: true)service_provider
: [String] The optional service provider of the node. (default: 'redhat' on RedHat nodes, undef otherwise)tags
: [Array] Optional list of tags to help group different logical properties easily. (default: undef)tmp_dir
: [String] The absolute path to a temporary directory. On Windows systems this is the target directory for the ZIP file download. (default: /tmp on Linux, C:\Windows\Temp on Windows)url_arch
: [String] The optional architecture of the target node. Only applicable on Windows systems. (default: x86 or x64)xpack
: [Hash] Configuration items to export internal stats to a monitoring Elasticsearch cluster. (default: undef)yum_repo_url
: [String] The URL of the YUM repository to install Metricbeat from. Only applicable on RedHat or Suse systems. (default: "https://artifacts.elastic.co/packages/${metricbeat::major_version}.x/yum")
Private Classes
Class: metricbeat::config
Manages metricbeats main configuration file.
Class: metricbeat::install
Installs the metricbeat package.
Class: metricbeat::repo
Installs the upstream Yum or Apt repository for the system package manager.
Class: metricbeat::service
Manages the metricbeat service.
Custom module templates
Define a custom configuration file in the modules.d directory using the metricbeat::modulesd
resource type.
Parameters within metricbeat::modulesd
template_name
: [String] Filename of the template in modules.dconfig
: [Hash] For passing parameters down to the .erb templatesource
: Optional[String] Path for the file 'source' parameter, mutually exclusive withcontent
content
: Optional[String] Path for the file 'content' parameter, mutually exclusive withsource
Example usage:
metricbeat::modulesd { 'module_name':
config => $custom_hash,
content => template("path/to/your/template.yml.erb"),
}
Limitations
This module does not support loading kibana dashboards or elasticsearch templates, used when outputting to Elasticsearch.
Development
Pull requests and bug reports are welcome. If you're sending a pull request, please consider writing tests if applicable.
Testing
Sandbox testing is done through the PDK utility provided by
Puppet. To utilize PDK
execute the following commands to validate and
test the new code:
- Validate syntax of
metadata.json
, all*.pp*
and all*.rb
files
pdk validate
- Perform tests
pdk test unit
Changelog
All notable changes to this project will be documented in this file.
Release 0.5.0
Release 0.4.2
Added
- Parameter
$metricbeat::extract_method
to select which extraction method to use for the downloaded zip file. Only applicable for Windows. Valid values areshell
andarchive
- Parameter
$metricbeat::setup
to add common configuration options for metricbeat.yml across a deployment. Typically useful for Heira
Fixes
- Updating the Powershell dependency requirement to use < 5.0.0 versions
Release 0.4.1
Added
- Custom resource
metricbeat::modulesd
Fixes
- Updating dependencies to newer major version
Release 0.4.0
Added
- Built-in Metricbeat modules may be enabled and configured through Hiera
- Support for 7.x installations of Metricbeat
- Cloud ID and Auth properties to simplify usage with Elastic Cloud
Fixes
- The command-line option
path.config
is explicitly declared in the validate commands
Release 0.3.0
Added
- Support for Puppet 6.x
- Support for Windows OS
- XPack configuration for >= 6.x installations
Release 0.2.0
Breaking
Added
- Parameter
major_version
to configure 6.x versions of vendor repositories -- Parameterqueue_size
applies only ifmajor_version
== '5' Parameterqueue
to configure the internal queue in 6.x versions
Fixes
- Changing the
modules
andprocessor
type fromTuple[hash]
toArray[Hash]
(#4)
Release 0.1.0
- Initial release, please review module and metricbeat documentation for configuration options.
Dependencies
- puppetlabs-stdlib (>= 4.13.0 < 7.0.0)
- puppetlabs-apt (>= 4.0.0 < 8.0.0)
- puppet/archive (>= 0.5.0 < 5.0.0)
- puppetlabs-powershell (>= 1.0.1 < 5.0.0)
- puppet-zypprepo (>= 2.0.0 < 4.0.0)
- puppetlabs-pwshlib (>= 0.1.0 < 1.0.0)
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.