Syslog not showing

Hi everyone,
im trying to set the syslog server on the librenms server but i cant make it work.
the syslog-ng getting the messages as it should, i set up another destination path to file in order to see the incoming messages with the template.
example of the message:
192.168.190.172||user||notice||notice||0d||2019-11-25 13:44:24||- pid=20034 user=root folder=/Common module=(tmos)# status=[Command OK] cmd_data=save / sys config partitions all||AUDIT
the host is 192.168.190.172 and this is the same as configured under devices.


i have added the following line to config.php
$config['enable_syslog'] = 1;
i have no SElinux on my server.
as you can see, no syslog tab under logs only eventlog:
45
my syslog-ng config file is the same as the documentation:

@version:3.5
@include "scl.conf"

# syslog-ng configuration file.
#
# This should behave pretty much like the original syslog on RedHat. But
# it could be configured a lot smarter.
#
# See syslog-ng(8) and syslog-ng.conf(5) for more information.
#
# Note: it also sources additional configuration files (*.conf)
#       located in /etc/syslog-ng/conf.d/

options {
    chain_hostnames(off);
    flush_lines(0);
    use_dns(no);
    use_fqdn(no);
    owner("root");
    group("adm");
    perm(0640);
    stats_freq(0);
    bad_hostname("^gconfd$");
};

source s_sys {
system();
internal();
};

source s_net {
    tcp(port(514) flags(syslog-protocol));
    udp(port(514) flags(syslog-protocol));
};

########################
# Destinations
########################
destination d_librenms {
    program("/opt/librenms/syslog.php" template ("$HOST||$FACILITY||$PRIORITY||$LEVEL||$TAG||$R_YEAR-$R_MONTH-$R_DAY $R_HOUR:$R_MIN:$R_SEC||$MSG||$PROGRAM\n") template-escape(yes));
};

filter f_kernel     { facility(kern); };
filter f_default    { level(info..emerg) and
                    not (facility(mail)
                    or facility(authpriv)
                    or facility(cron)); };
filter f_auth       { facility(authpriv); };
filter f_mail       { facility(mail); };
filter f_emergency  { level(emerg); };
filter f_news       { facility(uucp) or
                    (facility(news)
                    and level(crit..emerg)); };
filter f_boot   { facility(local7); };
filter f_cron   { facility(cron); };

########################
# Log paths
########################
log {
    source(s_net);
    source(s_sys);
    destination(d_librenms);
};

# Source additional configuration files (.conf extension only)
@include "/etc/syslog-ng/conf.d/*.conf"


# vim:ft=syslog-ng:ai:si:ts=4:sw=4:et:

how can i check why ibrenms is not importing the logs to the device?