How to prettify the JSON logging ?
Screenshot:
I want to prettify this.
How to prettify the JSON logging ?
Screenshot:
I want to prettify this.
On Unix systems you can try this
cat mongod.log | tail -3 | jq
Let me check
Not working.
anish@Anishs-MacBook-Pro ~ % cat /Users/anish/mongodata/logs/mongod.log | tail -3 | jq
zsh: command not found: jq
You have to install jq:
brew install jq
You need to install jq package (a command line JSON processor) using brew.
Steps to install jq package :
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
brew install jq
Execute this command : cat mongod.log | jq