Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pyronear/pyro-observability
Observability platform for edge devices
https://github.com/pyronear/pyro-observability
dashboard grafana loki prometheus
Last synced: about 4 hours ago
JSON representation
Observability platform for edge devices
- Host: GitHub
- URL: https://github.com/pyronear/pyro-observability
- Owner: pyronear
- License: apache-2.0
- Created: 2023-04-10T14:36:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-15T19:10:49.000Z (over 1 year ago)
- Last Synced: 2024-10-29T20:26:04.447Z (21 days ago)
- Topics: dashboard, grafana, loki, prometheus
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyro-observability
Observability platform for edge devices## Setup
### Prerequisites
- [Docker](https://docs.docker.com/engine/install/)
- [Docker compose](https://docs.docker.com/compose/)The project was designed so that everything runs with Docker orchestration (standalone virtual environment), so you won't need to install any additional libraries.
### Configuration
In order to run the project, you will need to specific some information, which can be done using a `.env` file.
This file will have to hold the following information:
- `GRAFANA_SECURITY_ADMIN_USER`: the name of the grafana admin
- `GRAFANA_SECURITY_ADMIN_PWD`: the password of the grafana adminSo your `.env` file should look like something similar to:
```
GRAFANA_SECURITY_ADMIN_USER = admin
GRAFANA_SECURITY_ADMIN_PWD = admin
```The file should be placed at the root folder of your local copy of the project.
Additionally, you'll need to provide the list of prometheus scrape targets in `prometheus/prometheus.yml`
### Running the serviceYou can run the service using the following command:
```shell
docker-compose up -d --build
```## License
Distributed under the Apache 2 License. See [`LICENSE`](LICENSE) for more information.