mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-06 15:30:48 -05:00
20 lines
284 B
Text
20 lines
284 B
Text
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
library base;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class PerfdataValue
|
|
{
|
|
[state] String label;
|
|
[state] double value;
|
|
[state] bool counter;
|
|
[state] String unit;
|
|
[state] Value crit;
|
|
[state] Value warn;
|
|
[state] Value min;
|
|
[state] Value max;
|
|
};
|
|
|
|
}
|