diff --git a/userspace/falco/CMakeLists.txt b/userspace/falco/CMakeLists.txt index 667a79f1..44c3190c 100644 --- a/userspace/falco/CMakeLists.txt +++ b/userspace/falco/CMakeLists.txt @@ -49,7 +49,7 @@ set( outputs_stdout.cpp outputs_syslog.cpp event_drops.cpp - statsfilewriter.cpp + stats_writer.cpp falco.cpp ) diff --git a/userspace/falco/app_actions/process_events.cpp b/userspace/falco/app_actions/process_events.cpp index e63dc194..17951152 100644 --- a/userspace/falco/app_actions/process_events.cpp +++ b/userspace/falco/app_actions/process_events.cpp @@ -26,7 +26,7 @@ limitations under the License. #ifndef MINIMAL_BUILD #include "webserver.h" #endif -#include "statsfilewriter.h" +#include "stats_writer.h" #include "application.h" #include "falco_outputs.h" #include "token_bucket.h" diff --git a/userspace/falco/application.h b/userspace/falco/application.h index 6753691d..22bd0fcf 100644 --- a/userspace/falco/application.h +++ b/userspace/falco/application.h @@ -17,7 +17,7 @@ limitations under the License. #pragma once #include "configuration.h" -#include "statsfilewriter.h" +#include "stats_writer.h" #ifndef MINIMAL_BUILD #include "grpc_server.h" #include "webserver.h" diff --git a/userspace/falco/statsfilewriter.cpp b/userspace/falco/stats_writer.cpp similarity index 99% rename from userspace/falco/statsfilewriter.cpp rename to userspace/falco/stats_writer.cpp index 7da3a810..bfaf24b9 100644 --- a/userspace/falco/statsfilewriter.cpp +++ b/userspace/falco/stats_writer.cpp @@ -19,7 +19,7 @@ limitations under the License. #include #include -#include "statsfilewriter.h" +#include "stats_writer.h" #include "logger.h" #include "banned.h" // This raises a compilation error when certain functions are used #include "logger.h" diff --git a/userspace/falco/statsfilewriter.h b/userspace/falco/stats_writer.h similarity index 100% rename from userspace/falco/statsfilewriter.h rename to userspace/falco/stats_writer.h