Skip to content

Commit

Permalink
fixed exclusion list
Browse files Browse the repository at this point in the history
  • Loading branch information
hariharan-devarajan committed Jan 25, 2024
1 parent 418454f commit a6a5851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dlio_profiler/core/dlio_profiler_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ dlio_profiler::DLIOProfilerCore::initialize(bool _bind, const char *_log_file, c
if (conf->io) {
auto trie = dlio_profiler::Singleton<Trie>::get_instance();
const char* ignore_extensions[2] = {"pfw", "py"};
const char* ignore_prefix[7] = {"/pipe", "/socket", "/proc",
const char* ignore_prefix[8] = {"/pipe", "/socket", "/proc",
"/sys", "/collab",
"anon_inode", "socket"};
"anon_inode", "socket", "/var/tmp"};
for(const char* folder: ignore_prefix) {
trie->exclude(folder, strlen(folder));
}
Expand Down

0 comments on commit a6a5851

Please sign in to comment.