0

Looks like this is the format for performance data in nagios/icinga

'label'=value[UOM];[warn];[crit];[min];[max]

Is it possible to add more than one value for single label as shown below?

eg:

'label'=value1[UOM],value2[UOM],value3[UOM];[warn];[crit];[min];[max]

Or is it possible to rename warn, crit, min, max to value2,value3...???

I would like to get one more column with Value2

Any help is appreciated. Thank you!

This Image is output of performance data from icinga

I would like to get one more column with Value2

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
jarvis93
  • 3
  • 2

2 Answers2

0

In theory, it is possible as you can see on figure below where 10,11,12 are value1, value2 and value3:

figure 1

But main problem here will be graphs and all visualization because they count on define structure of performance data. Data won't be displayed correctly.

Rohlik
  • 1,286
  • 19
  • 28
0

The gold standard for these types of questions is the Development Guidelines, see the "Performance data" section. It gives this example as "expected format":

'label'=value[UOM];[warn];[crit];[min];[max]

It goes on to state that it should contain:

space separated list of label/value pairs

I don't think this is open for much interpretation: every label has one value, and an optional unit of measurement.

pzkpfw
  • 565
  • 3
  • 21