From cbcdd8b7a049b965c9193622381be74243bf451e Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 20 Nov 2015 14:40:05 -0800 Subject: [PATCH] Add nodepool dashboard to grafana Include graphs of node states by target (to help identify problems with jenkins masters). Change-Id: I2a26a6d5494f02c5f27c67ae6a58b13ec5d597f8 --- grafana/nodepool.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 grafana/nodepool.yaml diff --git a/grafana/nodepool.yaml b/grafana/nodepool.yaml new file mode 100644 index 0000000000..0bb7ac5b81 --- /dev/null +++ b/grafana/nodepool.yaml @@ -0,0 +1,36 @@ +dashboard: + title: Nodepool + rows: + - title: Description + height: 100px + panels: + - title: Description + content: | + **This dashboard is managed by [Grafyaml](http://docs.openstack.org/infra/system-config/grafyaml.html).** + + If you would like to make changes to this dashboard, please see the grafana directory in [project-config](https://git.openstack.org/cgit/openstack-infra/project-config/tree/grafana/nodepool.yaml). + type: text + - title: Jenkins Masters + showTitle: true + height: 320px + panels: + - title: Building Nodes + span: 4 + targets: + - target: aliasByNode(stats.guages.nodepool.target.*.nodes.building, 4) + type: graph + - title: Ready Nodes + span: 4 + targets: + - target: aliasByNode(stats.guages.nodepool.target.*.nodes.ready, 4) + type: graph + - title: Used Nodes + span: 4 + targets: + - target: aliasByNode(stats.guages.nodepool.target.*.nodes.used, 4) + type: graph + - title: Deleting Nodes + span: 4 + targets: + - target: aliasByNode(stats.guages.nodepool.target.*.nodes.delete, 4) + type: graph