0f310322f3
* [cli] [topo] Migrate topo flags to pflags Signed-off-by: Rameez Sajwani <rameezwazirali@hotmail.com> * fix vtorc test Signed-off-by: Rameez Sajwani <rameezwazirali@hotmail.com> * feat: fix VTOrc test Signed-off-by: Manan Gupta <manan@planetscale.com> * feat: remove binaries from the list that don't need the flags Signed-off-by: Manan Gupta <manan@planetscale.com> * test: update flag help outputs Signed-off-by: Manan Gupta <manan@planetscale.com> * code review Signed-off-by: Rameez Sajwani <rameezwazirali@hotmail.com> * fix import formatting Signed-off-by: Rameez Sajwani <rameezwazirali@hotmail.com> Signed-off-by: Rameez Sajwani <rameezwazirali@hotmail.com> Signed-off-by: Manan Gupta <manan@planetscale.com> Co-authored-by: Manan Gupta <manan@planetscale.com> |
||
---|---|---|
.. | ||
alerts | ||
dashboards | ||
e2e | ||
lib | ||
rules | ||
scripts | ||
.env | ||
.gitignore | ||
Makefile | ||
README.md | ||
config.libsonnet | ||
go.mod | ||
go.sum | ||
jsonnetfile.json | ||
mixin.libsonnet | ||
tools.go | ||
vitess-mixin-quickstart.md |
README.md
(Beta) Monitoring Mixin for Vitess
A set of Grafana dashboards, Prometheus rules and alerts for Vitess, packaged together in a reusable and extensible bundle.
🔁 Prerequisites
-
Go (programming language)
-
Install the go tools:
make tools
,jb
,jsonnet
,jsonnetfmt
, andpromtool
should now be in$GOPATH/bin
. -
Install the dependencies by running:
jb install
ℹ️ How-to
Customize config.libsonnet
based on your setup. Example: specify the dataSource
name (default to Prometheus_Vitess
). You can then generate:
-
Prometheus alerts:
$ make prometheus_alerts.yaml
(Note: This files is empty because the current version of the mixin uses Grafana Alerts) -
Prometheus rules:
$ make prometheus_rules.yaml
-
Grafana dashboard:
$ ENV='prod' make dashboards_out
(Supported environments aredev
andprod
).
The prometheus_alerts.yaml
and prometheus_rules.yaml
file then need to passed to your Prometheus server, and the files in dashboards_out
need to be imported into you Grafana server.
👩💻 Development
If you want to contribute please read Vitess mixin quickstart guide
📚 Useful links & further learning
- For more information about monitoring mixins, see this design doc.
- For more motivation, see "The RED Method: How to instrument your services" talk from CloudNativeCon Austin.