mirror of
https://github.com/rfmoz/grafana-dashboards.git
synced 2025-03-05 20:51:45 -08:00
Change host:port to instance and replace apache up/down panel to state timeline
Due to possible relabelling rules instances may not contain port at all. Keeping it as single value instance makes it more universal.
This commit is contained in:
parent
321e3f3df4
commit
6df0b6aafd
|
@ -37,13 +37,12 @@ local graphPanel = grafana.graphPanel;
|
|||
datasource: '${datasource}',
|
||||
hide: 0,
|
||||
includeAll: false,
|
||||
label: 'host',
|
||||
label: 'instance',
|
||||
multi: false,
|
||||
name: 'host',
|
||||
name: 'instance',
|
||||
options: [],
|
||||
query: 'label_values(apache_up, instance)',
|
||||
refresh: 2,
|
||||
regex: '/([^:]+):.*/',
|
||||
sort: 1,
|
||||
tagValuesQuery: '',
|
||||
tags: [],
|
||||
|
@ -51,26 +50,6 @@ local graphPanel = grafana.graphPanel;
|
|||
type: 'query',
|
||||
useTags: false,
|
||||
},
|
||||
{
|
||||
allValue: null,
|
||||
current: {},
|
||||
datasource: '${datasource}',
|
||||
hide: 2,
|
||||
includeAll: false,
|
||||
label: null,
|
||||
multi: false,
|
||||
name: 'port',
|
||||
options: [],
|
||||
query: 'label_values(apache_up, instance)',
|
||||
refresh: 1,
|
||||
regex: '/[^:]+:(.*)/',
|
||||
sort: 0,
|
||||
tagValuesQuery: '',
|
||||
tags: [],
|
||||
tagsQuery: '',
|
||||
type: 'query',
|
||||
useTags: false,
|
||||
},
|
||||
]
|
||||
)
|
||||
.addPanels([
|
||||
|
@ -138,7 +117,7 @@ local graphPanel = grafana.graphPanel;
|
|||
pluginVersion: '8.4.5',
|
||||
targets: [
|
||||
{
|
||||
expr: 'apache_uptime_seconds_total{instance=~"$host:$port"}',
|
||||
expr: 'apache_uptime_seconds_total{instance=~"$instance"}',
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
refId: 'A',
|
||||
|
@ -149,108 +128,92 @@ local graphPanel = grafana.graphPanel;
|
|||
type: 'stat',
|
||||
},
|
||||
{
|
||||
aliasColors: {},
|
||||
bars: false,
|
||||
dashLength: 10,
|
||||
dashes: false,
|
||||
datasource: {
|
||||
uid: '${datasource}',
|
||||
},
|
||||
decimals: 0,
|
||||
fill: 7,
|
||||
fillGradient: 0,
|
||||
id: 5,
|
||||
gridPos: {
|
||||
h: 3,
|
||||
w: 20,
|
||||
x: 4,
|
||||
y: 0,
|
||||
},
|
||||
hiddenSeries: false,
|
||||
id: 5,
|
||||
legend: {
|
||||
alignAsTable: true,
|
||||
avg: true,
|
||||
current: true,
|
||||
max: true,
|
||||
min: true,
|
||||
rightSide: true,
|
||||
show: true,
|
||||
total: false,
|
||||
values: true,
|
||||
type: 'state-timeline',
|
||||
title: 'Apache Up / Down',
|
||||
datasource: {
|
||||
uid: '${datasource}',
|
||||
type: 'prometheus',
|
||||
},
|
||||
lines: true,
|
||||
linewidth: 3,
|
||||
links: [],
|
||||
nullPointMode: 'null',
|
||||
options: {
|
||||
alertThreshold: true,
|
||||
},
|
||||
percentage: false,
|
||||
pluginVersion: '8.4.5',
|
||||
pointradius: 5,
|
||||
points: false,
|
||||
renderer: 'flot',
|
||||
seriesOverrides: [
|
||||
{
|
||||
alias: 'Apache Down',
|
||||
color: '#BF1B00',
|
||||
links: [],
|
||||
options: {
|
||||
mergeValues: false,
|
||||
showValue: 'never',
|
||||
alignValue: 'left',
|
||||
rowHeight: 0.9,
|
||||
legend: {
|
||||
displayMode: 'list',
|
||||
placement: 'right',
|
||||
},
|
||||
tooltip: {
|
||||
mode: 'single',
|
||||
sort: 'none',
|
||||
},
|
||||
{
|
||||
alias: 'Apache Down',
|
||||
transform: 'negative-Y',
|
||||
},
|
||||
],
|
||||
spaceLength: 10,
|
||||
stack: false,
|
||||
steppedLine: false,
|
||||
targets: [
|
||||
{
|
||||
expr: 'count(apache_up{instance=~"$host:$port"} == 1)',
|
||||
expr: 'apache_up{instance=~"$instance"}',
|
||||
legendFormat: 'Apache up',
|
||||
interval: '',
|
||||
exemplar: true,
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
legendFormat: 'Apache Up',
|
||||
refId: 'A',
|
||||
step: 240,
|
||||
datasource: {
|
||||
type: 'prometheus',
|
||||
uid: 'grafanacloud-prom',
|
||||
},
|
||||
{
|
||||
expr: 'scalar(count(apache_up{instance=~"$host:$port"} == 0))',
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
legendFormat: 'Apache Down',
|
||||
refId: 'B',
|
||||
step: 240,
|
||||
},
|
||||
],
|
||||
thresholds: [],
|
||||
timeRegions: [],
|
||||
title: 'Apache Up / Down',
|
||||
tooltip: {
|
||||
shared: true,
|
||||
sort: 0,
|
||||
value_type: 'individual',
|
||||
fieldConfig: {
|
||||
defaults: {
|
||||
custom: {
|
||||
lineWidth: 0,
|
||||
fillOpacity: 70,
|
||||
spanNulls: false,
|
||||
},
|
||||
type: 'graph',
|
||||
xaxis: {
|
||||
mode: 'time',
|
||||
show: true,
|
||||
values: [],
|
||||
color: {
|
||||
mode: 'continuous-GrYlRd',
|
||||
},
|
||||
yaxes: [
|
||||
mappings: [
|
||||
{
|
||||
format: 'short',
|
||||
logBase: 1,
|
||||
max: '1',
|
||||
show: true,
|
||||
type: 'value',
|
||||
options: {
|
||||
'0': {
|
||||
text: 'Down',
|
||||
color: 'red',
|
||||
index: 1,
|
||||
},
|
||||
'1': {
|
||||
text: 'Up',
|
||||
color: 'green',
|
||||
index: 0,
|
||||
},
|
||||
},
|
||||
{
|
||||
format: 'short',
|
||||
logBase: 1,
|
||||
show: false,
|
||||
},
|
||||
],
|
||||
yaxis: {
|
||||
align: false,
|
||||
thresholds: {
|
||||
mode: 'absolute',
|
||||
steps: [
|
||||
{
|
||||
color: 'green',
|
||||
value: null,
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
overrides: [],
|
||||
},
|
||||
timeFrom: null,
|
||||
timeShift: null,
|
||||
},
|
||||
{
|
||||
aliasColors: {},
|
||||
|
@ -299,7 +262,7 @@ local graphPanel = grafana.graphPanel;
|
|||
steppedLine: false,
|
||||
targets: [
|
||||
{
|
||||
expr: 'rate(apache_sent_kilobytes_total{instance=~"$host:$port"}[5m])',
|
||||
expr: 'rate(apache_sent_kilobytes_total{instance=~"$instance"}[5m])',
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
legendFormat: 'Kilobytes Sent',
|
||||
|
@ -384,7 +347,7 @@ local graphPanel = grafana.graphPanel;
|
|||
steppedLine: false,
|
||||
targets: [
|
||||
{
|
||||
expr: 'rate(apache_accesses_total{instance=~"$host:$port"}[5m])',
|
||||
expr: 'rate(apache_accesses_total{instance=~"$instance"}[5m])',
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
legendFormat: 'Accesses',
|
||||
|
@ -470,7 +433,7 @@ local graphPanel = grafana.graphPanel;
|
|||
steppedLine: false,
|
||||
targets: [
|
||||
{
|
||||
expr: 'apache_scoreboard{instance=~"$host:$port"}',
|
||||
expr: 'apache_scoreboard{instance=~"$instance"}',
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
legendFormat: '{{ state }}',
|
||||
|
@ -555,7 +518,7 @@ local graphPanel = grafana.graphPanel;
|
|||
steppedLine: false,
|
||||
targets: [
|
||||
{
|
||||
expr: 'apache_workers{instance=~"$host:$port"}\n',
|
||||
expr: 'apache_workers{instance=~"$instance"}\n',
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
legendFormat: '{{ state }}',
|
||||
|
@ -640,7 +603,7 @@ local graphPanel = grafana.graphPanel;
|
|||
steppedLine: false,
|
||||
targets: [
|
||||
{
|
||||
expr: 'apache_cpuload{instance=~"$host:$port"}',
|
||||
expr: 'apache_cpuload{instance=~"$instance"}',
|
||||
format: 'time_series',
|
||||
intervalFactor: 1,
|
||||
legendFormat: 'Load',
|
||||
|
|
Loading…
Reference in a new issue