Skip to content

Commit

Permalink
Default grafana dashboard
Browse files Browse the repository at this point in the history
Provide a example grafana dashboard as well as a docker-compose file to
quickly run signatory
  • Loading branch information
carte7000 committed Jun 19, 2019
1 parent 2d72878 commit 5e882ed
Show file tree
Hide file tree
Showing 5 changed files with 589 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: '3'
services:
signatory:
build: .
ports:
- "80:80"
volumes:
- ./signatory.yaml:/app/signatory.yaml
grafana:
image: grafana/grafana
volumes:
- ./grafana/:/etc/grafana/provisioning/
depends_on:
- prometheus
ports:
- 3000:3000
prometheus:
image: prom/prometheus
ports:
- 9090:9090
volumes:
- ./prometheus/:/etc/prometheus/
8 changes: 8 additions & 0 deletions grafana/dashboards/dashboards.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

apiVersion: 1

providers:
- name: 'Signatory'
type: file
options:
path: /etc/grafana/provisioning/dashboards/signatory.json
Loading

0 comments on commit 5e882ed

Please sign in to comment.