1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
Copyright (C) 2021 The Falco Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
////////////////////////////////////////////////////////////////////////////
// Public definitions for the scap library
////////////////////////////////////////////////////////////////////////////
#include "sinsp.h"
#include "sinsp_int.h"
#ifdef GATHER_INTERNAL_STATS
void sinsp_stats::clear()
{
m_n_seen_evts = 0;
m_n_drops = 0;
m_n_preemptions = 0;
m_n_noncached_fd_lookups = 0;
m_n_cached_fd_lookups = 0;
m_n_failed_fd_lookups = 0;
m_n_threads = 0;
m_n_fds = 0;
m_n_added_fds = 0;
m_n_removed_fds = 0;
m_n_stored_evts = 0;
m_n_store_drops = 0;
m_n_retrieved_evts = 0;
m_n_retrieve_drops = 0;
m_metrics_registry.clear_all_metrics();
}
void sinsp_stats::emit(FILE* f)
{
m_output_target = f;
fprintf(f, "evts seen by driver: %" PRIu64 "\n", m_n_seen_evts);
fprintf(f, "drops: %" PRIu64 "\n", m_n_drops);
fprintf(f, "preemptions: %" PRIu64 "\n", m_n_preemptions);
fprintf(f, "fd lookups: %" PRIu64 "(%" PRIu64 " cached %" PRIu64 " noncached)\n",
m_n_noncached_fd_lookups + m_n_cached_fd_lookups,
m_n_cached_fd_lookups,
m_n_noncached_fd_lookups);
fprintf(f, "failed fd lookups: %" PRIu64 "\n", m_n_failed_fd_lookups);
fprintf(f, "n. threads: %" PRIu64 "\n", m_n_threads);
fprintf(f, "n. fds: %" PRIu64 "\n", m_n_fds);
fprintf(f, "added fds: %" PRIu64 "\n", m_n_added_fds);
fprintf(f, "removed fds: %" PRIu64 "\n", m_n_removed_fds);
fprintf(f, "stored evts: %" PRIu64 "\n", m_n_stored_evts);
fprintf(f, "store drops: %" PRIu64 "\n", m_n_store_drops);
fprintf(f, "retrieved evts: %" PRIu64 "\n", m_n_retrieved_evts);
fprintf(f, "retrieve drops: %" PRIu64 "\n", m_n_retrieve_drops);
for(internal_metrics::registry::metric_map_iterator_t it = m_metrics_registry.get_metrics().begin(); it != m_metrics_registry.get_metrics().end(); it++)
{
fprintf(f, "%s: ", it->first.get_description().c_str());
it->second->process(*this);
}
}
void sinsp_stats::process(internal_metrics::counter& metric)
{
fprintf(m_output_target, "%" PRIu64 "\n", metric.get_value());
}
#endif // GATHER_INTERNAL_STATS
|