spm_monitor
Table of Contents
Description
The spm_monitor module can install and configure Sematext Infra & App agents on CentOS, RedHat, Debian and Ubuntu systems.
Install
Install spm_monitor
as a module in your Puppet master's module path.
puppet module install sematext-spm_monitor
Usage
Using the spm_monitor::install
Class
To install Sematext Infra & App agents, just declare the spm_monitor::install class.
include 'spm_monitor::install'
or
class { 'spm_monitor::install':}
Using the spm_monitor::configure
Class
To configure Sematext Infra & App agents, you need to declare the spm_monitor::configure class with the correct parameters for the application type.
class { 'spm_monitor::configure':
'monitoring_token' => 'MONITORING_TOKEN',
'infra_token' => 'INFRA_TOKEN',
'agent_type' => 'standalone'
'app_type' => 'mysql',
'agent_args' => {
'SPM_MONITOR_MYSQL_DB_USER' => 'mysql-user',
'SPM_MONITOR_MYSQL_DB_PASSWORD' => 'mysql-password',
}
}
class { 'spm_monitor::configure':
'monitoring_token' => 'MONITORING_TOKEN',
'infra_token' => 'INFRA_TOKEN',
'agent_type' => 'standalone'
'app_type' => 'elasticsearch',
'agent_args' => {
'SPM_MONITOR_ES_NODE_HOSTPORT' => 'localhost:9200',
}
}
class { 'spm_monitor::configure':
'monitoring_token' => 'MONITORING_TOKEN',
'infra_token' => 'INFRA_TOKEN',
'agent_type' => 'standalone'
'app_type' => 'zookeeper',
'agent_args' => {
'jmx_host' => 'localhost',
'jmx_port' => '3000',
}
}
class { 'spm_monitor::configure':
'monitoring_token' => 'MONITORING_TOKEN',
'infra_token' => 'INFRA_TOKEN',
'agent_type' => 'standalone'
'app_type' => 'kafka',
'app_subtype' => 'kafka-broker',
'agent_args' => {
'jmx_host' => 'localhost',
'jmx_port' => '3000',
}
}
Limitations
This module is tested and officially supported on CentOS/RedHat 6 and 7, Debian 8 and 9 and Ubuntu 16.04 and 18.04. Testing on other platforms has been light and cannot be guaranteed.
Contributions
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request