| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_DAEMON_NETDATA_CONF_DBENGINE_H |
| 4 | #define NETDATA_DAEMON_NETDATA_CONF_DBENGINE_H |
| 5 | |
| 6 | #include "libnetdata/libnetdata.h" |
| 7 | |
| 8 | extern bool dbengine_enabled; |
| 9 | extern bool dbengine_use_direct_io; |
| 10 | |
| 11 | extern int default_rrd_history_entries; |
| 12 | extern int gap_when_lost_iterations_above; |
| 13 | extern time_t rrdset_free_obsolete_time_s; |
| 14 | |
| 15 | size_t get_tier_grouping(size_t tier); |
| 16 | |
| 17 | void netdata_conf_section_db(void); |
| 18 | void netdata_conf_dbengine_init(const char *hostname); |
| 19 | |
| 20 | #include "netdata-conf.h" |
| 21 | |
| 22 | #endif //NETDATA_DAEMON_NETDATA_CONF_DBENGINE_H |