summaryrefslogtreecommitdiffstats
path: root/exporting/check_filters.c
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@netdata.cloud>2022-09-07 15:28:30 +0300
committerGitHub <noreply@github.com>2022-09-07 15:28:30 +0300
commit3f6a75250d8251b0142248ed2f33f7d857ee21c8 (patch)
treef8fd7544a2fb509b295e6bd5267baab6014bc787 /exporting/check_filters.c
parent17e0676b5bb6b11ad9aec705ade05163dcc2de31 (diff)
Obsolete RRDSET state (#13635)
* move chart_labels to rrdset * rename chart_labels to rrdlabels * renamed hash_id to uuid * turned is_ar_chart into an rrdset flag * removed rrdset state * removed unused senders_connected member of rrdhost * removed unused host flag RRDHOST_FLAG_MULTIHOST * renamed rrdhost host_labels to rrdlabels * Update exporting unit tests Co-authored-by: Vladimir Kobal <vlad@prokk.net>
Diffstat (limited to 'exporting/check_filters.c')
-rw-r--r--exporting/check_filters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exporting/check_filters.c b/exporting/check_filters.c
index b07ec07b17..19614d3253 100644
--- a/exporting/check_filters.c
+++ b/exporting/check_filters.c
@@ -56,7 +56,7 @@ int rrdset_is_exportable(struct instance *instance, RRDSET *st)
#endif
// Do not export anomaly rates charts.
- if (st->state && st->state->is_ar_chart)
+ if (rrdset_is_ar_chart(st))
return 0;
if (st->exporting_flags == NULL)