summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthiagoftsm <thiagoftsm@gmail.com>2022-03-14 14:29:11 +0000
committerGitHub <noreply@github.com>2022-03-14 16:29:11 +0200
commit3e20d9f9217a153affd0450c72543c19ba67bf18 (patch)
tree29057bee51025791a6791029dab2f746a3f7b04e
parentc367788fc027a2696ea712f85aebb5db9d158de8 (diff)
Remove unecessary error report for proc and sys files (#12385)
-rw-r--r--collectors/ebpf.plugin/ebpf_apps.c2
-rw-r--r--collectors/ebpf.plugin/ebpf_cgroup.c2
-rw-r--r--libnetdata/procfile/procfile.h3
3 files changed, 5 insertions, 2 deletions
diff --git a/collectors/ebpf.plugin/ebpf_apps.c b/collectors/ebpf.plugin/ebpf_apps.c
index 015d1bf213..abc1126422 100644
--- a/collectors/ebpf.plugin/ebpf_apps.c
+++ b/collectors/ebpf.plugin/ebpf_apps.c
@@ -275,7 +275,7 @@ int ebpf_read_apps_groups_conf(struct target **agdt, struct target **agrt, const
// ----------------------------------------
- procfile *ff = procfile_open(filename, " :\t", PROCFILE_FLAG_DEFAULT);
+ procfile *ff = procfile_open_no_log(filename, " :\t", PROCFILE_FLAG_DEFAULT);
if (!ff)
return -1;
diff --git a/collectors/ebpf.plugin/ebpf_cgroup.c b/collectors/ebpf.plugin/ebpf_cgroup.c
index ecdc46c0b0..e6b483bafa 100644
--- a/collectors/ebpf.plugin/ebpf_cgroup.c
+++ b/collectors/ebpf.plugin/ebpf_cgroup.c
@@ -242,7 +242,7 @@ static ebpf_cgroup_target_t * ebpf_cgroup_find_or_create(netdata_ebpf_cgroup_shm
*/
static void ebpf_update_pid_link_list(ebpf_cgroup_target_t *ect, char *path)
{
- procfile *ff = procfile_open(path, " \t:", PROCFILE_FLAG_DEFAULT);
+ procfile *ff = procfile_open_no_log(path, " \t:", PROCFILE_FLAG_DEFAULT);
if (!ff)
return;
diff --git a/libnetdata/procfile/procfile.h b/libnetdata/procfile/procfile.h
index d29adf8e6a..5263ad770c 100644
--- a/libnetdata/procfile/procfile.h
+++ b/libnetdata/procfile/procfile.h
@@ -103,4 +103,7 @@ extern int procfile_adaptive_initial_allocation;
// return the Nth word of the current line
#define procfile_lineword(ff, line, word) (((line) < procfile_lines(ff) && (word) < procfile_linewords((ff), (line))) ? procfile_word((ff), (ff)->lines->lines[(line)].first + (word)) : "")
+// Open file without logging file IO error if any
+#define procfile_open_no_log(filename, separators, flags) procfile_open(filename, separators, flags | PROCFILE_FLAG_NO_ERROR_ON_FILE_IO)
+
#endif /* NETDATA_PROCFILE_H */