summaryrefslogtreecommitdiff
path: root/data/templates/sflow/hsflowd.conf.j2
blob: 5000956bda2ec4bb10d1af87b946e280185b8b19 (plain)
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
# Genereated by /usr/libexec/vyos/conf_mode/system_sflow.py
# Parameters http://sflow.net/host-sflow-linux-config.php

sflow {
{% if polling is vyos_defined %}
  polling={{ polling }}
{% endif %}
{% if sampling_rate is vyos_defined %}
  sampling={{ sampling_rate }}
  sampling.bps_ratio=0
{% endif %}
{% if agent_address is vyos_defined %}
  agentIP={{ agent_address }}
{% endif %}
{% if agent_interface is vyos_defined %}
  agent={{ agent_interface }}
{% endif %}
{% if server is vyos_defined %}
{%     for server, server_config in server.items() %}
  collector { ip = {{ server }} udpport = {{ server_config.port }} }
{%     endfor %}
{% endif %}
{% if interface is vyos_defined %}
{%     for iface in interface %}
  pcap { dev={{ iface }} }
{%     endfor %}
{% endif %}
{% if drop_monitor_limit is vyos_defined %}
  dropmon { limit={{ drop_monitor_limit }} start=on sw=on hw=off }
{% endif %}
  dbus { }
}