mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
18 lines
242 B
Plaintext
18 lines
242 B
Plaintext
#include "icinga/customvarobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
safe class PerfdataValue
|
|
{
|
|
[state] double value;
|
|
[state] bool counter;
|
|
[state] String unit;
|
|
[state] Value crit;
|
|
[state] Value warn;
|
|
[state] Value min;
|
|
[state] Value max;
|
|
};
|
|
|
|
}
|