Re: Local sources seem not to be working
Alexandre Santos <[email protected]>
| Newsgroups | gmane.comp.syslog-ng |
|---|---|
| Message-ID | <CO6PR10MB560222EDA050457F07DC61FED0F49@CO6PR10MB5602.namprd10.prod.outlook.com> |
Hi Gabor, The problem was reproduced again. I was able to get the stats in the error situation: 54146.stats.error.txt I also took the stats after reloading the configuration (which fixes the problem): 54146.stats.after.txt Regarding your question: Just a random question: is /tmp a tmpfs filesystem? Yes it is. Let me know what you found out. Thanks and regards, Alex From: Gabor Nagy (gnagy) <[email protected]> Sent: 31 de março de 2022 11:14 To: Alexandre Santos <[email protected]>; Syslog-ng users' and developers' mailing list <[email protected]> Subject: Re: Local sources seem not to be working Thanks for the config! I'll continue experimenting on my ideas You could either configure syslog-ng-ctl stats to talk to a given syslog-ng instance with the --control option pointing to the control-socket e.g. as above /var/lib/syslog-ng/mgmt-syslog-ng.ctl, OR use the syslog-ng-ctl instance under the 2nd syslog-ng installation path. Just a random question: is /tmp a tmpfs filesystem? Gabor ________________________________ From: Alexandre Santos <[email protected]<mailto:[email protected]>> Sent: Wednesday, March 30, 2022 17:07 To: Gabor Nagy (gnagy) <[email protected]<mailto:[email protected]>>; Syslog-ng users' and developers' mailing list <[email protected]<mailto:[email protected]>> Subject: RE: Local sources seem not to be working CAUTION: This email originated from outside of the organization. Do not follow guidance, click links, or open attachments unless you recognize the sender and know the content is safe. Hi Gabor, Thank you for you feedback. Can you share the config, when the issue cannot be seen? I am sending the configuration in attachment. I would still like to see 2 "syslog-ng-ctl stats" outputs when the issue happens. The issue is hard to reproduce, the next time the error is seen, I try to run it. But how can I run syslog-ng-ctl stats for the 2nd syslog-ng instance? root@machine:/~# ps -ewfH | grep syslog-ng root 2582 1 0 09:06 ? 00:00:34 /usr/sbin/syslog-ng -F --caps cap_net_bind_service,cap_net_broadcast,cap_net_raw,cap_dac_read_search,cap_chown,cap_fowner=p cap_dac_override,cap_syslog=ep root 4018 1 0 09:07 ? 00:00:00 /usr/sbin/syslog-ng -F --cfgfile=/etc/syslog-ng/mgmt-syslog-ng.conf --pidfile=/var/lib/syslog-ng/mgmt-syslog-ng.pid --persist-file=/var/lib/syslog-ng/mgmt-syslog-ng.persist --control=/var/lib/syslog-ng/mgmt-syslog-ng.ctl syslog-ng-ctl, seems to only show stats for job 2582. Regards, Alex From: Gabor Nagy (gnagy) <[email protected]<mailto:[email protected]>> Sent: 29 de março de 2022 12:48 To: Alexandre Santos <[email protected]<mailto:[email protected]>>; Syslog-ng users' and developers' mailing list <[email protected]<mailto:[email protected]>> Subject: Re: Local sources seem not to be working Hi Alex, Using regular disk-buffer vs. using reliable disk-buffer shouldn't cause symptoms like that. It sounds like reliable(yes) would turn on a flow-control-like behaviour, which it doesn't. (And as you said it only affects local sources). The main difference between the two kinds of disk-buffers is, that while reliable disk-buffer write every message to the disk-buffer, a normal disk-buffer has memory-only buffers for performance reasons (and flow-control reasons too). You can still lose logs with a reliable disk-buffer if no flow-control is used: when the disk-buffer has reached it's maximum size and new messages keep arriving, then syslog-ng drops those messages. We have more detailed documentation about disk-buffers in the admin guide, where you can see the structure of disk-buffers: https://www.syslog-ng.com/technical-documents/doc/syslog-ng-open-source-edition/3.36/administration-guide/61#TOPIC-1768724<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.syslog-ng.com%2Ftechnical-documents%2Fdoc%2Fsyslog-ng-open-source-edition%2F3.36%2Fadministration-guide%2F61%23TOPIC-1768724&data=04%7C01%7CASantos%40infinera.com%7Ca2a160c601fd486c362b08da12ff3fae%7C285643de5f5b4b03a1530ae2dc8aaf77%7C1%7C0%7C637843184746371785%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=SMSL5ZoOMh1Kmw%2B35UUSFGuyNOJVB6NQQstm37ANkoI%3D&reserved=0> Can you share the config, when the issue cannot be seen? I would still like to see 2 "syslog-ng-ctl stats" outputs when the issue happens. Regards, Gabor ________________________________ From: Alexandre Santos <[email protected]<mailto:[email protected]>> Sent: Monday, March 28, 2022 13:45 To: Gabor Nagy (gnagy) <[email protected]<mailto:[email protected]>>; Syslog-ng users' and developers' mailing list <[email protected]<mailto:[email protected]>> Subject: RE: Local sources seem not to be working CAUTION: This email originated from outside of the organization. Do not follow guidance, click links, or open attachments unless you recognize the sender and know the content is safe. Hi Gabor, "This is strange: the d_localfile destinations (as well as the vrf-socket destination "d_mgmt_vrf_socket") receive messages from the syslog() source, but not from the internal() or system() sources?" Yes. And the issue vanishes when "d_mgmt_vrf_socket" destination is removed? Yes. I could not test the 2 last suggestions that you made. We did however another test, which was to remove the reliable option from d_mgmt_vrf_socket, and it seems the problem is not seen again. Besides from what it is written in the manual, in other which cases/conditions can syslog-ng loose logs? reliable() Type: yes|no Default: no Description: If set to yes, syslog-ng OSE cannot lose logs in case of reload/restart, unreachable destination or syslog-ng OSE crash. This solution provides a slower, but reliable disk-buffer option. It is created and initialized at startup and gradually grows as new messages arrive. If set to no, the normal disk-buffer will be used. This provides a faster, but less reliable disk-buffer option. Thanks in advance, Alex From: Gabor Nagy (gnagy) <[email protected]<mailto:[email protected]>> Sent: 25 de março de 2022 14:44 To: Alexandre Santos <[email protected]<mailto:[email protected]>>; Syslog-ng users' and developers' mailing list <[email protected]<mailto:[email protected]>> Subject: Re: Local sources seem not to be working CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. Hi Alex, Sorry I haven't answered yet. I'll have a few ideas I would like to try out next week. This is strange: the d_localfile destinations (as well as the vrf-socket destination "d_mgmt_vrf_socket") receive messages from the syslog() source, but not from the internal() or system() sources? And the issue vanishes when "d_mgmt_vrf_socket" destination is removed? If it would be soft flow-control, then the syslog() source would be suspended too. Just a tip: would you switch out the unix-dgram() destination to syslog() destination, please? Maybe that's not possible with the VRF in-place... In the stats output, do you see an increased number of dropped messages? I would still suggest increasing the 4MB disk-buffer. You should make an estimation of how long could the mgmt syslog-ng be down (i.e not receiving from the unix-dgram), what is the average incoming EPS and an average message size, that could give a hint about the required disk-buffer size. Regards, Gabor ______________________________________________________________________________ Member info: https://lists.balabit.hu/mailman/listinfo/syslog-ng Documentation: http://www.balabit.com/support/documentation/?product=syslog-ng FAQ: http://www.balabit.com/wiki/syslog-ng-faq
45146.stats.error.txt
(text/plain, 29.3 KB)
root@machine:/home/shared# /usr/sbin/syslog-ng-ctl stats --control /var/lib/syslog-ng/mgmt-syslog-ng.ctl SourceName;SourceId;SourceInstance;State;Type;Number global;sdata_updates;;a;processed;45 src.unix-stream;s_src;afsocket_sd.(stream,AF_UNIX(/dev/uds_log));a;connections;1 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;dropped;1916836 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;processed;3757280 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;queued;0 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;suppressed;14644 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;written;1845551 global;payload_reallocs;;a;processed;2055692 global;scratch_buffers_bytes;;a;queued;1024 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;truncated_count;0 destination;d_grafana_tcp;;a;processed;3771924 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;truncated_bytes;0 global;msg_clones;;a;processed;0 source;s_src;;a;processed;3777671 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;eps_last_24h;21 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;eps_since_start;17 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;msg_size_max;51073 center;;received;a;processed;3777671 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;msg_size_avg;356 global;scratch_buffers_count;;a;queued;2 center;;queued;a;processed;3771924 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;eps_last_1h;18 root@machine:/home/shared# /usr/sbin/syslog-ng-ctl stats SourceName;SourceId;SourceInstance;State;Type;Number dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;truncated_count;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;msg_size_avg;122 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;truncated_bytes;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;truncated_bytes;0 destination;d_localfile_alarm;;a;processed;720 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;eps_since_start;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;msg_size_max;51050 destination;d_localfile_restconf-command;;a;processed;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;msg_size_avg;456 destination;d_localfile_ztp;;a;processed;1370 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;msg_size_avg;264 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;truncated_bytes;0 destination;d_localfile_tl1-command;;a;processed;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;eps_since_start;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;dropped;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;processed;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;queued;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;suppressed;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;written;0 center;;queued;a;processed;8024601 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;eps_last_1h;19 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;msg_size_max;0 destination;d_localfile_configuration;;a;processed;82 destination;d_localfile_netconf-command;;a;processed;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;eps_since_start;0 global;internal_source;;a;dropped;0 global;internal_source;;a;queued;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;dropped;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;processed;497150 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;queued;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;suppressed;27159 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;written;501443 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;truncated_count;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;eps_since_start;4 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;msg_size_max;65587 global;internal_queue_length;;a;processed;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;msg_size_avg;254 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;eps_last_24h;43 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;eps_last_24h;5 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;eps_since_start;35 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;msg_size_max;486 global;msg_clones;;a;processed;8024601 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;msg_size_max;1007 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;msg_size_avg;122 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;dropped;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;processed;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;queued;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;suppressed;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;written;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;msg_size_max;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;eps_since_start;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;truncated_count;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;truncated_count;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;eps_since_start;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;eps_since_start;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;msg_size_avg;159 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;msg_size_avg;123 destination;d_localfile_grpc-command;;a;processed;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;msg_size_max;0 global;scratch_buffers_count;;a;queued;14 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;dropped;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;processed;60 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;queued;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;suppressed;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;written;60 destination;d_localfile_messages;;a;processed;121030 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;truncated_count;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;dropped;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;processed;57247 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;queued;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;suppressed;63783 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;written;58319 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;msg_size_max;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;truncated_bytes;0 destination;d_localfile_shell-command;;a;processed;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;eps_last_1h;0 src.internal;s_src#1;;a;processed;63492 src.internal;s_src#1;;a;stamp;1650421530 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;dropped;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;processed;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;queued;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;suppressed;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;written;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;msg_size_max;123 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;eps_since_start;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;msg_size_avg;136 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;dropped;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;processed;427 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;queued;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;suppressed;1 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;written;428 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;dropped;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;processed;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;queued;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;suppressed;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;written;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;msg_size_max;211 destination;d_localfile_security;;a;processed;428 global;sdata_updates;;a;processed;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;truncated_count;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;truncated_bytes;0 destination;d_localfile_sysinfo;;a;processed;0 destination;d_localfile_kernel;;a;processed;106 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;dropped;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;processed;1370 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;queued;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;suppressed;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;written;1370 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;truncated_count;0 destination;d_localfile_apps;;a;processed;524309 destination;d_mgmt_vrf_socket;;a;processed;3868284 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;dropped;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;processed;3468463 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;queued;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;suppressed;2202 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;written;3469677 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;truncated_count;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;msg_size_max;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;msg_size_max;20544 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;dropped;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;processed;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;queued;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;suppressed;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;written;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;dropped;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;processed;35662 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;queued;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;suppressed;1658 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;written;36073 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;eps_since_start;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;eps_last_1h;0 destination;d_localfile_user;;a;processed;60 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;eps_last_1h;0 destination;d_localfile_cli-command;;a;processed;227 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;truncated_count;0 src.journald;s_src#0;journal;a;processed;626058 src.journald;s_src#0;journal;a;stamp;1650442338 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;msg_size_avg;265 source;s_src;;a;processed;4162026 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;msg_size_max;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;msg_size_avg;350 destination;d_localfile_linecard;;a;processed;3470665 destination;d_localfile_event;;a;processed;37320 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;msg_size_max;1879 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;eps_since_start;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;truncated_bytes;0 global;payload_reallocs;;a;processed;1827115 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;eps_last_1h;19 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;dropped;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;processed;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;queued;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;suppressed;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;written;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;msg_size_avg;321 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;dropped;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;processed;82 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;queued;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;suppressed;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;written;82 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;eps_last_24h;40 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;msg_size_max;271 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;truncated_count;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;truncated_count;0 global;scratch_buffers_bytes;;a;queued;512 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;msg_size_max;674 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;dropped;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;processed;720 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;queued;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;suppressed;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;written;720 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;eps_since_start;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;truncated_count;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;msg_size_max;244 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;eps_last_24h;0 center;;received;a;processed;4162026 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;eps_since_start;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;msg_size_avg;176 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;eps_since_start;32 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;truncated_count;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;dropped;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;processed;101 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;queued;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;suppressed;5 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;written;104 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;msg_size_max;439 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;dropped;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;processed;223 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;queued;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;suppressed;4 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;written;226 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;eps_last_1h;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;dropped;95102 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;processed;3868284 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;queued;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;written;3777905 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;truncated_count;0
45146.stats.after.txt
(text/plain, 30.8 KB)
root@machine:/home/shared# /usr/sbin/syslog-ng-ctl stats --control /var/lib/syslog-ng/mgmt-syslog-ng.ctl SourceName;SourceId;SourceInstance;State;Type;Number global;sdata_updates;;a;processed;88 src.unix-stream;s_src;afsocket_sd.(stream,AF_UNIX(/dev/uds_log));a;connections;1 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;dropped;2219335 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;processed;4090485 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;queued;3753 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;suppressed;24682 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;written;1874813 global;payload_reallocs;;a;processed;2275325 global;scratch_buffers_bytes;;a;queued;1024 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;truncated_count;0 destination;d_grafana_tcp;;a;processed;4115167 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;truncated_bytes;0 global;msg_clones;;a;processed;0 source;s_src;;a;processed;4125422 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;eps_last_24h;21 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;eps_since_start;17 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;msg_size_max;51073 center;;received;a;processed;4125422 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;msg_size_avg;356 global;scratch_buffers_count;;a;queued;2 center;;queued;a;processed;4115167 dst.syslog;d_grafana_tcp#0;tcp,10.100.71.73:1514;a;eps_last_1h;20 root@machine:/home/shared# /usr/sbin/syslog-ng-ctl stats SourceName;SourceId;SourceInstance;State;Type;Number dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;truncated_count;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;msg_size_avg;122 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;truncated_bytes;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;truncated_bytes;0 destination;d_localfile_alarm;;a;processed;784 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;eps_since_start;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;msg_size_max;51050 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;truncated_bytes;0 destination;d_localfile_restconf-command;;a;processed;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;msg_size_avg;454 destination;d_localfile_ztp;;a;processed;1370 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;msg_size_avg;260 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;truncated_bytes;0 destination;d_localfile_tl1-command;;a;processed;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;eps_since_start;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;dropped;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;processed;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;queued;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;suppressed;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;written;0 center;;queued;a;processed;8714331 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;eps_last_24h;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;eps_last_1h;104 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;msg_size_max;0 destination;d_localfile_configuration;;a;processed;146 destination;d_localfile_netconf-command;;a;processed;47 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;eps_since_start;0 global;internal_source;;a;dropped;0 global;internal_source;;a;queued;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;msg_size_max;120 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;dropped;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;processed;753844 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;queued;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;suppressed;36727 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;written;759945 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;truncated_count;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;eps_since_start;6 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;msg_size_max;65587 global;internal_queue_length;;a;processed;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;eps_since_start;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;msg_size_avg;246 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;eps_last_24h;47 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;eps_last_1h;69 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_apps#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/apps.log 10 10;a;eps_last_24h;8 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;eps_since_start;37 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;msg_size_max;486 global;msg_clones;;a;processed;8714331 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;msg_size_max;1007 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;eps_last_24h;1 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;msg_size_avg;121 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;dropped;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;processed;5 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;queued;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;suppressed;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;written;5 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;msg_size_max;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;eps_since_start;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;truncated_count;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;truncated_count;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;msg_size_avg;117 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;eps_since_start;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;eps_since_start;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;msg_size_avg;159 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;msg_size_avg;121 destination;d_localfile_grpc-command;;a;processed;0 destination;d_localfile_dummy;;o;processed;5 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;msg_size_max;120 global;scratch_buffers_count;;a;queued;11 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;dropped;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;processed;72 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;queued;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;suppressed;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;written;72 destination;d_localfile_messages;;a;processed;166389 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;msg_size_avg;117 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;truncated_count;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;dropped;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;processed;102195 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;queued;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;suppressed;64194 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;written;103669 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;msg_size_avg;414 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;msg_size_max;587 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_messages#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/messages.log 10 10;a;eps_last_1h;12 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;truncated_bytes;0 destination;d_localfile_shell-command;;a;processed;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;eps_last_1h;0 src.internal;s_src#1;;a;processed;63535 src.internal;s_src#1;;a;stamp;1650528076 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;dropped;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;processed;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;queued;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;suppressed;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;written;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;eps_last_1h;0 dst.program;d_localfile_user#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/user.log 10 10;a;msg_size_max;123 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;eps_since_start;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;msg_size_avg;138 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;dropped;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;processed;804 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;queued;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;suppressed;1 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;written;805 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;dropped;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;processed;47 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;queued;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;suppressed;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;written;47 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;msg_size_max;224 destination;d_localfile_security;;a;processed;805 global;sdata_updates;;a;processed;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;truncated_count;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;truncated_bytes;0 destination;d_localfile_sysinfo;;a;processed;5 destination;d_localfile_kernel;;a;processed;106 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;dropped;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;processed;1370 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;queued;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;suppressed;0 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;written;1370 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;truncated_count;0 destination;d_localfile_apps;;a;processed;790571 destination;d_mgmt_vrf_socket;;a;processed;4215407 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;dropped;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;processed;3496084 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;queued;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;suppressed;2318 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;written;3497330 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;truncated_count;0 dst.program;d_localfile_netconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/netconf-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;msg_size_max;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;msg_size_max;20544 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;dropped;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;processed;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;queued;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;suppressed;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;written;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;dropped;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;processed;37718 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;queued;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;suppressed;1991 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;written;38201 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;eps_since_start;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;eps_last_1h;0 destination;d_localfile_user;;a;processed;72 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;eps_last_1h;1 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;dropped;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;processed;5 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;queued;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;suppressed;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;written;5 destination;d_localfile_cli-command;;a;processed;513 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;truncated_count;0 src.journald;s_src#0;journal;a;processed;945406 src.journald;s_src#0;journal;a;stamp;1650528178 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;msg_size_avg;265 source;s_src;;a;processed;4509149 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;msg_size_max;0 dst.program;d_localfile_restconf-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/restconf-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;msg_size_avg;345 destination;d_localfile_linecard;;a;processed;3498402 destination;d_localfile_event;;a;processed;39709 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;msg_size_max;1879 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;eps_since_start;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;truncated_bytes;0 global;payload_reallocs;;a;processed;2673971 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;eps_last_1h;19 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;dropped;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;processed;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;queued;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;suppressed;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;written;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;msg_size_avg;321 dst.program;d_localfile_security#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/security.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;eps_since_start;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;dropped;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;processed;146 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;queued;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;suppressed;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;written;146 dst.program;d_localfile_sysinfo#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/sysinfo.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;eps_last_24h;40 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;msg_size_max;292 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;msg_size_avg;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;truncated_count;0 dst.program;d_localfile_event#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/event.log 10 10;a;truncated_count;0 global;scratch_buffers_bytes;;a;queued;2816 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;msg_size_max;674 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_grpc-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/grpc-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;dropped;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;processed;784 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;queued;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;suppressed;0 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;written;784 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;eps_since_start;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;truncated_count;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;truncated_count;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;msg_size_max;244 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;eps_last_24h;0 center;;received;a;processed;4509149 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;eps_since_start;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;msg_size_avg;177 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_tl1-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/tl1-command.log 10 10;a;truncated_bytes;0 dst.program;d_localfile_shell-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/shell-command.log 10 10;a;eps_last_24h;0 dst.program;d_localfile_linecard#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/linecard.log 10 10;a;eps_since_start;32 dst.program;d_localfile_alarm#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/alarm.log 10 10;a;truncated_count;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;dropped;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;processed;101 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;queued;0 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;suppressed;5 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;written;104 dst.program;d_localfile_configuration#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/configuration.log 10 10;a;msg_size_max;515 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;dropped;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;processed;486 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;queued;0 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;suppressed;27 dst.program;d_localfile_cli-command#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/cli-command.log 10 10;a;written;508 dst.program;d_localfile_kernel#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/kernel.log 10 10;a;eps_last_1h;0 dst.program;d_localfile_dummy#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/dummy.log 10 10;o;truncated_count;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;dropped;95102 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;processed;4215407 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;queued;0 dst.unix-stream;d_mgmt_vrf_socket#0;unix-stream,localhost.afunix:/dev/uds_log;a;written;4125028 dst.program;d_localfile_ztp#0;/opt/machine/local/bin/write_with_rotation.sh /var/log/ztp.log 10 10;a;truncated_count;0