Update Grafana from v6.0.0-beta2 to v6.0.0-beta3

* Update Grafana dashboards
This commit is contained in:
Dalton Hubble 2019-02-23 12:49:09 -08:00
parent 7f8572030d
commit d10c2b4cb9
3 changed files with 195 additions and 17 deletions

View File

@ -28,7 +28,7 @@ Notable changes between versions.
* Add `pod` name label to metrics discovered via service endpoints * Add `pod` name label to metrics discovered via service endpoints
* Rename `kubernetes_namespace` label to `namespace` * Rename `kubernetes_namespace` label to `namespace`
* Improve Grafana and dashboards ([#403](https://github.com/poseidon/typhoon/pull/403), [#404](https://github.com/poseidon/typhoon/pull/404)) * Improve Grafana and dashboards ([#403](https://github.com/poseidon/typhoon/pull/403), [#404](https://github.com/poseidon/typhoon/pull/404))
* Upgrade Grafana from v5.4.3 to 6.0.0-beta2 * Upgrade Grafana from v5.4.3 to 6.0.0-beta3
* Enable Grafana [Explore](http://docs.grafana.org/guides/whats-new-in-v6-0/#explore) UI as a Viewer (inspect/edit without saving) * Enable Grafana [Explore](http://docs.grafana.org/guides/whats-new-in-v6-0/#explore) UI as a Viewer (inspect/edit without saving)
* Raise nginx-ingress liveness/readiness timeout to 5 seconds * Raise nginx-ingress liveness/readiness timeout to 5 seconds
* Remove nginx-ingess default-backend ([#401](https://github.com/poseidon/typhoon/pull/401)) * Remove nginx-ingess default-backend ([#401](https://github.com/poseidon/typhoon/pull/401))

View File

@ -4045,7 +4045,7 @@ data:
}, },
"yaxes": [ "yaxes": [
{ {
"format": "decbytes", "format": "bytes",
"label": null, "label": null,
"logBase": 1, "logBase": 1,
"max": null, "max": null,
@ -4133,7 +4133,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Requests", "alias": "Memory Requests",
@ -4151,7 +4151,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Requests %", "alias": "Memory Requests %",
@ -4187,7 +4187,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Limits %", "alias": "Memory Limits %",
@ -4833,7 +4833,7 @@ data:
], ],
"timeFrom": null, "timeFrom": null,
"timeShift": null, "timeShift": null,
"title": "Memory Usage", "title": "Memory Usage (w/o cache)",
"tooltip": { "tooltip": {
"shared": true, "shared": true,
"sort": 0, "sort": 0,
@ -4851,7 +4851,7 @@ data:
}, },
"yaxes": [ "yaxes": [
{ {
"format": "decbytes", "format": "bytes",
"label": null, "label": null,
"logBase": 1, "logBase": 1,
"max": null, "max": null,
@ -4939,7 +4939,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Requests", "alias": "Memory Requests",
@ -4957,7 +4957,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Requests %", "alias": "Memory Requests %",
@ -4993,7 +4993,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Limits %", "alias": "Memory Limits %",
@ -5013,6 +5013,60 @@ data:
"type": "number", "type": "number",
"unit": "percentunit" "unit": "percentunit"
}, },
{
"alias": "Memory Usage (RSS)",
"colorMode": null,
"colors": [
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"link": false,
"linkTooltip": "Drill down",
"linkUrl": "",
"pattern": "Value #F",
"thresholds": [
],
"type": "number",
"unit": "bytes"
},
{
"alias": "Memory Usage (Cache)",
"colorMode": null,
"colors": [
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"link": false,
"linkTooltip": "Drill down",
"linkUrl": "",
"pattern": "Value #G",
"thresholds": [
],
"type": "number",
"unit": "bytes"
},
{
"alias": "Memory Usage (Swap",
"colorMode": null,
"colors": [
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"link": false,
"linkTooltip": "Drill down",
"linkUrl": "",
"pattern": "Value #H",
"thresholds": [
],
"type": "number",
"unit": "bytes"
},
{ {
"alias": "Pod", "alias": "Pod",
"colorMode": null, "colorMode": null,
@ -5092,6 +5146,33 @@ data:
"legendFormat": "", "legendFormat": "",
"refId": "E", "refId": "E",
"step": 10 "step": 10
},
{
"expr": "sum(label_replace(container_memory_rss{namespace=\"$namespace\",container_name!=\"\"}, \"pod\", \"$1\", \"pod_name\", \"(.*)\")) by (pod)",
"format": "table",
"instant": true,
"intervalFactor": 2,
"legendFormat": "",
"refId": "F",
"step": 10
},
{
"expr": "sum(label_replace(container_memory_cache{namespace=\"$namespace\",container_name!=\"\"}, \"pod\", \"$1\", \"pod_name\", \"(.*)\")) by (pod)",
"format": "table",
"instant": true,
"intervalFactor": 2,
"legendFormat": "",
"refId": "G",
"step": 10
},
{
"expr": "sum(label_replace(container_memory_swap{namespace=\"$namespace\",container_name!=\"\"}, \"pod\", \"$1\", \"pod_name\", \"(.*)\")) by (pod)",
"format": "table",
"instant": true,
"intervalFactor": 2,
"legendFormat": "",
"refId": "H",
"step": 10
} }
], ],
"thresholds": [ "thresholds": [
@ -5653,10 +5734,26 @@ data:
"steppedLine": false, "steppedLine": false,
"targets": [ "targets": [
{ {
"expr": "sum(container_memory_usage_bytes{namespace=\"$namespace\", pod_name=\"$pod\", container_name!=\"POD\", container_name!=\"\"}) by (container_name)", "expr": "sum(container_memory_rss{namespace=\"$namespace\", pod_name=\"$pod\", container_name!=\"POD\", container_name!=\"\"}) by (container_name)",
"format": "time_series", "format": "time_series",
"intervalFactor": 2, "intervalFactor": 2,
"legendFormat": "{{container_name}}", "legendFormat": "{{container_name}} (RSS)",
"legendLink": null,
"step": 10
},
{
"expr": "sum(container_memory_cache{namespace=\"$namespace\", pod_name=\"$pod\", container_name!=\"POD\", container_name!=\"\"}) by (container_name)",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "{{container_name}} (Cache)",
"legendLink": null,
"step": 10
},
{
"expr": "sum(container_memory_swap{namespace=\"$namespace\", pod_name=\"$pod\", container_name!=\"POD\", container_name!=\"\"}) by (container_name)",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "{{container_name}} (Swap)",
"legendLink": null, "legendLink": null,
"step": 10 "step": 10
} }
@ -5684,7 +5781,7 @@ data:
}, },
"yaxes": [ "yaxes": [
{ {
"format": "short", "format": "bytes",
"label": null, "label": null,
"logBase": 1, "logBase": 1,
"max": null, "max": null,
@ -5772,7 +5869,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Requests", "alias": "Memory Requests",
@ -5790,7 +5887,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Requests %", "alias": "Memory Requests %",
@ -5826,7 +5923,7 @@ data:
], ],
"type": "number", "type": "number",
"unit": "decbytes" "unit": "bytes"
}, },
{ {
"alias": "Memory Limits %", "alias": "Memory Limits %",
@ -5846,6 +5943,60 @@ data:
"type": "number", "type": "number",
"unit": "percentunit" "unit": "percentunit"
}, },
{
"alias": "Memory Usage (RSS)",
"colorMode": null,
"colors": [
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"link": false,
"linkTooltip": "Drill down",
"linkUrl": "",
"pattern": "Value #F",
"thresholds": [
],
"type": "number",
"unit": "bytes"
},
{
"alias": "Memory Usage (Cache)",
"colorMode": null,
"colors": [
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"link": false,
"linkTooltip": "Drill down",
"linkUrl": "",
"pattern": "Value #G",
"thresholds": [
],
"type": "number",
"unit": "bytes"
},
{
"alias": "Memory Usage (Swap",
"colorMode": null,
"colors": [
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"link": false,
"linkTooltip": "Drill down",
"linkUrl": "",
"pattern": "Value #H",
"thresholds": [
],
"type": "number",
"unit": "bytes"
},
{ {
"alias": "Container", "alias": "Container",
"colorMode": null, "colorMode": null,
@ -5925,6 +6076,33 @@ data:
"legendFormat": "", "legendFormat": "",
"refId": "E", "refId": "E",
"step": 10 "step": 10
},
{
"expr": "sum(label_replace(container_memory_rss{namespace=\"$namespace\", pod_name=\"$pod\", container_name != \"\", container_name != \"POD\"}, \"container\", \"$1\", \"container_name\", \"(.*)\")) by (container)",
"format": "table",
"instant": true,
"intervalFactor": 2,
"legendFormat": "",
"refId": "F",
"step": 10
},
{
"expr": "sum(label_replace(container_memory_cache{namespace=\"$namespace\", pod_name=\"$pod\", container_name != \"\", container_name != \"POD\"}, \"container\", \"$1\", \"container_name\", \"(.*)\")) by (container)",
"format": "table",
"instant": true,
"intervalFactor": 2,
"legendFormat": "",
"refId": "G",
"step": 10
},
{
"expr": "sum(label_replace(container_memory_swap{namespace=\"$namespace\", pod_name=\"$pod\", container_name != \"\", container_name != \"POD\"}, \"container\", \"$1\", \"container_name\", \"(.*)\")) by (container)",
"format": "table",
"instant": true,
"intervalFactor": 2,
"legendFormat": "",
"refId": "H",
"step": 10
} }
], ],
"thresholds": [ "thresholds": [

View File

@ -23,7 +23,7 @@ spec:
spec: spec:
containers: containers:
- name: grafana - name: grafana
image: grafana/grafana:6.0.0-beta2 image: grafana/grafana:6.0.0-beta3
env: env:
- name: GF_PATHS_CONFIG - name: GF_PATHS_CONFIG
value: "/etc/grafana/custom.ini" value: "/etc/grafana/custom.ini"