Comparing version 1.0.6-alpha to 1.0.7-alpha
{ | ||
"name": "barky", | ||
"version": "1.0.6-alpha", | ||
"version": "1.0.7-alpha", | ||
"description": "A simple cloud services watchdog with no external dependencies and digest support", | ||
@@ -5,0 +5,0 @@ "main": "dist/cli.js", |
{ | ||
"name": "barky", | ||
"version": "1.0.6-alpha", | ||
"version": "1.0.7-alpha", | ||
"description": "A simple cloud services watchdog with no external dependencies and digest support", | ||
@@ -5,0 +5,0 @@ "main": "dist/cli.js", |
@@ -33,3 +33,19 @@ # Barky - Cloud Watchdog | ||
So, the pipeline is `Evaluate > Digest` where the evaluation emitss status of things monitored and the digest step emits any alerts (triggered, ongoing or resolution) via the configured channels. The digest step is optional. | ||
## Usage | ||
```bash | ||
# run the evaluator without digest | ||
npx barky@latest --env=configs/my.yaml | ||
# run the evaluator with specific evaluator (comma separate for more) | ||
npx barky@latest --env=configs/my.yaml --eval=web | ||
# run the evaluator and digest step | ||
npx barky@latest --env=configs/my.yaml --digest=configs/digest/my-team.yaml --title="ACME Public" | ||
# bypass prompt for installation | ||
npx barky@latest --yes --env=configs/my.yaml --eval=web --digest=configs/digest/my-team.yaml --title="ACME Public" | ||
``` | ||
## Evaluation | ||
@@ -336,17 +352,1 @@ | ||
> See above for more details about affected services. | ||
## Usage | ||
```bash | ||
# run the evaluator without digest | ||
npm barky@latest --env=configs/my.yaml | ||
# run the evaluator with specific evaluator (comma separate for more) | ||
npm barky@latest --env=configs/my.yaml --eval=web | ||
# run the evaluator and digest step | ||
npm barky@latest --env=configs/my.yaml --digest=configs/digest/my-team.yaml --title="ACME Public" | ||
# bypass prompt for installation | ||
npm barky@latest --yes --env=configs/my.yaml --eval=web --digest=configs/digest/my-team.yaml --title="ACME Public" | ||
``` |
202020
32