Other
Falcon LogScale
Converting timestamps to hh:ss
natural_message=/PROCESSING REQUEST method=.*/
| Time := format("%tH:%tM",field=[@timestamp,@timestamp])
| …
natural_message=/PROCESSING REQUEST method=.*/
| Time := format("%tH:%tM",field=[@timestamp,@timestamp])
| …
Git
Useful Git workflows
Temporarily undoing changes
Regular one-off stash:
# Moves all local changes to the stash
git stash
# Moves last stashed changes …