Puppet Class: prometheus

Defined in:
manifests/init.pp

Summary

Basic Prometheus settings

Overview

Parameters:

  • server_ip (String)

    is the IP address of the prometheus server

  • address (String) (defaults to: $facts['networking']['ip'])

    is how this server is reached



5
6
7
8
9
10
11
12
13
# File 'manifests/init.pp', line 5

class prometheus (
  String $server_ip,
  String $address = $facts['networking']['ip'],
) {
  file { '/etc/identifier':
    ensure  => file,
    content => $address,
  }
}