| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_PULSE_DICTIONARY_H |
| 4 | #define NETDATA_PULSE_DICTIONARY_H |
| 5 | |
| 6 | #include "daemon/common.h" |
| 7 | |
| 8 | extern struct dictionary_stats dictionary_stats_category_collectors; |
| 9 | extern struct dictionary_stats dictionary_stats_category_rrdhost; |
| 10 | extern struct dictionary_stats dictionary_stats_category_rrdset; |
| 11 | extern struct dictionary_stats dictionary_stats_category_rrddim; |
| 12 | extern struct dictionary_stats dictionary_stats_category_rrdcontext; |
| 13 | extern struct dictionary_stats dictionary_stats_category_rrdlabels; |
| 14 | extern struct dictionary_stats dictionary_stats_category_rrdhealth; |
| 15 | extern struct dictionary_stats dictionary_stats_category_functions; |
| 16 | extern struct dictionary_stats dictionary_stats_category_replication; |
| 17 | extern struct dictionary_stats dictionary_stats_category_dyncfg; |
| 18 | |
| 19 | #if defined(PULSE_INTERNALS) |
| 20 | void pulse_dictionary_do(bool extended); |
| 21 | #endif |
| 22 | |
| 23 | #endif //NETDATA_PULSE_DICTIONARY_H |