You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm watching logs for some filesystems and want notified when there are new entries. I'm using:
`journalctl -kf | xargs -L 1 gotify p
That is working great! I'd like to make it integrated so as to not worry as much about buffering and to not need the xargs and be more portable for others.
Something like:
journalctl -kf | gotify p -L 1
And the option could be:
gotify push
--lines value, -L value Push a message every 'value' lines (default: 1)