aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2022-10-01 22:37:25 +0200
committerlns <matzeton@googlemail.com>2022-10-01 22:37:25 +0200
commit49ea4f847427846e668054704d6e997757805c0b (patch)
tree67e2026ee10f9a572d109ebed24fae7744238d83 /examples
parentb6060b897e629d3bf16a50842cd9da89ea172621 (diff)
Small fixes.
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/README.md1
-rw-r--r--examples/c-collectd/c-collectd.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/README.md b/examples/README.md
index 15f5698ca..17c451087 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -12,7 +12,6 @@ It generates CSV files from flow "analyse" events.
A capture daemon suitable for low-resource devices.
It saves flows that were guessed/undetected/risky/midstream to a PCAP file for manual analysis.
-Basicially a combination of `py-flow-undetected-to-pcap` and `py-risky-flow-to-pcap`.
## c-collectd
diff --git a/examples/c-collectd/c-collectd.c b/examples/c-collectd/c-collectd.c
index 95ae24a76..60d1830a9 100644
--- a/examples/c-collectd/c-collectd.c
+++ b/examples/c-collectd/c-collectd.c
@@ -372,13 +372,14 @@ static void print_collectd_exec_output(void)
printf(COLLECTD_PUTVAL_N_FORMAT() COLLECTD_PUTVAL_N_FORMAT() COLLECTD_PUTVAL_N_FORMAT() COLLECTD_PUTVAL_N_FORMAT()
COLLECTD_PUTVAL_N_FORMAT() COLLECTD_PUTVAL_N_FORMAT() COLLECTD_PUTVAL_N_FORMAT()
- COLLECTD_PUTVAL_N_FORMAT(),
+ COLLECTD_PUTVAL_N_FORMAT() COLLECTD_PUTVAL_N_FORMAT(),
COLLECTD_PUTVAL_N(flow_breed_safe_count),
COLLECTD_PUTVAL_N(flow_breed_acceptable_count),
COLLECTD_PUTVAL_N(flow_breed_fun_count),
COLLECTD_PUTVAL_N(flow_breed_unsafe_count),
COLLECTD_PUTVAL_N(flow_breed_potentially_dangerous_count),
+ COLLECTD_PUTVAL_N(flow_breed_tracker_ads_count),
COLLECTD_PUTVAL_N(flow_breed_dangerous_count),
COLLECTD_PUTVAL_N(flow_breed_unrated_count),
COLLECTD_PUTVAL_N(flow_breed_unknown_count));