From 3a3c07da8d871385e0beca7e59b1e0c76068d77b Mon Sep 17 00:00:00 2001 From: SuperQ Date: Mon, 10 Jul 2023 16:34:00 +0200 Subject: [PATCH] Release 0.7.0 * [FEATURE] Make source ip configurable #83 * [FEATURE] Add metrics for send and receive errors #109 * [FEATURE] Enable native histograms #108 Signed-off-by: SuperQ --- CHANGELOG.md | 6 ++++++ README.md | 5 +++++ VERSION | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 291e614..db5de0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ * [ENHANCEMENT] * [BUGFIX] +## 0.7.0 / 2023-07-10 + +* [FEATURE] Make source ip configurable #83 +* [FEATURE] Add metrics for send and receive errors #109 +* [FEATURE] Enable native histograms #108 + ## 0.6.1 / 2022-06-08 * [BUGFIX] Fix RecordRtts memory leak for config file targets #73 diff --git a/README.md b/README.md index d09bd52..37e9a06 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ targets: network: ip # One of ip, ip4, ip6. Default: ip (automatic IPv4/IPv6) protocol: icmp # One of icmp, udp. Default: icmp (Requires privileged operation) size: 56 # Packet data size in bytes. Default 56 (Range: 24 - 65535) + source: 127.0.1.1 # Souce IP address to use. Default: None (automatic selection) ``` In each host group the `interval`, `network`, and `protocol` are optional. @@ -87,6 +88,10 @@ docker run \ ----------------------------------------|------------|------------------------------------------- smokeping\_requests\_total | Counter | Counter of pings sent. smokeping\_response\_duration\_seconds | Histogram | Ping response duration. + smokeping\_response\_ttl | Gauge | The last response Time To Live (TTL). + smokeping\_response\_duplicates\_total | Counter | The number of duplicated response packets. + smokeping\_receive\_errors\_total | Counter | The number of errors when Pinger attempts to receive packets. + smokeping\_send\_errors\_total | Counter | The number of errors when Pinger attempts to send packets. ### TLS and basic authentication diff --git a/VERSION b/VERSION index ee6cdce..faef31a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1 +0.7.0