mirror of
https://github.com/prometheus/statsd_exporter.git
synced 2025-10-01 21:19:43 +00:00
Update changelog and README for #199
Signed-off-by: Matthias Rampke <mr@soundcloud.com>
This commit is contained in:
parent
e3d6050616
commit
ee653990e6
2 changed files with 23 additions and 29 deletions
|
@ -3,6 +3,7 @@
|
||||||
* [CHANGE] Do not run as root in the Docker container by default ([#202](https://github.com/prometheus/statsd_exporter/pull/202))
|
* [CHANGE] Do not run as root in the Docker container by default ([#202](https://github.com/prometheus/statsd_exporter/pull/202))
|
||||||
* [FEATURE] Add metric for count of events by action ([#193](https://github.com/prometheus/statsd_exporter/pull/193))
|
* [FEATURE] Add metric for count of events by action ([#193](https://github.com/prometheus/statsd_exporter/pull/193))
|
||||||
* [FEATURE] Add metric for count of distinct metric names ([#200](https://github.com/prometheus/statsd_exporter/pull/200))
|
* [FEATURE] Add metric for count of distinct metric names ([#200](https://github.com/prometheus/statsd_exporter/pull/200))
|
||||||
|
* [FEATURE] Add UNIX socket listener support ([#199](https://github.com/prometheus/statsd_exporter/pull/199))
|
||||||
* [ENHANCEMENT] Add a health check to the Docker container ([#182](https://github.com/prometheus/statsd_exporter/pull/182))
|
* [ENHANCEMENT] Add a health check to the Docker container ([#182](https://github.com/prometheus/statsd_exporter/pull/182))
|
||||||
* [ENHANCEMENT] Allow inconsistent label sets ([#194](https://github.com/prometheus/statsd_exporter/pull/194))
|
* [ENHANCEMENT] Allow inconsistent label sets ([#194](https://github.com/prometheus/statsd_exporter/pull/194))
|
||||||
* [ENHANCEMENT] Speed up sanitization of metric names ([#197](https://github.com/prometheus/statsd_exporter/pull/197))
|
* [ENHANCEMENT] Speed up sanitization of metric names ([#197](https://github.com/prometheus/statsd_exporter/pull/197))
|
||||||
|
|
51
README.md
51
README.md
|
@ -53,35 +53,28 @@ NOTE: Version 0.7.0 switched to the [kingpin](https://github.com/alecthomas/king
|
||||||
usage: statsd_exporter [<flags>]
|
usage: statsd_exporter [<flags>]
|
||||||
|
|
||||||
Flags:
|
Flags:
|
||||||
-h, --help Show context-sensitive help (also try --help-long and
|
-h, --help Show context-sensitive help (also try --help-long and --help-man).
|
||||||
--help-man).
|
--web.listen-address=":9102"
|
||||||
--web.listen-address=":9102"
|
The address on which to expose the web interface and generated Prometheus metrics.
|
||||||
The address on which to expose the web interface and
|
--web.telemetry-path="/metrics"
|
||||||
generated Prometheus metrics.
|
Path under which to expose metrics.
|
||||||
--web.telemetry-path="/metrics"
|
--statsd.listen-udp=":9125"
|
||||||
Path under which to expose metrics.
|
The UDP address on which to receive statsd metric lines. "" disables it.
|
||||||
--statsd.listen-udp=":9125"
|
--statsd.listen-tcp=":9125"
|
||||||
The UDP address on which to receive statsd metric
|
The TCP address on which to receive statsd metric lines. "" disables it.
|
||||||
lines. "" disables it.
|
--statsd.listen-unixgram=""
|
||||||
--statsd.listen-tcp=":9125"
|
The Unixgram socket path to receive statsd metric lines in datagram. "" disables it.
|
||||||
The TCP address on which to receive statsd metric
|
--statsd.unixsocket-mode="755"
|
||||||
lines. "" disables it.
|
The permission mode of the unix socket.
|
||||||
--statsd.mapping-config=STATSD.MAPPING-CONFIG
|
--statsd.mapping-config=STATSD.MAPPING-CONFIG
|
||||||
Metric mapping configuration file name.
|
Metric mapping configuration file name.
|
||||||
--statsd.read-buffer=STATSD.READ-BUFFER
|
--statsd.read-buffer=STATSD.READ-BUFFER
|
||||||
Size (in bytes) of the operating system's transmit
|
Size (in bytes) of the operating system's transmit read buffer associated with the UDP or Unixgram connection. Please make sure the kernel parameters net.core.rmem_max is set to a value greater than the value specified.
|
||||||
read buffer associated with the UDP connection. Please
|
--debug.dump-fsm="" The path to dump internal FSM generated for glob matching as Dot file.
|
||||||
make sure the kernel parameters net.core.rmem_max is
|
--log.level="info" Only log messages with the given severity or above. Valid levels: [debug, info, warn, error, fatal]
|
||||||
set to a value greater than the value specified.
|
--log.format="logger:stderr"
|
||||||
--debug.dump-fsm="" The path to dump internal FSM generated for glob
|
Set the log target and format. Example: "logger:syslog?appname=bob&local=7" or "logger:stdout?json=true"
|
||||||
matching as Dot file.
|
--version Show application version.
|
||||||
--log.level="info" Only log messages with the given severity or above.
|
|
||||||
Valid levels: [debug, info, warn, error, fatal]
|
|
||||||
--log.format="logger:stderr"
|
|
||||||
Set the log target and format. Example:
|
|
||||||
"logger:syslog?appname=bob&local=7" or
|
|
||||||
"logger:stdout?json=true"
|
|
||||||
--version Show application version.
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Tests
|
## Tests
|
||||||
|
|
Loading…
Reference in a new issue