blob: f8061875564f782718b194d2338b96a8bc16c4d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Icinga 2 | (c) 2021 Icinga GmbH | GPLv2+ */
#include "perfdata/influxdbcommonwriter.hpp"
library perfdata;
namespace icinga
{
class Influxdb2Writer : InfluxdbCommonWriter
{
activation_priority 100;
[config, required] String organization;
[config, required] String bucket;
[config, required, no_user_view] String auth_token;
};
}
|