diff options
author | Christopher Baines <mail@cbaines.net> | 2020-11-28 10:58:02 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-12-07 09:08:20 +0000 |
commit | fd14385581e4f3f8285442a0e1cc17d320d35fa9 (patch) | |
tree | ffb45b7c994a057299b89847fe57494d7138239d /doc | |
parent | 6eba27f7beb1320b1abd6123d969663e5a460f77 (diff) | |
download | guix-fd14385581e4f3f8285442a0e1cc17d320d35fa9.tar.gz |
prometheus-node-exporter: Enable the textfile collector.
* gnu/services/monitoring.scm (<prometheus-node-exporter-configuration>): Add textfile-directory. (prometheus-node-exporter-textfile-directory, prometheus-node-exporter-activation): New procedures. (prometheus-node-exporter-shepherd-service): Pass --collector.textfile.directoryto the service. (prometheus-node-exporter-service-type): Extend the activation service type. * doc/guix.texi (Prometheus Node Exporter Service): Document.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index b5340aa368..13e0dcf6b7 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -22038,6 +22038,11 @@ The prometheus-node-exporter package to use. @item @code{web-listen-address} (default: @code{":9100"}) Bind the web interface to the specified address. +@item @code{textfile-directory} (default: @code{"/var/lib/prometheus/node-exporter"}) +This directory can be used to export metrics specific to this machine. +Files containing metrics in the text format, with the filename ending in +@code{.prom} should be placed in this directory. + @end table @end deftp |