mirror of
https://github.com/netdata/netdata.git
synced 2025-04-28 06:32:30 +00:00

* pull aclk schemas * resolve capas * handle checkpoints and removed from health * build with disable-cloud * codacy 1 * misc changes * one more char in hash * free buffer * change topic * misc fixes * skip removed alert variables * change hash functions * use create and destroy for compatibility with older openssl
14 lines
492 B
C
14 lines
492 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_provide_alarm_checkpoint(struct alarm_checkpoint *checkpoint);
|
|
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 */
|