0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-28 14:42:31 +00:00
netdata_netdata/aclk/aclk_alarm_api.h
Timotej S 81e23e71ce
Adds new alarm status protocol messages ()
Adds new message parsers and generators for the Alarm Snapshot messages
2021-10-15 12:48:03 +02:00

14 lines
484 B
C

// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef ACLK_ALARM_API_H
#define ACLK_ALARM_API_H
#include "../daemon/common.h"
#include "schema-wrappers/schema_wrappers.h"
void aclk_send_alarm_log_health(struct alarm_log_health *log_health);
void aclk_send_alarm_log_entry(struct alarm_log_entry *log_entry);
void aclk_send_provide_alarm_cfg(struct provide_alarm_configuration *cfg);
void aclk_send_alarm_snapshot(alarm_snapshot_proto_ptr_t snapshot);
#endif /* ACLK_ALARM_API_H */