Add pointers around alerts consistency

This commit also adds instructions around running kraken using venv
to avoid any dependencies conflicts.
This commit is contained in:
Naga Ravi Chaitanya Elluri
2022-03-09 15:32:55 -05:00
parent 8a90a4c8d0
commit 4f7616a150
2 changed files with 3 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ Now that we understand the test methodology, lets take a look at the best pra
- Alerts with appropriate severity should get fired
- Alerts are key to identify when a component starts degrading, and can help focus the investigation effort on affected system components.
- Alerts should have proper severity,description, notification policy, escalation policy, and SOPin order to reduce MTTR for responding SRE or Ops resources.
- Detailed information on the alerts consistency can be found [here](https://github.com/openshift/enhancements/blob/master/enhancements/monitoring/alerting-consistency.md).
- Minimal performance impact - Network, CPU, Memory, Disk, Throughput etc.
- The system, as well as the applications, should be designed to have minimal performance impact during disruptions to ensure stability and also to avoid hogging resources that other applications can use.

View File

@@ -20,6 +20,8 @@ $ cd kraken
#### Install the dependencies
```
$ python3 -m venv chaos
$ source chaos/bin/activate
$ pip3 install -r requirements.txt
```