summaryrefslogtreecommitdiffstats
path: root/collectors
diff options
context:
space:
mode:
authorvkalintiris <vasilis@netdata.cloud>2024-01-11 19:38:01 +0200
committerGitHub <noreply@github.com>2024-01-11 19:38:01 +0200
commit2165279a87314fb74e8c4de735231a78de73aa54 (patch)
treef8f7c5b55179ca536f1a84a29da9a5cd0860a3a1 /collectors
parent9d0f8a9034ea26b1f6a83b5e3347964486ddb7f1 (diff)
Delete memory mode "map" and "save". (#16604)
* Delete memory modes "map" and "save". * Remove unmaintained exporting tests * Remove references of map/save modes in docs. * Remove more references to map/save from docs.
Diffstat (limited to 'collectors')
-rw-r--r--collectors/plugins.d/pluginsd_parser.c2
-rw-r--r--collectors/plugins.d/pluginsd_replication.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/collectors/plugins.d/pluginsd_parser.c b/collectors/plugins.d/pluginsd_parser.c
index 1ec173b1d4..c7ecd2b765 100644
--- a/collectors/plugins.d/pluginsd_parser.c
+++ b/collectors/plugins.d/pluginsd_parser.c
@@ -856,7 +856,7 @@ static inline PARSER_RC pluginsd_begin_v2(char **words, size_t num_words, PARSER
st->counter++;
st->counter_done++;
- // these are only needed for db mode RAM, SAVE, MAP, ALLOC
+ // these are only needed for db mode RAM, ALLOC
st->db.current_entry++;
if(st->db.current_entry >= st->db.entries)
st->db.current_entry -= st->db.entries;
diff --git a/collectors/plugins.d/pluginsd_replication.c b/collectors/plugins.d/pluginsd_replication.c
index 8b58a286d4..8d09752109 100644
--- a/collectors/plugins.d/pluginsd_replication.c
+++ b/collectors/plugins.d/pluginsd_replication.c
@@ -71,7 +71,7 @@ PARSER_RC pluginsd_replay_begin(char **words, size_t num_words, PARSER *parser)
st->counter++;
st->counter_done++;
- // these are only needed for db mode RAM, SAVE, MAP, ALLOC
+ // these are only needed for db mode RAM, ALLOC
st->db.current_entry++;
if(st->db.current_entry >= st->db.entries)
st->db.current_entry -= st->db.entries;