You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ EaseProbe supports notification delivery to the following:
76
76
77
77
> **Note**:
78
78
>
79
-
> 1) The notification is **Edge-Triggered Mode** by default, if you want to config it as **Level-Triggered Mode** with different interval and max notification, please refer to the manual - [Altering Interval](./docs/Manual.md#112-alerting-interval).
79
+
> 1) The notification is **Edge-Triggered Mode** by default, if you want to config it as **Level-Triggered Mode** with different interval and max notification, please refer to the manual - [Alerting Interval](./docs/Manual.md#112-alerting-interval).
80
80
>
81
81
> 2) Windows platforms do not support syslog as notification method.
Copy file name to clipboardExpand all lines: docs/Manual.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ EaseProbe has the following major modules:
35
35
-[1.8 Host](#18-host)
36
36
-[1.9 Native Client](#19-native-client)
37
37
-[1.9.1 Redis](#191-redis)
38
-
-[1.9.2 MySQL](#192-msyql)
38
+
-[1.9.2 MySQL](#192-mysql)
39
39
-[1.9.3 MongoDB](#193-mongodb)
40
40
-[1.9.4 Memcache](#194-memcache)
41
41
-[1.9.5 Kafka](#195-kafka)
@@ -144,7 +144,7 @@ The following is an example of the alerting interval for HTTP Probe:
144
144
http:
145
145
- name: Web Service
146
146
url: http://example.com:1080
147
-
alter:
147
+
alert:
148
148
strategy: regular
149
149
factor: 1
150
150
max: 3
@@ -153,7 +153,7 @@ The following is an example of the alerting interval for HTTP Probe:
153
153
> **Note**:
154
154
>
155
155
> 1. The default strategy is regular and the max time is 1, this would be the same as the old behavior - edge trigger.
156
-
> 2. The altering interval is aligned with the probe interval, it is triggered by the probe failure.
156
+
> 2. The alerting interval is aligned with the probe interval, it is triggered by the probe failure.
157
157
> 3. The alerting interval configuration can be configured in the global settings `settings.probe`, and the probe's own configuration will override the global settings.
158
158
159
159
#### 1.1.2.1 Regular Strategy
@@ -167,7 +167,7 @@ The formula is:
167
167
For example:
168
168
169
169
```yaml
170
-
alter:
170
+
alert:
171
171
strategy: regular
172
172
factor: 1
173
173
max: 10
@@ -194,7 +194,7 @@ The formula is:
194
194
For example:
195
195
196
196
```yaml
197
-
alter:
197
+
alert:
198
198
strategy: increment
199
199
factor: 1
200
200
max: 10
@@ -221,7 +221,7 @@ The formula is:
221
221
For example:
222
222
223
223
```yaml
224
-
alter:
224
+
alert:
225
225
strategy: exponent
226
226
factor: 1
227
227
max: 10
@@ -1874,10 +1874,10 @@ settings:
1874
1874
interval: 1m# probe every minute for all probes
1875
1875
failure: 2# number of consecutive failed probes needed to determine the status down, default: 1
1876
1876
success: 1# number of consecutive successful probes needed to determine the status up, default: 1
1877
-
alert: #alter interval for all probes
1877
+
alert: #alert interval for all probes
1878
1878
strategy: "regular"# it can be "regular", "increment" or "exponent", default: "regular"
0 commit comments