mirror of
https://github.com/falcosecurity/falco.git
synced 2025-07-20 01:19:36 +00:00
cleanup(configs): move runtime generated configs to section w/ clear comments
Co-authored-by: Samuel Gaist <samuel.gaist@idiap.ch> Signed-off-by: Melissa Kilby <melissa.kilby.oss@gmail.com>
This commit is contained in:
parent
309ccf65d3
commit
c4dcf9e4e8
@ -161,7 +161,6 @@ public:
|
|||||||
|
|
||||||
bool m_watch_config_files;
|
bool m_watch_config_files;
|
||||||
bool m_buffered_outputs;
|
bool m_buffered_outputs;
|
||||||
int64_t m_falco_reload_ts;
|
|
||||||
size_t m_outputs_queue_capacity;
|
size_t m_outputs_queue_capacity;
|
||||||
bool m_time_format_iso_8601;
|
bool m_time_format_iso_8601;
|
||||||
bool m_buffer_format_base64;
|
bool m_buffer_format_base64;
|
||||||
@ -215,7 +214,15 @@ public:
|
|||||||
gvisor_config m_gvisor = {};
|
gvisor_config m_gvisor = {};
|
||||||
|
|
||||||
yaml_helper m_config;
|
yaml_helper m_config;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Runtime-Generated values (not user-configurable)
|
||||||
|
//
|
||||||
|
|
||||||
|
// JSON schema generated from a hardcoded string
|
||||||
nlohmann::json m_config_schema;
|
nlohmann::json m_config_schema;
|
||||||
|
// Timestamp of most recent configuration reload
|
||||||
|
int64_t m_falco_reload_ts;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void merge_config_files(const std::string& config_name, config_loaded_res& res);
|
void merge_config_files(const std::string& config_name, config_loaded_res& res);
|
||||||
|
Loading…
Reference in New Issue
Block a user