This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/monitoring/vendor/github.com/kubernetes-monitoring/kubernetes-mixin/dashboards/network-usage/pod-total.libsonnet

350 lines
10 KiB
Plaintext

local grafana = import 'github.com/grafana/grafonnet-lib/grafonnet/grafana.libsonnet';
local dashboard = grafana.dashboard;
local row = grafana.row;
local prometheus = grafana.prometheus;
local template = grafana.template;
local graphPanel = grafana.graphPanel;
local annotation = grafana.annotation;
local singlestat = grafana.singlestat;
{
grafanaDashboards+:: {
'pod-total.json':
local newGaugePanel(gaugeTitle, gaugeQuery) =
local target =
prometheus.target(
gaugeQuery
) + {
instant: null,
intervalFactor: 1,
};
singlestat.new(
title=gaugeTitle,
datasource='$datasource',
format='time_series',
height=9,
span=12,
min_span=12,
decimals=0,
valueName='current'
).addTarget(target) + {
timeFrom: null,
timeShift: null,
type: 'gauge',
options: {
fieldOptions: {
calcs: [
'last',
],
defaults: {
max: 10000000000, // 10GBs
min: 0,
title: '$namespace: $pod',
unit: 'Bps',
},
mappings: [],
override: {},
thresholds: [
{
color: 'dark-green',
index: 0,
value: null, // 0GBs
},
{
color: 'dark-yellow',
index: 1,
value: 5000000000, // 5GBs
},
{
color: 'dark-red',
index: 2,
value: 7000000000, // 7GBs
},
],
values: false,
},
},
};
local newGraphPanel(graphTitle, graphQuery, graphFormat='Bps') =
local target =
prometheus.target(
graphQuery
) + {
intervalFactor: 1,
legendFormat: '{{pod}}',
step: 10,
};
graphPanel.new(
title=graphTitle,
span=12,
datasource='$datasource',
fill=2,
linewidth=2,
min_span=12,
format=graphFormat,
min=0,
max=null,
x_axis_mode='time',
x_axis_values='total',
lines=true,
stack=true,
legend_show=true,
nullPointMode='connected'
).addTarget(target) + {
legend+: {
hideEmpty: true,
hideZero: true,
},
paceLength: 10,
tooltip+: {
sort: 2,
},
};
local clusterTemplate =
template.new(
name='cluster',
datasource='$datasource',
query='label_values(kube_pod_info, %s)' % $._config.clusterLabel,
hide=if $._config.showMultiCluster then '' else '2',
refresh=1
);
local namespaceTemplate =
template.new(
name='namespace',
datasource='$datasource',
query='label_values(container_network_receive_packets_total{%(clusterLabel)s="$cluster"}, namespace)' % $._config,
allValues='.+',
current='kube-system',
hide='',
refresh=1,
includeAll=true,
sort=1
) + {
auto: false,
auto_count: 30,
auto_min: '10s',
definition: 'label_values(container_network_receive_packets_total{%(clusterLabel)s="$cluster"}, namespace)' % $._config,
skipUrlSync: false,
};
local podTemplate =
template.new(
name='pod',
datasource='$datasource',
query='label_values(container_network_receive_packets_total{%(clusterLabel)s="$cluster",namespace=~"$namespace"}, pod)' % $._config,
allValues='.+',
current='',
hide='',
refresh=1,
includeAll=false,
sort=1
) + {
auto: false,
auto_count: 30,
auto_min: '10s',
definition: 'label_values(container_network_receive_packets_total{%(clusterLabel)s="$cluster",namespace=~"$namespace"}, pod)' % $._config,
skipUrlSync: false,
};
local resolutionTemplate =
template.new(
name='resolution',
datasource='$datasource',
query='30s,5m,1h',
current='5m',
hide='',
refresh=2,
includeAll=false,
sort=1
) + {
auto: false,
auto_count: 30,
auto_min: '10s',
skipUrlSync: false,
type: 'interval',
options: [
{
selected: false,
text: '30s',
value: '30s',
},
{
selected: true,
text: '5m',
value: '5m',
},
{
selected: false,
text: '1h',
value: '1h',
},
],
};
local intervalTemplate =
template.new(
name='interval',
datasource='$datasource',
query='4h',
current='5m',
hide=2,
refresh=2,
includeAll=false,
sort=1
) + {
auto: false,
auto_count: 30,
auto_min: '10s',
skipUrlSync: false,
type: 'interval',
options: [
{
selected: true,
text: '4h',
value: '4h',
},
],
};
//##### Current Bandwidth Row ######
local currentBandwidthRow =
row.new(
title='Current Bandwidth'
);
//##### Bandwidth Row ######
local bandwidthRow =
row.new(
title='Bandwidth'
);
//##### Packet Row ######
// collapsed, so row must include panels
local packetRow =
row.new(
title='Packets',
collapse=true,
);
//##### Error Row ######
// collapsed, so row must include panels
local errorRow =
row.new(
title='Errors',
collapse=true,
);
dashboard.new(
title='%(dashboardNamePrefix)sNetworking / Pod' % $._config.grafanaK8s,
tags=($._config.grafanaK8s.dashboardTags),
editable=true,
schemaVersion=18,
refresh=($._config.grafanaK8s.refresh),
time_from='now-1h',
time_to='now',
)
.addTemplate(
{
current: {
text: 'default',
value: 'default',
},
hide: 0,
label: null,
name: 'datasource',
options: [],
query: 'prometheus',
refresh: 1,
regex: '',
type: 'datasource',
},
)
.addTemplate(clusterTemplate)
.addTemplate(namespaceTemplate)
.addTemplate(podTemplate)
.addTemplate(resolutionTemplate)
.addTemplate(intervalTemplate)
.addAnnotation(annotation.default)
.addPanel(currentBandwidthRow, gridPos={ h: 1, w: 24, x: 0, y: 0 })
.addPanel(
newGaugePanel(
gaugeTitle='Current Rate of Bytes Received',
gaugeQuery='sum(irate(container_network_receive_bytes_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution]))' % $._config,
),
gridPos={ h: 9, w: 12, x: 0, y: 1 }
)
.addPanel(
newGaugePanel(
gaugeTitle='Current Rate of Bytes Transmitted',
gaugeQuery='sum(irate(container_network_transmit_bytes_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution]))' % $._config,
),
gridPos={ h: 9, w: 12, x: 12, y: 1 }
)
.addPanel(bandwidthRow, gridPos={ h: 1, w: 24, x: 0, y: 10 })
.addPanel(
newGraphPanel(
graphTitle='Receive Bandwidth',
graphQuery='sum(irate(container_network_receive_bytes_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution])) by (pod)' % $._config,
),
gridPos={ h: 9, w: 12, x: 0, y: 11 }
)
.addPanel(
newGraphPanel(
graphTitle='Transmit Bandwidth',
graphQuery='sum(irate(container_network_transmit_bytes_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution])) by (pod)' % $._config,
),
gridPos={ h: 9, w: 12, x: 12, y: 11 }
)
.addPanel(
packetRow
.addPanel(
newGraphPanel(
graphTitle='Rate of Received Packets',
graphQuery='sum(irate(container_network_receive_packets_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution])) by (pod)' % $._config,
graphFormat='pps'
),
gridPos={ h: 10, w: 12, x: 0, y: 21 }
)
.addPanel(
newGraphPanel(
graphTitle='Rate of Transmitted Packets',
graphQuery='sum(irate(container_network_transmit_packets_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution])) by (pod)' % $._config,
graphFormat='pps'
),
gridPos={ h: 10, w: 12, x: 12, y: 21 }
),
gridPos={ h: 1, w: 24, x: 0, y: 20 }
)
.addPanel(
errorRow
.addPanel(
newGraphPanel(
graphTitle='Rate of Received Packets Dropped',
graphQuery='sum(irate(container_network_receive_packets_dropped_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution])) by (pod)' % $._config,
graphFormat='pps'
),
gridPos={ h: 10, w: 12, x: 0, y: 32 }
)
.addPanel(
newGraphPanel(
graphTitle='Rate of Transmitted Packets Dropped',
graphQuery='sum(irate(container_network_transmit_packets_dropped_total{%(clusterLabel)s="$cluster",namespace=~"$namespace", pod=~"$pod"}[$interval:$resolution])) by (pod)' % $._config,
graphFormat='pps'
),
gridPos={ h: 10, w: 12, x: 12, y: 32 }
),
gridPos={ h: 1, w: 24, x: 0, y: 21 }
),
},
}