Prometheus
- Prometheus Charmers
- Monitoring
Channel | Revision | Published | Runs on |
---|---|---|---|
latest/stable | 11 | 08 Apr 2021 | |
latest/candidate | 6 | 08 Apr 2021 | |
latest/edge | 9 | 08 Apr 2021 |
juju deploy prometheus
Deploy universal operators easily with Juju, the Universal Operator Lifecycle Manager.
Platform:
-
custom-rules | string
Plan text rules to be loaded by prometheus.yml
-
daemon-args | string
Arbitary string containing list of arguments, separated by a semi-colon to be given to the prometheus daemon. Examples: "-my-famous-arg 1; -my-almost-famous-arg 2 3 4 5 6; -my-boring-arg 7"
-
evaluation-interval | string
Default: 15s
Default evaluation interval
-
external-labels | string
a comma-separated list of label=value labels that are applied to all metrics exported via federation. (E.g. label1=foo,label2=bar)
-
external_url | string
The URL under which Prometheus is externally reachable (for example, if Prometheus is served via a reverse proxy). Used for generating relative and absolute links back to Prometheus itself. If the URL has a path portion, it will be used to prefix all HTTP endpoints served by Prometheus. If omitted, relevant URL components will be derived automatically. It's templatized to accept the following vars: {private_address}, {public_address}, {port}, thus you can use e.g.: juju set prometheus external_url="http://{private_address}:{port}/"
-
federate-config | string
This will be parsed as YAML, format is a list of dicts as shown in the example. Example:
- job_name: 'prom-2'
params:
'match[]':
- '{job="prometheus"}'
- '{name=~"^job:"}'
targets:
- 'source-prometheus-2:9090'
- job_name: 'prod-1'
scheme: https
metrics_path: /prometheus/federate
params:
'match[]':
- '{job=~".+"}'
targets:
- 'my-production-site:443' label: production
- job_name: 'prom-2'
params:
'match[]':
- '{job="prometheus"}'
- '{name=~"^job:"}'
targets:
-
install_keys | string
YAML list of GPG keys for installation sources, as a string. For apt repository URLs, use the public key ID used to verify package signatures. For other sources such as PPA, use empty string. This list must have the same number of elements as install_sources, even if the key items are all empty string. An example to go with the above for install_sources: install_keys: |
- "ABC"
- ""
-
install_method | string
Default: snap
How to install prometheus. If set to "apt" the package will be installed using apt-get. If set to "snap", empty string or unset snap package will be installed
-
install_sources | string
Default: [ "ppa:canonical-bootstack/prometheus" ]
YAML list of additional installation sources, as a string. The number of install_sources must match the number of install_keys. For example: install_sources: |
- ppa:project1/ppa
- ppa:project2/ppa
-
label-juju-units | boolean
If set to true, a "juju_unit" label is added to metrics with the name of the related juju unit. If the related unit is a subordinate, it should set the "principal-unit" key on the relation, with the name of the unit it's related to.
-
monitor-name | string
Prometheus monitor name, will default <service_name>-monitor if not set
-
nagios_context | string
Default: juju
A string that will be prepended to instance name to set the host name in nagios. So for instance the hostname would be something like: juju-myservice-0 If you're running multiple environments with the same services in them this allows you to differentiate between them.
-
nagios_servicegroups | string
Default: juju
Comma separated list of nagios servicegroups for the graphite check
-
prometheus_registration_authtoken | string
Default: changeme
The authtoken used with prometheus registration requests.
-
prometheus_registration_listen | string
The ip prometheus registration will listen on, leave undefined to skip installation and setup of prometheus registration, set to 0.0.0.0 to listen on all interfaces.
-
prometheus_registration_port | int
Default: 12321
The port the prometheus registration service will listen on.
-
rules-repo | string
Git repository with custom rules. Rules have to be in *.rules files
-
rules-update-notify-email | string
Email address that will receive cronned rule update failure emails
-
rules-update-schedule | string
Default: */10 * * * *
Cron format schedule used for refresh from external rules repo. Only used if "rules-repo" is set
-
rules-update-ssh-key | string
Plain text private SSH key used to for git authentication. Also see "rules-repo" config option
-
scrape-interval | string
Default: 15s
Interval at which to scrape targets
-
scrape-jobs | string
Can be used to add custom scrape jobs, for example SNMP exporter config. This will be parsed as YAML, format is a list of dicts as shown in the example. For convenience "{{ snmp_exporter }}" and "{{ blackbox_exporter }}" will be replaced with SNMP and blackbox exporter addresses respectively. Example:
job_name: 'snmp' scrape_interval: 1m scrape_timeout: 1m static_configs: params:
- targets:
- device1.example.com
- device2.example.com
module: [default] relabel_configs:
- source_labels: [address] target_label: __param_target
- source_labels: [__param_target] target_label: instance
- target_label: address replacement: "{{ snmp_exporter }}" # SNMP exporter.
- targets:
job_name: 'my-job' scrape_interval: 30s scrape_timeout: 30s static_configs:
- targets:
- server1.example.com
- server2.example.com
- targets:
-
snap_channel | string
Default: stable
If install_method is set to "snap" this option controlls channel name.
Supported values are: "stable", "candidate", "beta" and "edge" -
snap_proxy | string
DEPRECATED. Use snap-http-proxy and snap-https-proxy model configuration settings. HTTP/HTTPS web proxy for Snappy to use when accessing the snap store.
-
snap_proxy_url | string
DEPRECATED. Use snap-store-proxy model configuration setting. The address of a Snap Store Proxy to use for snaps e.g. http://snap-proxy.example.com
-
snapd_refresh | string
How often snapd handles updates for installed snaps. The default (an empty string) is 4x per day. Set to "max" to check once per month based on the charm deployment date. You may also set a custom string as described in the 'refresh.timer' section here: https://forum.snapcraft.io/t/system-options/87
-
static-targets | string
Where to gather metrics from. Examples: host1.maas:9090 host1.maas:9090, host2.maas:9090
-
web-listen-port | int
Default: 9090
Port to listen on for the web interface, API, and telemetry.