mirror of
https://github.com/netdata/netdata.git
synced 2025-04-13 09:11:50 +00:00

* cleanup alerts * fix references * fix references * fix references * load alerts once and apply them to each node * simplify health_create_alarm_entry() * Compile without warnings with compiler flags: -Wall -Wextra -Wformat=2 -Wshadow -Wno-format-nonliteral -Winit-self * code re-organization and cleanup * generate patterns when applying prototypes; give unique dyncfg names to all alerts * eval expressions keep the source and the parsed_as as STRING pointers * renamed host to node in dyncfg ids * renamed host to node in dyncfg ids * add all cloud roles to the list of parsed X-Netdata-Role header and also default to member access level * working functionality * code re-organization: moved health event-loop to a new file, moved health globals to health.c * rrdcalctemplate is removed; alert_cfg is removed; foreach dimension is removed; RRDCALCs are now instanciated only when they are linked to RRDSETs * dyncfg alert prototypes initialization for alerts * health dyncfg split to separate file * cleanup not-needed code * normalize matches between parsing and json * also detect !* for disabled alerts * dyncfg capability disabled * Store alert config part1 * Add rrdlabels_common_count * wip health variables lookup without indexes * Improve rrdlabels_common_count by reusing rrdlabels_find_label_with_key_unsafe with an additional parameter * working variables with runtime lookup * working variables with runtime lookup * delete rrddimvar and rrdfamily index * remove rrdsetvar; now all variables are in RRDVARs inside hosts and charts * added /api/v1/variable that resolves a variable the same way alerts do * remove rrdcalc from eval * remove debug code * remove duplicate assignment * Fix memory leak * all alert variables are now handled by alert_variable_lookup() and EVAL is now independent of alerts * hide all internal structures of EVAL * Enable -Wformat flag Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud> * Adjust binding for calculation, warning, critical * Remove unused macro * Update config hash id * use the right info and summary in alerts log * use synchronous queries for alerts * Handle cases when config_hash_id is missing from health_log * remove deadlock from health worker * parsing to json payload for health alert prototypes * cleaner parsing and avoiding memory leaks in case of duplicate members in json * fix left-over rename of function * Keep original lookup field to send to the cloud Cleanup / rename function to store config Remove unused DEFINEs, functions * Use ac->lookup * link jobs to the host when the template is registered; do not accept running a function without a host * full dyncfg support for health alerts, except action TEST * working dyncfg additions, updates, removals * fixed missing source, wrong status updates * add alerts by type, component, classification, recipient and module at the /api/v2/alerts endpoint * fix dyncfg unittest * rename functions * generalize the json-c parser macros and move them to libnetdata * report progress when enabling and disabling dyncfg templates * moved rrdcalc and rrdvar to health * update alarms * added schema for alerts; separated alert_action_options from rrdr_options; restructured the json payload for alerts * enable parsed json alerts; allow sending back accepted but disabled * added format_version for alerts payload; enables/disables status now is also inheritted by the status of the rules; fixed variable names in json output * remove the RRDHOST pointer from DYNCFG * Fix command field submitted to the cloud * do not send updates to creation requests, for DYNCFG jobs --------- Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud> Co-authored-by: Stelios Fragkakis <52996999+stelfrag@users.noreply.github.com> Co-authored-by: Tasos Katsoulas <tasos@netdata.cloud> Co-authored-by: ilyam8 <ilya@netdata.cloud>
142 lines
5.3 KiB
C
142 lines
5.3 KiB
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_COMMON_H
|
|
#define NETDATA_COMMON_H 1
|
|
|
|
#include "libnetdata/libnetdata.h"
|
|
#include "event_loop.h"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// shortcuts for the default netdata configuration
|
|
|
|
#define config_load(filename, overwrite_used, section) appconfig_load(&netdata_config, filename, overwrite_used, section)
|
|
#define config_get(section, name, default_value) appconfig_get(&netdata_config, section, name, default_value)
|
|
#define config_get_number(section, name, value) appconfig_get_number(&netdata_config, section, name, value)
|
|
#define config_get_float(section, name, value) appconfig_get_float(&netdata_config, section, name, value)
|
|
#define config_get_boolean(section, name, value) appconfig_get_boolean(&netdata_config, section, name, value)
|
|
#define config_get_boolean_ondemand(section, name, value) appconfig_get_boolean_ondemand(&netdata_config, section, name, value)
|
|
#define config_get_duration(section, name, value) appconfig_get_duration(&netdata_config, section, name, value)
|
|
|
|
#define config_set(section, name, default_value) appconfig_set(&netdata_config, section, name, default_value)
|
|
#define config_set_default(section, name, value) appconfig_set_default(&netdata_config, section, name, value)
|
|
#define config_set_number(section, name, value) appconfig_set_number(&netdata_config, section, name, value)
|
|
#define config_set_float(section, name, value) appconfig_set_float(&netdata_config, section, name, value)
|
|
#define config_set_boolean(section, name, value) appconfig_set_boolean(&netdata_config, section, name, value)
|
|
|
|
#define config_exists(section, name) appconfig_exists(&netdata_config, section, name)
|
|
#define config_move(section_old, name_old, section_new, name_new) appconfig_move(&netdata_config, section_old, name_old, section_new, name_new)
|
|
|
|
#define config_generate(buffer, only_changed) appconfig_generate(&netdata_config, buffer, only_changed)
|
|
|
|
#define config_section_destroy(section) appconfig_section_destroy_non_loaded(&netdata_config, section)
|
|
#define config_section_option_destroy(section, name) appconfig_section_option_destroy_non_loaded(&netdata_config, section, name)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// netdata include files
|
|
|
|
#include "daemon/config/dyncfg.h"
|
|
|
|
#include "global_statistics.h"
|
|
|
|
// health monitoring and alarm notifications
|
|
#include "health/health.h"
|
|
|
|
// the netdata database
|
|
#include "database/rrd.h"
|
|
|
|
// the netdata webserver(s)
|
|
#include "web/server/web_server.h"
|
|
|
|
// the new h2o based netdata webserver
|
|
#ifdef ENABLE_H2O
|
|
#include "web/server/h2o/http_server.h"
|
|
#endif
|
|
|
|
// streaming metrics between netdata servers
|
|
#include "streaming/rrdpush.h"
|
|
|
|
|
|
// anomaly detection
|
|
#include "ml/ml.h"
|
|
|
|
// the netdata registry
|
|
// the registry is actually an API feature
|
|
#include "registry/registry.h"
|
|
|
|
// exporting engine for archiving the metrics
|
|
#include "exporting/exporting_engine.h"
|
|
|
|
// the netdata API
|
|
#include "web/server/web_client.h"
|
|
#include "web/rtc/webrtc.h"
|
|
|
|
// all data collection plugins
|
|
#include "collectors/all.h"
|
|
|
|
// netdata unit tests
|
|
#include "unit_test.h"
|
|
|
|
// netdata agent claiming
|
|
#include "claim/claim.h"
|
|
|
|
// netdata agent cloud link
|
|
#include "aclk/aclk.h"
|
|
|
|
// global GUID map functions
|
|
|
|
// netdata agent spawn server
|
|
#include "spawn/spawn.h"
|
|
|
|
// the netdata daemon
|
|
#include "daemon.h"
|
|
#include "main.h"
|
|
#include "static_threads.h"
|
|
#include "signals.h"
|
|
#include "commands.h"
|
|
#include "pipename.h"
|
|
#include "analytics.h"
|
|
|
|
// global netdata daemon variables
|
|
extern char *netdata_configured_hostname;
|
|
extern char *netdata_configured_user_config_dir;
|
|
extern char *netdata_configured_stock_config_dir;
|
|
extern char *netdata_configured_log_dir;
|
|
extern char *netdata_configured_primary_plugins_dir;
|
|
extern char *netdata_configured_web_dir;
|
|
extern char *netdata_configured_cache_dir;
|
|
extern char *netdata_configured_varlib_dir;
|
|
extern char *netdata_configured_lock_dir;
|
|
extern char *netdata_configured_home_dir;
|
|
extern char *netdata_configured_host_prefix;
|
|
extern char *netdata_configured_timezone;
|
|
extern char *netdata_configured_abbrev_timezone;
|
|
extern int32_t netdata_configured_utc_offset;
|
|
extern int netdata_zero_metrics_enabled;
|
|
extern int netdata_anonymous_statistics_enabled;
|
|
|
|
extern bool netdata_ready;
|
|
extern int netdata_cloud_enabled;
|
|
|
|
extern time_t netdata_start_time;
|
|
|
|
long get_netdata_cpus(void);
|
|
|
|
typedef enum __attribute__((packed)) {
|
|
CLOUD_STATUS_UNAVAILABLE = 0, // cloud and aclk functionality is not available on this agent
|
|
CLOUD_STATUS_AVAILABLE, // cloud and aclk functionality is available, but the agent is not claimed
|
|
CLOUD_STATUS_DISABLED, // cloud and aclk functionality is available, but it is disabled
|
|
CLOUD_STATUS_BANNED, // the agent has been banned from cloud
|
|
CLOUD_STATUS_OFFLINE, // the agent tries to connect to cloud, but cannot do it
|
|
CLOUD_STATUS_ONLINE, // the agent is connected to cloud
|
|
} CLOUD_STATUS;
|
|
|
|
const char *cloud_status_to_string(CLOUD_STATUS status);
|
|
CLOUD_STATUS cloud_status(void);
|
|
time_t cloud_last_change(void);
|
|
time_t cloud_next_connection_attempt(void);
|
|
size_t cloud_connection_id(void);
|
|
const char *cloud_offline_reason(void);
|
|
const char *cloud_base_url(void);
|
|
CLOUD_STATUS buffer_json_cloud_status(BUFFER *wb, time_t now_s);
|
|
|
|
#endif /* NETDATA_COMMON_H */
|