monitoring: color namespace pies

This commit is contained in:
Brad Stein 2025-11-17 22:36:50 -03:00
parent cc62f497e9
commit 255e014e0a
3 changed files with 670 additions and 9 deletions

View File

@ -361,6 +361,18 @@ def table_panel(
def pie_panel(panel_id, title, expr, grid):
"""Return a pie chart panel with readable namespace labels."""
palette = [
"#EF476F",
"#FFD166",
"#06D6A0",
"#118AB2",
"#073B4C",
"#F78C6B",
"#8EECF5",
"#E0FF4F",
"#B5179E",
"#52B788",
]
return {
"id": panel_id,
"type": "piechart",
@ -368,7 +380,28 @@ def pie_panel(panel_id, title, expr, grid):
"datasource": PROM_DS,
"gridPos": grid,
"targets": [{"expr": expr, "refId": "A", "legendFormat": "{{namespace}}"}],
"fieldConfig": {"defaults": {"unit": "percent"}, "overrides": []},
"fieldConfig": {
"defaults": {
"unit": "percent",
"custom": {"gradientMode": "scheme"},
"color": {"mode": "palette-classic"},
},
"overrides": [
{
"matcher": {"id": "byIndex", "options": idx},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": palette[idx % len(palette)],
},
}
],
}
for idx in range(10)
],
},
"options": {
"legend": {"displayMode": "list", "placement": "right"},
"pieType": "pie",

View File

@ -729,9 +729,166 @@
],
"fieldConfig": {
"defaults": {
"unit": "percent"
"unit": "percent",
"custom": {
"gradientMode": "scheme"
},
"color": {
"mode": "palette-classic"
}
},
"overrides": []
"overrides": [
{
"matcher": {
"id": "byIndex",
"options": 0
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#EF476F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 1
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#FFD166"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 2
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#06D6A0"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 3
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#118AB2"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 4
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#073B4C"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 5
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#F78C6B"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 6
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#8EECF5"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 7
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#E0FF4F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 8
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#B5179E"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 9
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#52B788"
}
}
]
}
]
},
"options": {
"legend": {
@ -771,9 +928,166 @@
],
"fieldConfig": {
"defaults": {
"unit": "percent"
"unit": "percent",
"custom": {
"gradientMode": "scheme"
},
"color": {
"mode": "palette-classic"
}
},
"overrides": []
"overrides": [
{
"matcher": {
"id": "byIndex",
"options": 0
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#EF476F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 1
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#FFD166"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 2
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#06D6A0"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 3
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#118AB2"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 4
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#073B4C"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 5
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#F78C6B"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 6
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#8EECF5"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 7
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#E0FF4F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 8
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#B5179E"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 9
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#52B788"
}
}
]
}
]
},
"options": {
"legend": {

View File

@ -738,9 +738,166 @@ data:
],
"fieldConfig": {
"defaults": {
"unit": "percent"
"unit": "percent",
"custom": {
"gradientMode": "scheme"
},
"color": {
"mode": "palette-classic"
}
},
"overrides": []
"overrides": [
{
"matcher": {
"id": "byIndex",
"options": 0
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#EF476F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 1
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#FFD166"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 2
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#06D6A0"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 3
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#118AB2"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 4
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#073B4C"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 5
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#F78C6B"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 6
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#8EECF5"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 7
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#E0FF4F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 8
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#B5179E"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 9
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#52B788"
}
}
]
}
]
},
"options": {
"legend": {
@ -780,9 +937,166 @@ data:
],
"fieldConfig": {
"defaults": {
"unit": "percent"
"unit": "percent",
"custom": {
"gradientMode": "scheme"
},
"color": {
"mode": "palette-classic"
}
},
"overrides": []
"overrides": [
{
"matcher": {
"id": "byIndex",
"options": 0
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#EF476F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 1
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#FFD166"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 2
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#06D6A0"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 3
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#118AB2"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 4
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#073B4C"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 5
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#F78C6B"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 6
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#8EECF5"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 7
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#E0FF4F"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 8
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#B5179E"
}
}
]
},
{
"matcher": {
"id": "byIndex",
"options": 9
},
"properties": [
{
"id": "color",
"value": {
"mode": "fixed",
"fixedColor": "#52B788"
}
}
]
}
]
},
"options": {
"legend": {