diff options
| author | Avi-Robusta <97387909+Avi-Robusta@users.noreply.github.com> | 2023-08-08 17:07:51 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-08 17:07:51 +0300 |
| commit | 3c0615dca2ad50c22e1a554da85ee66a6cb6c981 (patch) | |
| tree | 3ffe6aa6cef56fee46e708345892676d2eb5b745 /README.md | |
| parent | c503daa35a7e3a227093626158fa94ec51487cb2 (diff) | |
Unified prometheus support (#121)
* initial refactoring
initial changes
working version
aws test
added eks managed prom support
coralogix prom support and fix prom bug
fixed bug
added all aws config changes
added docs and fixed requirements
copying connect changes from robusta
fixing bad typing
reformatting
added prometrix
updated prometrix version
* rebase fixes
* black formatting
* refactored check connection
* Fixing victoria metrics check
* updating poetry file after rebase
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -377,6 +377,38 @@ Than run the following command with PROMETHEUS_URL substituted for your Azure Ma ```sh python krr.py simple --namespace default -p PROMETHEUS_URL --prometheus-auth-header "Bearer $AZURE_BEARER" ``` +<p ><a href="#scanning-with-a-centralized-prometheus">See here about configuring labels for centralized prometheus</a></p> + +<p align="right">(<a href="#readme-top">back to top</a>)</p> + +## EKS managed Prometheus + +For EKS managed Prometheus you need to add your prometheus link and the flag --eks-managed-prom and krr will automatically use your aws credentials + +```sh +python krr.py simple -p "https://aps-workspaces.REGION.amazonaws.com/workspaces/..." --eks-managed-prom +``` +Additional optional parameters are: +```sh +--eks-profile-name PROFILE_NAME_HERE # to specify the profile to use from your config +--eks-access-key ACCESS_KEY # to specify your access key +--eks-secret-key SECRET_KEY # to specify your secret key +--eks-service-name SERVICE_NAME # to use a specific service name in the signature +--eks-managed-prom-region REGION_NAME # to specify the region the prometheus is in +``` +<p ><a href="#scanning-with-a-centralized-prometheus">See here about configuring labels for centralized prometheus</a></p> + +<p align="right">(<a href="#readme-top">back to top</a>)</p> + +## Coralogix managed Prometheus + +For Coralogix managed Prometheus you need to specify your prometheus link and add the flag coralogix_token with your Logs Query Key + +```sh +python krr.py simple -p "https://prom-api.coralogix..." --coralogix_token +``` + +<p ><a href="#scanning-with-a-centralized-prometheus">See here about configuring labels for centralized prometheus</a></p> <p align="right">(<a href="#readme-top">back to top</a>)</p> |
