mirror of
https://github.com/falcosecurity/falco.git
synced 2026-04-05 03:22:41 +00:00
update(metrics): use new libs addr_to_string methods for host_ifinfo_json
Signed-off-by: Melissa Kilby <melissa.kilby.oss@gmail.com>
This commit is contained in:
@@ -257,38 +257,6 @@ bool is_unix_scheme(const std::string& url)
|
||||
{
|
||||
return sinsp_utils::startswith(url, UNIX_SCHEME);
|
||||
}
|
||||
|
||||
#if defined(__linux__) and !defined(MINIMAL_BUILD) and !defined(__EMSCRIPTEN__)
|
||||
std::string ipv4addr_to_string(uint32_t addr)
|
||||
{
|
||||
char dest[16];
|
||||
snprintf(
|
||||
dest,
|
||||
sizeof(dest),
|
||||
"%d.%d.%d.%d",
|
||||
(addr & 0xFF),
|
||||
((addr & 0xFF00) >> 8),
|
||||
((addr & 0xFF0000) >> 16),
|
||||
((addr & 0xFF000000) >> 24));
|
||||
return std::string(dest);
|
||||
}
|
||||
|
||||
std::string ipv6addr_to_string(const ipv6addr& addr)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
const uint16_t* words = reinterpret_cast<const uint16_t*>(addr.m_b);
|
||||
for (int i = 0; i < 8; ++i)
|
||||
{
|
||||
if (i != 0)
|
||||
{
|
||||
oss << ':';
|
||||
}
|
||||
oss << std::hex << ntohs(words[i]);
|
||||
}
|
||||
return oss.str();
|
||||
}
|
||||
#endif
|
||||
|
||||
} // namespace network
|
||||
} // namespace utils
|
||||
} // namespace falco
|
||||
|
||||
@@ -22,10 +22,6 @@ limitations under the License.
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#if defined(__linux__) and !defined(MINIMAL_BUILD) and !defined(__EMSCRIPTEN__)
|
||||
#include <arpa/inet.h>
|
||||
#include <libsinsp/tuples.h>
|
||||
#endif
|
||||
|
||||
namespace falco::utils
|
||||
{
|
||||
@@ -49,11 +45,5 @@ namespace network
|
||||
{
|
||||
static const std::string UNIX_SCHEME("unix://");
|
||||
bool is_unix_scheme(const std::string& url);
|
||||
#if defined(__linux__) and !defined(MINIMAL_BUILD) and !defined(__EMSCRIPTEN__)
|
||||
// todo: consider extending libs and expose API for ipv4 and ipv6 to string conversion
|
||||
std::string ipv4addr_to_string(uint32_t addr);
|
||||
std::string ipv6addr_to_string(const ipv6addr& addr);
|
||||
#endif
|
||||
|
||||
} // namespace network
|
||||
} // namespace falco::utils
|
||||
|
||||
@@ -109,44 +109,39 @@ std::string falco_metrics::to_text(const falco::app::state& state)
|
||||
prometheus_text += prometheus_metrics_converter.convert_metric_to_text_prometheus("falco_sha256_config_files", "falcosecurity", "falco", {{"file_name", fs_path.filename().stem()}, {"sha256", item.second}});
|
||||
}
|
||||
|
||||
static bool is_first_call = true;
|
||||
static std::string ifinfo_json_escaped;
|
||||
if (is_first_call)
|
||||
auto ipv4list = inspector->get_ifaddr_list().get_ipv4_list();
|
||||
auto ipv6list = inspector->get_ifaddr_list().get_ipv6_list();
|
||||
nlohmann::json ipv4_json;
|
||||
nlohmann::json ipv6_json;
|
||||
if(ipv4list)
|
||||
{
|
||||
is_first_call = false;
|
||||
auto ipv4list = inspector->get_ifaddr_list().get_ipv4_list();
|
||||
auto ipv6list = inspector->get_ifaddr_list().get_ipv6_list();
|
||||
nlohmann::json ipv4_json;
|
||||
nlohmann::json ipv6_json;
|
||||
if(ipv4list)
|
||||
for (const auto& item : *ipv4list)
|
||||
{
|
||||
for (const auto& item : *ipv4list)
|
||||
if(item.m_name == "lo")
|
||||
{
|
||||
if(item.m_name == "lo")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
ipv4_json[item.m_name] = falco::utils::network::ipv4addr_to_string(item.m_addr);
|
||||
continue;
|
||||
}
|
||||
ipv4_json[item.m_name] = item.addr_to_string();
|
||||
}
|
||||
|
||||
if(ipv6list)
|
||||
{
|
||||
for (const auto& item : *ipv6list)
|
||||
{
|
||||
if(item.m_name == "lo")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
ipv6_json[item.m_name] = falco::utils::network::ipv6addr_to_string(item.m_net);
|
||||
}
|
||||
}
|
||||
nlohmann::json ifinfo_json;
|
||||
ifinfo_json["ipv4"] = ipv4_json;
|
||||
ifinfo_json["ipv6"] = ipv6_json;
|
||||
ifinfo_json_escaped = ifinfo_json.dump();
|
||||
}
|
||||
prometheus_text += prometheus_metrics_converter.convert_metric_to_text_prometheus("host_ifinfo", "falcosecurity", "falco", {{"host_ifinfo", ifinfo_json_escaped}});
|
||||
|
||||
if(ipv6list)
|
||||
{
|
||||
for (const auto& item : *ipv6list)
|
||||
{
|
||||
if(item.m_name == "lo")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
ipv6_json[item.m_name] = item.addr_to_string();
|
||||
}
|
||||
}
|
||||
nlohmann::json ifinfo_json;
|
||||
ifinfo_json["ipv4"] = ipv4_json;
|
||||
ifinfo_json["ipv6"] = ipv6_json;
|
||||
ifinfo_json_escaped = ifinfo_json.dump();
|
||||
prometheus_text += prometheus_metrics_converter.convert_metric_to_text_prometheus("host_ifinfo_json", "falcosecurity", "falco", {{"host_ifinfo_json", ifinfo_json_escaped}});
|
||||
#endif
|
||||
|
||||
for (const std::string& source: inspector->event_sources())
|
||||
|
||||
@@ -358,11 +358,8 @@ void stats_writer::collector::get_metrics_output_fields_wrapper(
|
||||
output_fields[metric_name_file_sha256] = item.second;
|
||||
}
|
||||
|
||||
static bool is_first_call = true;
|
||||
static std::string ifinfo_json_escaped;
|
||||
if (is_first_call)
|
||||
if (stats_snapshot_time_delta_sec == 0)
|
||||
{
|
||||
is_first_call = false;
|
||||
auto ipv4list = inspector->get_ifaddr_list().get_ipv4_list();
|
||||
auto ipv6list = inspector->get_ifaddr_list().get_ipv6_list();
|
||||
nlohmann::json ipv4_json;
|
||||
@@ -375,7 +372,7 @@ void stats_writer::collector::get_metrics_output_fields_wrapper(
|
||||
{
|
||||
continue;
|
||||
}
|
||||
ipv4_json[item.m_name] = falco::utils::network::ipv4addr_to_string(item.m_addr);
|
||||
ipv4_json[item.m_name] = item.addr_to_string();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -387,15 +384,15 @@ void stats_writer::collector::get_metrics_output_fields_wrapper(
|
||||
{
|
||||
continue;
|
||||
}
|
||||
ipv6_json[item.m_name] = falco::utils::network::ipv6addr_to_string(item.m_net);
|
||||
ipv6_json[item.m_name] = item.addr_to_string();
|
||||
}
|
||||
}
|
||||
nlohmann::json ifinfo_json;
|
||||
ifinfo_json["ipv4"] = ipv4_json;
|
||||
ifinfo_json["ipv6"] = ipv6_json;
|
||||
ifinfo_json_escaped = ifinfo_json.dump();
|
||||
m_ifinfo_json_escaped = ifinfo_json.dump();
|
||||
}
|
||||
output_fields["falco.host_ifinfo"] = ifinfo_json_escaped;
|
||||
output_fields["falco.host_ifinfo_json"] = m_ifinfo_json_escaped;
|
||||
|
||||
#endif
|
||||
output_fields["evt.source"] = src;
|
||||
|
||||
@@ -80,6 +80,7 @@ public:
|
||||
uint64_t m_last_n_evts = 0;
|
||||
uint64_t m_last_n_drops = 0;
|
||||
uint64_t m_last_num_evts = 0;
|
||||
std::string m_ifinfo_json_escaped;
|
||||
};
|
||||
|
||||
stats_writer(const stats_writer&) = delete;
|
||||
|
||||
Reference in New Issue
Block a user