Skip to content

Commit

Permalink
Merge pull request #113 from SuperQ/superq/0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
SuperQ committed Jul 10, 2023
2 parents ab2d0f8 + 3a3c07d commit 04602a7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.1
0.7.0

0 comments on commit 04602a7

Please sign in to comment.