Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 83aa473

Browse files
Skeleton code for mixin
Signed-off-by: Umanga Chapagain <[email protected]>
1 parent cc005ae commit 83aa473

12 files changed

+83
-1
lines changed

Makefile

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
JSONNET_FMT := jsonnet fmt -n 2 --max-blank-lines 2 --string-style s --comment-style s
2+
3+
all: fmt prometheus_alerts.yaml prometheus_rules.yaml dashboards_out lint test
4+
5+
fmt:
6+
find . -name 'vendor' -prune -o -name '*.libsonnet' -print -o -name '*.jsonnet' -print | \
7+
xargs -n 1 -- $(JSONNET_FMT) -i
8+
9+
prometheus_alerts.yaml: mixin.libsonnet lib/alerts.jsonnet alerts/*.libsonnet
10+
jsonnet -S lib/alerts.jsonnet > $@
11+
12+
prometheus_rules.yaml: mixin.libsonnet lib/rules.jsonnet rules/*.libsonnet
13+
jsonnet -S lib/rules.jsonnet > $@
14+
15+
dashboards_out: mixin.libsonnet lib/dashboards.jsonnet dashboards/*.libsonnet
16+
@mkdir -p dashboards_out
17+
jsonnet -J vendor -m dashboards_out lib/dashboards.jsonnet
18+
19+
lint: prometheus_alerts.yaml prometheus_rules.yaml
20+
find . -name 'vendor' -prune -o -name '*.libsonnet' -print -o -name '*.jsonnet' -print | \
21+
while read f; do \
22+
$(JSONNET_FMT) "$$f" | diff -u "$$f" -; \
23+
done
24+
25+
promtool check rules prometheus_rules.yaml
26+
promtool check rules prometheus_alerts.yaml
27+
28+
clean:
29+
rm -rf dashboards_out prometheus_alerts.yaml prometheus_rules.yaml
30+
31+
test: prometheus_alerts.yaml prometheus_rules.yaml
32+
promtool test rules tests.yaml
33+

README.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
# gluster-mixins
1+
# Prometheus Monitoring Mixin for Gluster
2+
3+
A set of Grafana dashboards and Prometheus alerts for Gluster.
4+
5+
The scope of this project is to provide Gluster specific Grafana dashboard configs and Prometheus rule files using Prometheus Mixins.
6+
7+
## Prerequisites
8+
1. Jsonnet ([How to Install Jsonnet?](https://github.com/google/jsonnet#building-jsonnet))
9+
10+
## How to use?
11+
1. `$ git clone https://github.com/gluster/gluster-mixins.git`
12+
2. `$ cd gluster-mixins`
13+
3. `$ make prometheus_alerts.yaml`
14+
4. `$ make prometheus_rules.yaml`
15+
5. `$ make dashboards_out`
16+
17+
The `prometheus_alerts.yaml` and `prometheus_rules.yaml` files then needs to be passed to your Prometheus Server, and the files in `dashboards_out` needs to be passed to your Grafana server.
18+
19+
## Background
20+
* [Prometheus Monitoring Mixin design doc](https://docs.google.com/document/d/1A9xvzwqnFVSOZ5fD3blKODXfsat5fg6ZhnKu9LK3lB4/edit#)

alerts/alerts.libsonnet

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
prometheusAlerts+:: {
3+
},
4+
}
5+

config.libsonnet

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
_config+:: {
3+
}
4+
}

dashboards/dashboards.libsonnet

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
grafanaDashboards+:: {
3+
}
4+
}

jsonnetfile.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

lib/alerts.jsonnet

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
std.manifestYamlDoc((import '../mixin.libsonnet').prometheusAlerts)

lib/dashboards.jsonnet

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
local dashboards = (import '../mixin.libsonnet').grafanaDashboards;
2+
3+
{
4+
[name]: dashboards[name]
5+
for name in std.objectFields(dashboards)
6+
}

lib/rules.jsonnet

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
std.manifestYamlDoc((import '../mixin.libsonnet').prometheusRules)

mixin.libsonnet

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
(import 'config.libsonnet') +
2+
(import 'alerts/alerts.libsonnet') +
3+
(import 'dashboards/dashboards.libsonnet') +
4+
(import 'rules/rules.libsonnet')

rules/rules.libsonnet

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
prometheusRules+:: {
3+
}
4+
}

runbook.md

Whitespace-only changes.

0 commit comments

Comments
 (0)