-
-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from bramblek1/blackbox_exporter
add feature blackbox exporter
- Loading branch information
Showing
6 changed files
with
216 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
# Class: prometheus::blackbox_exporter | ||
# | ||
# This module manages prometheus blackbox_exporter | ||
# | ||
# Parameters: | ||
# [*arch*] | ||
# Architecture (amd64 or i386) | ||
# | ||
# [*bin_dir*] | ||
# Directory where binaries are located | ||
# | ||
# [*config_file*] | ||
# Absolute path to configuration file (blackbox module definitions) | ||
# | ||
# [*download_extension*] | ||
# Extension for the release binary archive | ||
# | ||
# [*download_url*] | ||
# Complete URL corresponding to the where the release binary archive can be downloaded | ||
# | ||
# [*download_url_base*] | ||
# Base URL for the binary archive | ||
# | ||
# [*extra_groups*] | ||
# Extra groups to add the binary user to | ||
# | ||
# [*extra_options*] | ||
# Extra options added to the startup command | ||
# | ||
# [*group*] | ||
# Group under which the binary is running | ||
# | ||
# [*init_style*] | ||
# Service startup scripts style (e.g. rc, upstart or systemd) | ||
# | ||
# [*install_method*] | ||
# Installation method: url or package (only url is supported currently) | ||
# | ||
# [*manage_group*] | ||
# Whether to create a group for or rely on external code for that | ||
# | ||
# [*manage_service*] | ||
# Should puppet manage the service? (default true) | ||
# | ||
# [*manage_user*] | ||
# Whether to create user or rely on external code for that | ||
# | ||
# [*modules*] | ||
# Structured, array of blackbox module definitions for different probe types | ||
# | ||
# [*os*] | ||
# Operating system (linux is the only one supported) | ||
# | ||
# [*package_ensure*] | ||
# If package, then use this for package ensure default 'latest' | ||
# | ||
# [*package_name*] | ||
# The binary package name - not available yet | ||
# | ||
# [*restart_on_change*] | ||
# Should puppet restart the service on configuration change? (default true) | ||
# | ||
# [*service_enable*] | ||
# Whether to enable the service from puppet (default true) | ||
# | ||
# [*service_ensure*] | ||
# State ensured for the service (default 'running') | ||
# | ||
# [*service_name*] | ||
# Name of the node exporter service (default 'blackbox_exporter') | ||
# | ||
# [*user*] | ||
# User which runs the service | ||
# | ||
# [*version*] | ||
# The binary release version | ||
# | ||
# Example for configuring named blackbox modules via hiera | ||
# details of the format: https://github.com/prometheus/blackbox_exporter/blob/master/CONFIGURATION.md | ||
# | ||
# --- | ||
# prometheus::blackbox::exporter::modules: | ||
# simple_ssl: | ||
# prober: http | ||
# timeout: 10s | ||
# valid_status_codes: 2xx | ||
# fail_if_not_ssl: true | ||
# easy_tcp: | ||
# prober: tcp | ||
# preferred_ip_protocol: ip4 | ||
class prometheus::blackbox_exporter ( | ||
Hash $modules = {}, | ||
String $arch = $::prometheus::params::arch, | ||
String $bin_dir = $::prometheus::params::bin_dir, | ||
String $config_file = $::prometheus::params::blackbox_exporter_config_file, | ||
String $config_mode = $::prometheus::params::config_mode, | ||
String $download_extension = $::prometheus::params::blackbox_exporter_download_extension, | ||
Variant[Undef,String] $download_url = undef, | ||
String $download_url_base = $::prometheus::params::blackbox_exporter_download_url_base, | ||
Array[String] $extra_groups = $::prometheus::params::blackbox_exporter_extra_groups, | ||
String $extra_options = '', | ||
String $group = $::prometheus::params::blackbox_exporter_group, | ||
String $init_style = $::prometheus::params::init_style, | ||
String $install_method = $::prometheus::params::install_method, | ||
Boolean $manage_group = true, | ||
Boolean $manage_service = true, | ||
Boolean $manage_user = true, | ||
String $os = $::prometheus::params::os, | ||
String $package_ensure = $::prometheus::params::blackbox_exporter_package_ensure, | ||
String $package_name = $::prometheus::params::blackbox_exporter_package_name, | ||
Boolean $restart_on_change = true, | ||
Boolean $service_enable = true, | ||
String $service_ensure = 'running', | ||
String $service_name = 'blackbox_exporter', | ||
String $user = $::prometheus::params::blackbox_exporter_user, | ||
String $version = $::prometheus::params::blackbox_exporter_version, | ||
) inherits prometheus::params { | ||
# Prometheus added a 'v' on the release name at 0.1.0 of blackbox | ||
if versioncmp ($version, '0.1.0') >= 0 { | ||
$release = "v${version}" | ||
} | ||
else { | ||
$release = $version | ||
} | ||
$real_download_url = pick($download_url,"${download_url_base}/download/${release}/${package_name}-${version}.${os}-${arch}.${download_extension}") | ||
$notify_service = $restart_on_change ? { | ||
true => Service[$service_name], | ||
default => undef, | ||
} | ||
|
||
$options = "-config.file=${config_file} ${extra_options}" | ||
|
||
file { $config_file: | ||
ensure => present, | ||
owner => $user, | ||
group => $group, | ||
mode => $config_mode, | ||
content => template('prometheus/blackbox_exporter.yaml.erb'), | ||
notify => $notify_service, | ||
} | ||
|
||
|
||
prometheus::daemon { $service_name : | ||
install_method => $install_method, | ||
version => $version, | ||
download_extension => $download_extension, | ||
os => $os, | ||
arch => $arch, | ||
real_download_url => $real_download_url, | ||
bin_dir => $bin_dir, | ||
notify_service => $notify_service, | ||
package_name => $package_name, | ||
package_ensure => $package_ensure, | ||
manage_user => $manage_user, | ||
user => $user, | ||
extra_groups => $extra_groups, | ||
group => $group, | ||
manage_group => $manage_group, | ||
options => $options, | ||
init_style => $init_style, | ||
service_ensure => $service_ensure, | ||
service_enable => $service_enable, | ||
manage_service => $manage_service, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
require 'spec_helper' | ||
|
||
describe 'prometheus::blackbox_exporter' do | ||
on_supported_os.each do |os, facts| | ||
context "on #{os}" do | ||
let(:facts) do | ||
facts | ||
end | ||
|
||
context 'with version specified' do | ||
let(:params) do | ||
{ | ||
version: '0.6.0', | ||
arch: 'amd64', | ||
os: 'linux', | ||
modules: { | ||
'http_2xx' => { | ||
'prober' => 'http' | ||
} | ||
} | ||
} | ||
end | ||
|
||
describe 'install correct binary' do | ||
it { is_expected.to contain_file('/usr/local/bin/blackbox_exporter').with('target' => '/opt/blackbox_exporter-0.6.0.linux-amd64/blackbox_exporter') } | ||
end | ||
describe 'config file contents' do | ||
it { | ||
is_expected.to contain_file('/etc/blackbox-exporter.yaml') | ||
verify_contents(catalogue, '/etc/blackbox-exporter.yaml', ['---', 'modules:', ' http_2xx:', ' prober: http']) | ||
} | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<% require 'yaml' -%> | ||
<% full_config = { 'modules'=>@modules } -%> | ||
<%= full_config.to_yaml -%> |