2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 19:44:31 +02:00
|
|
|
|
2017-05-15 15:51:39 +02:00
|
|
|
library base;
|
2015-08-04 14:47:44 +02:00
|
|
|
|
2013-11-07 13:37:58 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-10-25 09:14:56 +02:00
|
|
|
class PerfdataValue
|
2013-11-07 13:37:58 +01:00
|
|
|
{
|
2014-09-17 15:38:39 +02:00
|
|
|
[state] String label;
|
2013-11-08 11:17:46 +01:00
|
|
|
[state] double value;
|
|
|
|
[state] bool counter;
|
|
|
|
[state] String unit;
|
|
|
|
[state] Value crit;
|
|
|
|
[state] Value warn;
|
|
|
|
[state] Value min;
|
|
|
|
[state] Value max;
|
2013-11-07 13:37:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|