Merge pull request #1830 from coreos-inc/superuser-dashboard

Add prometheus stats to enable better dashboarding
This commit is contained in:
josephschorr 2016-09-26 17:19:22 +02:00 committed by GitHub
commit ad4efba802
18 changed files with 128 additions and 199 deletions

View file

@ -0,0 +1,7 @@
#!/bin/sh
# Ensure dependencies start before the logger
sv check syslog-ng > /dev/null || exit 1
# Start the logger
exec logger -i -t globalpromstats

View file

@ -0,0 +1,8 @@
#! /bin/bash
echo 'Starting global prometheus stats worker'
cd /
venv/bin/python -m workers.globalpromstats
echo 'Global prometheus stats exited'