summaryrefslogtreecommitdiffstats
path: root/exporting
diff options
context:
space:
mode:
authorAndrew Moss <1043609+amoss@users.noreply.github.com>2019-12-16 15:12:00 +0100
committerGitHub <noreply@github.com>2019-12-16 15:12:00 +0100
commitc8c72f18a6a8fd09d3b6284e49525396b24e8395 (patch)
tree5b9aeaea7d72e1d1029d45f67c0a5f130ecc2f80 /exporting
parentc4bb3d2642ab34e6aca912b22e55aed52f84e974 (diff)
Labels issues (#7515)
Initial work on host labels from the dedicated branch. Includes work for issues #7096, #7400, #7411, #7369, #7410, #7458, #7459, #7412 and #7408 by @vlvkobal, @thiagoftsm, @cakrit and @amoss.
Diffstat (limited to 'exporting')
-rw-r--r--exporting/read_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/exporting/read_config.c b/exporting/read_config.c
index d631cd6829..7577f5bca3 100644
--- a/exporting/read_config.c
+++ b/exporting/read_config.c
@@ -205,13 +205,13 @@ struct engine *read_exporting_config()
char *filename = strdupz_path_subpath(netdata_configured_user_config_dir, EXPORTING_CONF);
- exporting_config_exists = appconfig_load(&exporting_config, filename, 0);
+ exporting_config_exists = appconfig_load(&exporting_config, filename, 0, NULL);
if (!exporting_config_exists) {
info("CONFIG: cannot load user exporting config '%s'. Will try the stock version.", filename);
freez(filename);
filename = strdupz_path_subpath(netdata_configured_stock_config_dir, EXPORTING_CONF);
- exporting_config_exists = appconfig_load(&exporting_config, filename, 0);
+ exporting_config_exists = appconfig_load(&exporting_config, filename, 0, NULL);
if (!exporting_config_exists)
info("CONFIG: cannot load stock exporting config '%s'. Running with internal defaults.", filename);
}