All Projects → line → Promgen

line / Promgen

Licence: mit
Promgen is a configuration file generator for Prometheus

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Promgen

Django Prometheus
Export Django monitoring metrics for Prometheus.io
Stars: ✭ 823 (+9.15%)
Mutual labels:  django, monitoring, prometheus
Cluster Monitoring
Cluster monitoring stack for clusters based on Prometheus Operator
Stars: ✭ 453 (-39.92%)
Mutual labels:  monitoring, prometheus
Unsee
Alert dashboard for Prometheus Alertmanager
Stars: ✭ 700 (-7.16%)
Mutual labels:  monitoring, prometheus
Statping
Status Page for monitoring your websites and applications with beautiful graphs, analytics, and plugins. Run on any type of environment.
Stars: ✭ 5,806 (+670.03%)
Mutual labels:  monitoring, prometheus
Snmp exporter
SNMP Exporter for Prometheus
Stars: ✭ 705 (-6.5%)
Mutual labels:  monitoring, prometheus
Cortex
A horizontally scalable, highly available, multi-tenant, long term Prometheus.
Stars: ✭ 4,491 (+495.62%)
Mutual labels:  monitoring, prometheus
Alertmanager Bot
Bot for Prometheus' Alertmanager
Stars: ✭ 473 (-37.27%)
Mutual labels:  monitoring, prometheus
Squzy
Squzy - is a high-performance open-source monitoring, incident and alert system written in Golang with Bazel and love.
Stars: ✭ 359 (-52.39%)
Mutual labels:  monitoring, prometheus
Promxy
An aggregating proxy to enable HA prometheus
Stars: ✭ 562 (-25.46%)
Mutual labels:  monitoring, prometheus
Swagger Stats
API Observability. Trace API calls and Monitor API performance, health and usage statistics in Node.js Microservices.
Stars: ✭ 559 (-25.86%)
Mutual labels:  monitoring, prometheus
Cabot
Self-hosted, easily-deployable monitoring and alerts service - like a lightweight PagerDuty
Stars: ✭ 5,209 (+590.85%)
Mutual labels:  django, monitoring
Prometheus For Developers
Practical introduction to Prometheus for developers.
Stars: ✭ 382 (-49.34%)
Mutual labels:  monitoring, prometheus
Dogvscat
Sample Docker Swarm cluster stack of tools
Stars: ✭ 377 (-50%)
Mutual labels:  monitoring, prometheus
Dockprom
Docker hosts and containers monitoring with Prometheus, Grafana, cAdvisor, NodeExporter and AlertManager
Stars: ✭ 4,489 (+495.36%)
Mutual labels:  monitoring, prometheus
Healthchecks
A cron monitoring tool written in Python & Django
Stars: ✭ 4,297 (+469.89%)
Mutual labels:  django, monitoring
Urlooker
enterprise-level websites monitoring system
Stars: ✭ 469 (-37.8%)
Mutual labels:  monitoring, prometheus
Opencensus Java
A stats collection and distributed tracing framework
Stars: ✭ 640 (-15.12%)
Mutual labels:  monitoring, prometheus
Awesome Monitoring
INFRASTRUCTURE、OPERATION SYSTEM and APPLICATION monitoring tools for Operations.
Stars: ✭ 356 (-52.79%)
Mutual labels:  monitoring, prometheus
Django Watchman
django-watchman exposes a status endpoint for your backing services like databases, caches, etc.
Stars: ✭ 357 (-52.65%)
Mutual labels:  django, monitoring
Nexclipper
Metrics Pipeline for interoperability and Enterprise Prometheus
Stars: ✭ 533 (-29.31%)
Mutual labels:  monitoring, prometheus

What is Promgen?

Promgen is a configuration file generator for Prometheus. Promgen is a web application written with Django and can help you do the following jobs.

  • Create and manage Prometheus configuration files
  • Configure alert rules and notification options

See the Promgen introduction slides for more details.

Promgen screenshots

screenshot

Contributing

Below are the steps to get started with Promgen.

Please see CONTRIBUTING.md for contributing to Promgen.

If you believe you have discovered a vulnerability or have an issue related to security, please DO NOT open a public issue. Instead, send us a mail to [email protected].

1. Initialize Promgen

Initialize Promgen using Docker.

# Create promgen setting directory.
mkdir -p ~/.config/promgen
chmod 777 ~/.config/promgen

# Initialize required settings with Docker container
# This will prompt you for connection settings for your database and Redis broker
# using the standard DSN syntax.
# Database example: mysql://username:[email protected]/databasename
# Broker example: redis://localhost:6379/0
docker run --rm -it -v ~/.config/promgen:/etc/promgen/ line/promgen bootstrap

# Apply database updates
docker run --rm -v ~/.config/promgen:/etc/promgen/ line/promgen migrate

# You can then check your configuration to ensure everything correct
docker run --rm -v ~/.config/promgen:/etc/promgen/ line/promgen check

# Create initial login user. This is the same as the default django-admin command
# https://docs.djangoproject.com/en/1.10/ref/django-admin/#django-admin-createsuperuser
docker run --rm -it -v ~/.config/promgen:/etc/promgen/ line/promgen createsuperuser

You can then use your favorite configuration management system to deploy to each worker.

Note: Promgen aims to use the XDG specs and follows suggestions made by the 12-Factor App.

2. Configure Prometheus

Configure Prometheus to load the target file from Prometheus and configure AlertManager to send notifications back to Promgen.

See the example settings files for proper configuration of Prometheus and AlertManager.

3. Run Promgen

Run Promgen using the following command.

# Run Promgen web worker. This is typically balanced behind an NGINX instance
docker run --rm -p 8000:8000 -v ~/.config/promgen:/etc/promgen/ line/promgen

# Run Promgen celery worker. Make sure to run it on the same machine as your Prometheus server to manage the config settings
docker run --rm -v ~/.config/promgen:/etc/promgen/ -v /etc/prometheus:/etc/prometheus line/promgen worker

# Or if using docker-compose you can spin up a complete test environment
docker-compose up -d
# Create initial user
docker-compose run web createsuperuser

The MIT License

Copyright (c) 2017 LINE Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].