summaryrefslogtreecommitdiffstats
path: root/exporting
diff options
context:
space:
mode:
authorvkalintiris <vasilis@netdata.cloud>2022-11-09 11:02:57 +0200
committerGitHub <noreply@github.com>2022-11-09 11:02:57 +0200
commit44a75ea996268466c38b596294677f3b80350103 (patch)
tree65cc6a32a03e38573232fd4523b913a9aaec9aec /exporting
parent9d80f78817916fcf163b081e750dc0b13e8a5a7e (diff)
Remove anomaly rates chart. (#13763)
Diffstat (limited to 'exporting')
-rw-r--r--exporting/check_filters.c4
-rw-r--r--exporting/prometheus/prometheus.c4
2 files changed, 0 insertions, 8 deletions
diff --git a/exporting/check_filters.c b/exporting/check_filters.c
index 19614d3253..009a010b34 100644
--- a/exporting/check_filters.c
+++ b/exporting/check_filters.c
@@ -55,10 +55,6 @@ int rrdset_is_exportable(struct instance *instance, RRDSET *st)
RRDHOST *host = st->rrdhost;
#endif
- // Do not export anomaly rates charts.
- if (rrdset_is_ar_chart(st))
- return 0;
-
if (st->exporting_flags == NULL)
st->exporting_flags = callocz(instance->engine->instance_num, sizeof(size_t));
diff --git a/exporting/prometheus/prometheus.c b/exporting/prometheus/prometheus.c
index 5719db4187..294d8ec2c9 100644
--- a/exporting/prometheus/prometheus.c
+++ b/exporting/prometheus/prometheus.c
@@ -28,10 +28,6 @@ inline int can_send_rrdset(struct instance *instance, RRDSET *st, SIMPLE_PATTERN
RRDHOST *host = st->rrdhost;
#endif
- // Do not send anomaly rates charts.
- if (rrdset_is_ar_chart(st))
- return 0;
-
if (unlikely(rrdset_flag_check(st, RRDSET_FLAG_EXPORTING_IGNORE)))
return 0;