refactor(userspace/falco): rename stats writer source files

Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
This commit is contained in:
Jason Dellaluce 2022-07-01 10:30:19 +00:00 committed by poiana
parent 2f5461bed0
commit 28ff6ad3bd
5 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ set(
outputs_stdout.cpp outputs_stdout.cpp
outputs_syslog.cpp outputs_syslog.cpp
event_drops.cpp event_drops.cpp
statsfilewriter.cpp stats_writer.cpp
falco.cpp falco.cpp
) )

View File

@ -26,7 +26,7 @@ limitations under the License.
#ifndef MINIMAL_BUILD #ifndef MINIMAL_BUILD
#include "webserver.h" #include "webserver.h"
#endif #endif
#include "statsfilewriter.h" #include "stats_writer.h"
#include "application.h" #include "application.h"
#include "falco_outputs.h" #include "falco_outputs.h"
#include "token_bucket.h" #include "token_bucket.h"

View File

@ -17,7 +17,7 @@ limitations under the License.
#pragma once #pragma once
#include "configuration.h" #include "configuration.h"
#include "statsfilewriter.h" #include "stats_writer.h"
#ifndef MINIMAL_BUILD #ifndef MINIMAL_BUILD
#include "grpc_server.h" #include "grpc_server.h"
#include "webserver.h" #include "webserver.h"

View File

@ -19,7 +19,7 @@ limitations under the License.
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
#include <atomic> #include <atomic>
#include "statsfilewriter.h" #include "stats_writer.h"
#include "logger.h" #include "logger.h"
#include "banned.h" // This raises a compilation error when certain functions are used #include "banned.h" // This raises a compilation error when certain functions are used
#include "logger.h" #include "logger.h"