#Random
This is a place to discuss all things outside of Splunk, its products, and its use cases.

journal.gz

gizemk00
Engager

when we are using less command into the journal.gz we see that non-text characters like ascii character, what is the reason of this??

Tags (1)
0 Karma
1 Solution

woodcock
Esteemed Legend

As @rich7177 said, usually *.gz files are compressed text files using gzip. If that is the case, do not use less but instead use zless:

zless journal.gz
zcat journal.gz
zmore journal.gz #Display journal.gz one screen at a time
zgrep '1.2.3.4' journal.gz # Search journal.gz for 1.2.3.4 IP address using grep command like syntax:
egrep 'regex' journal.gz
egrep 'regex1|regex2' journal.gz

View solution in original post

dwaddle
SplunkTrust
SplunkTrust

Echoing @rich7177 and @woodcock and adding a little more detail.

(A) it's a compressed file. You have to uncompress it to read it. Sometimes less will silently decompress it for you.

(B) Even if you do uncompress it, there's going to be binary data in it. Splunk's journal file has your raw events along with binary metadata about them. What you'll see is clumps of plain text event, surrounded by clumps of binary. That is just how it is, because that is how Splunk stores the data.

0 Karma

woodcock
Esteemed Legend

As @rich7177 said, usually *.gz files are compressed text files using gzip. If that is the case, do not use less but instead use zless:

zless journal.gz
zcat journal.gz
zmore journal.gz #Display journal.gz one screen at a time
zgrep '1.2.3.4' journal.gz # Search journal.gz for 1.2.3.4 IP address using grep command like syntax:
egrep 'regex' journal.gz
egrep 'regex1|regex2' journal.gz

Richfez
SplunkTrust
SplunkTrust

gzip is a binary file type. There's some magic in how you can tell less to automatically "unzip" a gz file when it displays one, but it's not always turned on.

Not really being a Splunk questions, please refer to this Stack Overflow question for more information and a possible solution.

Get Updates on the Splunk Community!

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...