Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct the document and json scheme #346

Merged
merged 7 commits into from
May 8, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -1228,15 +1228,15 @@ For example:
```YAML
http:
- name: probe A
channels : [ Dev_Channel, Manager_Channel ]
channels : [ Mgmt_Channel ]
shell:
- name: probe B
channels: [ Ops_Channel ]
channels: [ Dev_Channel, QA_Channel ]
notify:
- discord: Discord
channels: [ Dev_Channel, Ops_Channel ]
channels: [ Mgmt_Channel, Dev_Channel ]
- email: Gmail
channels: [ Mgmt_Channel ]
channels: [ QA_Channel ]
```

Then, we will have the following diagram
Expand All @@ -1245,15 +1245,15 @@ Then, we will have the following diagram
┌───────┐ ┌──────────────┐
│Probe B├─────────►│ Mgmt_Channel ├────┐
haoel marked this conversation as resolved.
Show resolved Hide resolved
└───────┘ └──────────────┘ │
http
┌─────────────┐ │ ┌─────────┐
┌─────►│ Dev_Channel ├─────▼───► Discord │
│ └─────────────┘ └─────────┘
┌───────┐ │
│Probe A├───┤
haoel marked this conversation as resolved.
Show resolved Hide resolved
└───────┘ │
│ ┌────────────┐ ┌─────────┐
shell │ ┌────────────┐ ┌─────────┐
└─────►│ QA_Channel ├──────────► Gmail │
└────────────┘ └─────────┘
```
Expand All @@ -1274,7 +1274,7 @@ pid: /var/run/easeprobe.pid
- If the file already exists, EaseProbe would overwrite it.
- If the file cannot be written, EaseProbe would exit with an error.

If you want to disable the PID file, you can configure the pid file to "".
If you want to disable the PID file, you can configure the pid file to "-".

```YAML
settings:
Expand Down