summaryrefslogtreecommitdiffstats
path: root/src/daemon/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/main.c')
-rw-r--r--src/daemon/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/daemon/main.c b/src/daemon/main.c
index de22a90f43..e7c69d3927 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -1172,6 +1172,9 @@ static void get_netdata_configured_variables() {
const char *page_type = config_get(CONFIG_SECTION_DB, "dbengine page type", "raw");
if (strcmp(page_type, "gorilla") == 0) {
tier_page_type[0] = PAGE_GORILLA_METRICS;
+ }
+ else if (strcmp(page_type, "constant") == 0) {
+ tier_page_type[0] = PAGE_CONSTANT_METRICS;
} else if (strcmp(page_type, "raw") != 0) {
netdata_log_error("Invalid dbengine page type ''%s' given. Defaulting to 'raw'.", page_type);
}