Skip to content

Commit

Permalink
chore(release): 1.59.2
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Aug 7, 2024
1 parent afa971e commit d0d88f2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.59.2](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.59.1...v1.59.2) (2024-08-07)


### Bug Fixes

* Can not set rtt parameters in `routeros_tool_netwatch` ([afa971e](https://github.com/terraform-routeros/terraform-provider-routeros/commit/afa971e337f6141c4dfa717c791807a52ffc0692)), closes [#535](https://github.com/terraform-routeros/terraform-provider-routeros/issues/535)

## [1.59.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.59.0...v1.59.1) (2024-08-07)


Expand Down
10 changes: 6 additions & 4 deletions docs/resources/tool_netwatch.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
```terraform
resource "routeros_tool_netwatch" "test" {
name = "watch-google-pdns"
type = "icmp"
host = "8.8.8.8"
interval = "30s"
up_script = ":log info \"Ping to 8.8.8.8 successful\""
thr_max = "400ms"
}
```

Expand Down Expand Up @@ -43,13 +45,13 @@ resource "routeros_tool_netwatch" "test" {
- `start_delay` (String) Time to wait before starting probe (on add, enable, or system start).
- `startup_delay` (String) Time to wait until starting Netwatch probe after system startup.
- `test_script` (String) Script to execute at the end of every probe test.
- `thr_avg` (String) Fail threshold for rtt-avg.
- `thr_http_time` (String) Fail threshold for http-resp-time.
- `thr_jitter` (String) Fail threshold for rtt-jitter.
- `thr_loss_count` (Number) Fail threshold for loss-count.
- `thr_loss_percent` (Number) Fail threshold for loss-percent.
- `thr_rtt_avg` (String) Fail threshold for rtt-avg.
- `thr_rtt_jitter` (String) Fail threshold for rtt-jitter.
- `thr_rtt_max` (String) Fail threshold for rtt-max (a value above thr-max is a probe fail).
- `thr_rtt_stdev` (String) Fail threshold for rtt-stdev.
- `thr_max` (String) Fail threshold for rtt-max (a value above thr-max is a probe fail).
- `thr_stdev` (String) Fail threshold for rtt-stdev.
- `thr_tcp_conn_time` (String) Fail threshold for tcp-connect-time, the configuration uses microseconds, if the time unit is not specified (s/m/h), log and status pages display the same value in milliseconds.
- `timeout` (String) Max time limit to wait for a response.
- `ttl` (Number) Manually set time to live value for ICMP packet.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terraform-provider-routeros",
"version": "1.59.1",
"version": "1.59.2",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit d0d88f2

Please sign in to comment.