How to filter logging time 24 hours ago and topics=ppp and message=connected in log.0.txt
Posted: Wed Jan 22, 2025 6:05 am
halo
can help me.
i stuck to find script filter logging time 24 hours ago and topics=ppp and message=connected and save become new file txt
this is script i created and running but just can filter topics ppp and message connected
Thank You
can help me.
i stuck to find script filter logging time 24 hours ago and topics=ppp and message=connected and save become new file txt
this is script i created and running but just can filter topics ppp and message connected
Code: Select all
:local fileconten [/file/get ppp_log.0.txt contents]
:local scriptfilter [/log print file=ppp_connected_logs.txt where topics~"ppp" and message~"connected"]
{
:foreach Log in=$fileconten do={[$scriptfilter]
}
}