Puppet Class: prometheus::server

Defined in:
manifests/server.pp

Summary

Install Prometheus server

Overview

Parameters:

  • hostname (String)

    is the hostname for metrics reading

  • grafana_password (String)

    is the password for grafana to access metrics

  • aws_access_key_id (String)

    sets the AWS key to use for Route53 challenge

  • aws_secret_access_key (String)

    sets the AWS secret key to use for the Route53 challenge

  • email (String)

    sets the contact address for the certificate

  • retention (String) (defaults to: '15d')

    sets the retention window for local metrics

  • targets (Array[Hash]) (defaults to: {})

    is an array of hashes of metrics targets

  • backup_target (Optional[String]) (defaults to: undef)

    sets the target repo for backups

  • backup_watchdog (Optional[String]) (defaults to: undef)

    sets the watchdog URL to confirm backups are working

  • backup_password (Optional[String]) (defaults to: undef)

    sets the encryption key for backup snapshots

  • backup_environment (Optional[Hash[String, String]]) (defaults to: undef)

    sets the env vars to use for backups

  • backup_rclone (Optional[String]) (defaults to: undef)

    sets the config for an rclone backend



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
# File 'manifests/server.pp', line 15

class prometheus::server (
  String $hostname,
  String $grafana_password,
  String $aws_access_key_id,
  String $aws_secret_access_key,
  String $email,
  String $retention = '15d',
  Array[Hash] $targets = {},
  Optional[String] $backup_target = undef,
  Optional[String] $backup_watchdog = undef,
  Optional[String] $backup_password = undef,
  Optional[Hash[String, String]] $backup_environment = undef,
  Optional[String] $backup_rclone = undef,
) {
  package { 'prometheus': }

  file { '/etc/conf.d/prometheus':
    ensure  => file,
    content => template('prometheus/conf.erb'),
    require => Package['prometheus'],
    notify  => Service['prometheus'],
  }

  file { '/etc/prometheus/prometheus.yml':
    ensure  => file,
    content => template('prometheus/prometheus.yml.erb'),
    require => Package['prometheus'],
    notify  => Service['prometheus'],
  }

  file { '/etc/prometheus/servers_node.yml':
    ensure  => file,
    content => template('prometheus/servers_node.yml.erb'),
    require => Package['prometheus'],
    notify  => Service['prometheus'],
  }

  file { '/etc/prometheus/servers_wireguard.yml':
    ensure  => file,
    content => template('prometheus/servers_wireguard.yml.erb'),
    require => Package['prometheus'],
    notify  => Service['prometheus'],
  }

  file { '/etc/prometheus/servers_systemd.yml':
    ensure  => file,
    content => template('prometheus/servers_systemd.yml.erb'),
    require => Package['prometheus'],
    notify  => Service['prometheus'],
  }

  file { '/etc/prometheus/blackbox_http.yml':
    ensure  => file,
    content => template('prometheus/blackbox_http.yml.erb'),
    require => Package['prometheus'],
    notify  => Service['prometheus'],
  }

  service { 'prometheus':
    ensure => running,
    enable => true,
  }

  nginx::site { $hostname:
    proxy_target          => 'http://localhost:9090',
    aws_access_key_id     => $aws_access_key_id,
    aws_secret_access_key => $aws_secret_access_key,
    email                 => $email,
    users                 => {
      'grafana'  => $grafana_password,
    },
  }

  package { 'prometheus-blackbox-exporter': }

  -> file { '/etc/prometheus/blackbox.yml':
    ensure => file,
    source => 'puppet:///modules/prometheus/blackbox.yml',
  }

  ~> service { 'prometheus-blackbox-exporter':
    ensure => running,
    enable => true,
  }

  if $backup_target != '' {
    backup::repo { 'prometheus':
      source        => '/var/lib/prometheus',
      target        => $backup_target,
      watchdog_url  => $backup_watchdog,
      password      => $backup_password,
      environment   => $backup_environment,
      rclone_config => $backup_rclone,
    }
  }
}