lux4rd0 / grafana-loki-syslog-aio

Grafana Loki Syslog All In One Syslog Deployable Stack
https://labs.lux4rd0.com/2021/01/oldskool-syslog-meets-newskool-loki/
GNU Affero General Public License v3.0
174 stars 53 forks source link

no incoming data #15

Closed bbaileyga1 closed 1 year ago

bbaileyga1 commented 1 year ago

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