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
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -164,17 +164,20 @@ You can open the match requirement by using the ```--node-count``` option to fin
164
164
**_NOTE:_** The ```cmr```, ```--hunter-analyze``` and ```--anomaly-detection``` flags are mutually exclusive. They cannot be used together because they represent different algorithms designed for distinct use cases.
165
165
166
166
#### Ack known bugs
167
-
To ack known regressions, you must provide a yaml file with the timestamp which the regression was identified at.
167
+
To ack known regressions, you must provide a yaml file with the uuid and metric which the regression was identified at. Example below
168
168
169
169
```
170
170
---
171
171
ack :
172
-
- timestamp: 1733490603,
172
+
- uuid: "af24e294-93da-4729-a9cc-14acf38454e1",
173
173
metric: "etcdCPU_avg"
174
+
reason: "started thread with etcd team"
174
175
```
175
176
176
177
ack'ing regressions will ensure Orion doesn't continue to notify users of the same issues.
177
178
179
+
Engineers should add a `reason` that could link to a JIRA or Slack thread. Or the `reason` could be the changepoint % diff is too low to alert component teams.
180
+
178
181
### Daemon mode
179
182
The core purpose of Daemon mode is to operate Orion as a self-contained server, dedicated to handling incoming requests. By sending a POST request accompanied by a test name of predefined tests, users can trigger change point detection on the provided metadata and metrics. Following the processing, the response is formatted in JSON, providing a structured output for seamless integration and analysis. To trigger daemon mode just use the following commands
if ((self.metrics_config[metric]["direction"] ==1andchangepoint_list[i].stats.mean_1>changepoint_list[i].stats.mean_2) or (self.metrics_config[metric]["direction"] ==-1andchangepoint_list[i].stats.mean_1<changepoint_list[i].stats.mean_2) or (str(changepoint_list[i].index) +"_"+changepoint_list[i].metricinackSet)):
0 commit comments