From d0d88f231749c72f17886a3c4fca9cca82e8cc95 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 7 Aug 2024 09:19:57 +0000 Subject: [PATCH] chore(release): 1.59.2 --- CHANGELOG.md | 7 +++++++ docs/resources/tool_netwatch.md | 10 ++++++---- package.json | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6843acda..7f2a8d72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/docs/resources/tool_netwatch.md b/docs/resources/tool_netwatch.md index 3791b675..f3111de7 100644 --- a/docs/resources/tool_netwatch.md +++ b/docs/resources/tool_netwatch.md @@ -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" } ``` @@ -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. diff --git a/package.json b/package.json index 50739ce3..e29891df 100644 --- a/package.json +++ b/package.json @@ -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"