We've got data in Victoria Logs!

It was my syslog-ng config, which now has this bit appended to a stock config file:

destination d_victorialogs {
network("logs.int.unixathome.org" port(29514) transport("tcp"));
};

# Log path linking your sources to VictoriaLogs
log {
source(src); # Use your existing system source name here
destination(d_victorialogs);
};

Next step, get some nginx data in there.

However, because this changes the host from syslogd to syslog-ng, I'm not rushing.

I want to see if log rotation is completed correctly. I've seen some permissions issues and want to follow through on those changes first.