First of thanks for taking the time to put this project together. I am sure I am missing something fairly obvious. I have a my device pointed to the IP of the VM where g-l-s-a is running and I am not seeing any data hitting being reflected in the dashboard.
my syslog-ng.conf file is as follows
axiom@ranch-a1:~/container/Grafana-Influxdb_2.x-Syslog-server/syslog$ cat syslog-ng.conf
@version: 3.35
@include "scl.conf"
#
First of thanks for taking the time to put this project together. I am sure I am missing something fairly obvious. I have a my device pointed to the IP of the VM where g-l-s-a is running and I am not seeing any data hitting being reflected in the dashboard. my syslog-ng.conf file is as follows axiom@ranch-a1:~/container/Grafana-Influxdb_2.x-Syslog-server/syslog$ cat syslog-ng.conf @version: 3.35 @include "scl.conf" #
/etc/syslog-ng/syslog-ng.conf
source s_sys { udp(ip(0.0.0.0) port(514)); }; destination telegraf_local { syslog("telegraf" port(6514)); };
filter f_default { level(info..emerg));
};
log { source(s_sys); filter(f_default); destination(telegraf_local); };
any pointers would be greatly appreciated