Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codexlynx/opsdroid-skill-prometheus-scraper
opsdroid skill to scrape prometheus metrics over chat.
https://github.com/codexlynx/opsdroid-skill-prometheus-scraper
chatops devops metrics monitoring opsdroid prometheus
Last synced: about 1 month ago
JSON representation
opsdroid skill to scrape prometheus metrics over chat.
- Host: GitHub
- URL: https://github.com/codexlynx/opsdroid-skill-prometheus-scraper
- Owner: codexlynx
- Created: 2020-01-02T19:52:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-30T21:47:15.000Z (over 3 years ago)
- Last Synced: 2023-03-02T19:21:28.516Z (almost 2 years ago)
- Topics: chatops, devops, metrics, monitoring, opsdroid, prometheus
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## opsdroid / skill-prometheus-scrape
Skill to scrape prometheus metrics over chat. This repo has a "skill" for opsdroid, an open source chat-ops bot framework: https://opsdroid.dev.#### Install:
##### **Using this skill directly:**
```
$ git clone https://github.com/codexlynx/opsdroid-skill-prometheus-scrape.git
$ cd opsdroid-skill-prometheus-scrape
$ vim configuration.sample.yaml
```
Add your connector configuration and save as `configuration.yaml`. https://docs.opsdroid.dev/en/stable/connectors/index.html
```
$ docker-compose up
```##### **Install this skill in your current opsdroid instance:**
For more information visit: https://docs.opsdroid.dev/en/stable/configuration.html#module-options```
skills:
- name: prometheus-scrape
repo: https://github.com/codexlynx/opsdroid-skill-prometheus-scrape.git
targets:
- http://node-exporter:9100/metrics
metrics:
- node_uname_info
- node_load5
- node_filesystem_avail_bytes
- node_memory_MemFree_bytes
- node_disk_io_time_weighted_seconds_total
```