@Butterfly Bones, in looking at your graphs, I decided not to send pixelserv-tls logs to loggly. I keep track of them separately, and they distort the graphs in loggly. Same for skynet.
So I created filters for the 0loggly file:
And added it to the log statement:
The free tier in loggly has a size limit, and that might help there, too.
So I created filters for the 0loggly file:
Code:
filter f_loggly1{ not program("pixelserv-tls"); };
filter f_loggly2{ not program("Skynet"); };
Code:
log {
source(src);
filter(f_loggly1);
filter(f_loggly2);
destination(d_loggly);
};
Last edited: