blob: 225c161c62b974bf73dd1fb06fc215fcb1d40954 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
##############################################################################
# Global #
##############################################################################
FQDNLookup true
#Interval 10
# Limit the size of the write queue. Default is no limit. Setting up a limit
# is recommended for servers handling a high volume of traffic.
#WriteQueueLimitHigh 1000000
#WriteQueueLimitLow 800000
##############################################################################
# Logging #
##############################################################################
LoadPlugin logfile
<Plugin logfile>
LogLevel "info"
File STDOUT
Timestamp true
PrintSeverity true
</Plugin>
##############################################################################
# LoadPlugin section #
##############################################################################
LoadPlugin write_log
<LoadPlugin hicn_light>
Globals true # Required to find libhicnctrl symbols
Interval 5
</LoadPlugin>
<LoadPlugin write_kafka_line_protocol>
Interval 10
</LoadPlugin>
##############################################################################
# Plugin configuration #
##############################################################################
<Plugin write_kafka_line_protocol>
Property "bootstrap.servers" "localhost:8081"
Property "security.protocol" "sasl_plaintext"
Property "sasl.mechanism" "SCRAM-SHA-256"
Property "sasl.username" "eloparco"
Property "sasl.password" "password"
<Topic "stream">
Format InfluxDB
</Topic>
# <Topic "metadata">
# Format hicnJSON
# </Topic>
</Plugin>
|