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/grafana/grafonnet-lib/grafonnet/singlestat.libsonnet

134 lines
3.2 KiB
Plaintext

{
new(
title,
format='none',
description='',
interval=null,
height=null,
datasource=null,
span=null,
min_span=null,
decimals=null,
valueName='avg',
valueFontSize='80%',
prefixFontSize='50%',
postfixFontSize='50%',
mappingType=1,
repeat=null,
repeatDirection=null,
prefix='',
postfix='',
colors=[
'#299c46',
'rgba(237, 129, 40, 0.89)',
'#d44a3a',
],
colorBackground=false,
colorValue=false,
thresholds='',
valueMaps=[
{
value: 'null',
op: '=',
text: 'N/A',
},
],
rangeMaps=[
{
from: 'null',
to: 'null',
text: 'N/A',
},
],
transparent=null,
sparklineFillColor='rgba(31, 118, 189, 0.18)',
sparklineFull=false,
sparklineLineColor='rgb(31, 120, 193)',
sparklineShow=false,
gaugeShow=false,
gaugeMinValue=0,
gaugeMaxValue=100,
gaugeThresholdMarkers=true,
gaugeThresholdLabels=false,
timeFrom=null,
links=[],
tableColumn='',
maxPerRow=null,
)::
{
[if height != null then 'height']: height,
[if description != '' then 'description']: description,
[if repeat != null then 'repeat']: repeat,
[if repeatDirection != null then 'repeatDirection']: repeatDirection,
[if transparent != null then 'transparent']: transparent,
[if min_span != null then 'minSpan']: min_span,
title: title,
[if span != null then 'span']: span,
type: 'singlestat',
datasource: datasource,
targets: [
],
links: links,
[if decimals != null then 'decimals']: decimals,
maxDataPoints: 100,
interval: interval,
cacheTimeout: null,
format: format,
prefix: prefix,
postfix: postfix,
nullText: null,
valueMaps: valueMaps,
[if maxPerRow != null then 'maxPerRow']: maxPerRow,
mappingTypes: [
{
name: 'value to text',
value: 1,
},
{
name: 'range to text',
value: 2,
},
],
rangeMaps: rangeMaps,
mappingType:
if mappingType == 'value'
then
1
else if mappingType == 'range'
then
2
else
mappingType,
nullPointMode: 'connected',
valueName: valueName,
prefixFontSize: prefixFontSize,
valueFontSize: valueFontSize,
postfixFontSize: postfixFontSize,
thresholds: thresholds,
[if timeFrom != null then 'timeFrom']: timeFrom,
colorBackground: colorBackground,
colorValue: colorValue,
colors: colors,
gauge: {
show: gaugeShow,
minValue: gaugeMinValue,
maxValue: gaugeMaxValue,
thresholdMarkers: gaugeThresholdMarkers,
thresholdLabels: gaugeThresholdLabels,
},
sparkline: {
fillColor: sparklineFillColor,
full: sparklineFull,
lineColor: sparklineLineColor,
show: sparklineShow,
},
tableColumn: tableColumn,
_nextTarget:: 0,
addTarget(target):: self {
local nextTarget = super._nextTarget,
_nextTarget: nextTarget + 1,
targets+: [target { refId: std.char(std.codepoint('A') + nextTarget) }],
},
},
}