Your IP : 216.73.216.169


Current Path : /usr/share/syslog-ng/include/scl/graphite/
Upload File :
Current File : //usr/share/syslog-ng/include/scl/graphite/README

An example graphite() destination config can be found below:

@version: 3.28
@include "scl.conf"

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

destination d_graphite {
	graphite(
		payload("--key monitor.*")
        );
};

log {
    source(s_all);
    destination(d_graphite);
    flags(flow-control);
};