12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // SPDX-License-Identifier: GPL-3.0-or-later
- #ifndef NETDATA_SQLITE_HEALTH_H
- #define NETDATA_SQLITE_HEALTH_H
- #include "../../daemon/common.h"
- #include "sqlite3.h"
- struct sql_alert_transition_data;
- struct sql_alert_config_data;
- extern sqlite3 *db_meta;
- void sql_health_alarm_log_load(RRDHOST *host);
- void sql_health_alarm_log_update(RRDHOST *host, ALARM_ENTRY *ae);
- void sql_health_alarm_log_insert(RRDHOST *host, ALARM_ENTRY *ae);
- void sql_health_alarm_log_save(RRDHOST *host, ALARM_ENTRY *ae);
- void sql_health_alarm_log_cleanup(RRDHOST *host);
- int alert_hash_and_store_config(uuid_t hash_id, struct alert_config *cfg, int store_hash);
- void sql_aclk_alert_clean_dead_entries(RRDHOST *host);
- int sql_health_get_last_executed_event(RRDHOST *host, ALARM_ENTRY *ae, RRDCALC_STATUS *last_executed_status);
- void sql_health_alarm_log2json(RRDHOST *host, BUFFER *wb, uint32_t after, char *chart);
- int health_migrate_old_health_log_table(char *table);
- uint32_t sql_get_alarm_id(RRDHOST *host, STRING *chart, STRING *name, uint32_t *next_event_id, uuid_t *config_hash_id);
- uint32_t sql_get_alarm_id_check_zero_hash(RRDHOST *host, STRING *chart, STRING *name, uint32_t *next_event_id, uuid_t *config_hash_id);
- void sql_alert_transitions(
- DICTIONARY *nodes,
- time_t after,
- time_t before,
- const char *context,
- const char *alert_name,
- const char *transition,
- void (*cb)(struct sql_alert_transition_data *, void *),
- void *data,
- bool debug);
- int sql_get_alert_configuration(
- DICTIONARY *configs,
- void (*cb)(struct sql_alert_config_data *, void *),
- void *data,
- bool debug __maybe_unused);
- bool sql_find_alert_transition(const char *transition, void (*cb)(const char *machine_guid, const char *context, time_t alert_id, void *data), void *data);
- bool is_chart_name_populated(uuid_t *host_uuid);
- void chart_name_populate(uuid_t *host_uuid);
- #endif //NETDATA_SQLITE_HEALTH_H
|