Getting Data In

What's the best way to parse GC logs?

ddrillic
Ultra Champion

We would like Splunk to automatically parse our GC logs and we found a wiki link on configuring props.conf to do so at Community:Monitoring JVMs
HOWTO: Index your JVM garbage collection data

Should we do it at index time or search time?

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

From that link

On Indexers (or heavy forwarders)
props.conf

[sun_jvm]
AUTO_LINEMERGE=FALSE
SHOULD_LINEMERGE=TRUE
DATETIME_CONFIG=CURRENT
BREAK_ONLY_BEFORE=\d+\.\d+:

On search heads
props.conf

[sun_jvm]
REPORT-jvm = sun_jvm_gc

transforms.conf

[sun_jvm_gc]
REGEX = \[(Full\s)?GC\s(?<JVM_HeapUsedBeforeGC>\d+)K->(?<JVM_HeapUsedAfterGC>\d+)K\((?<JVM_HeapSize>\d+)K\),\s(?<JVM_GCTimeTaken>\d+.\d+)\ssecs\]

View solution in original post

somesoni2
Revered Legend

From that link

On Indexers (or heavy forwarders)
props.conf

[sun_jvm]
AUTO_LINEMERGE=FALSE
SHOULD_LINEMERGE=TRUE
DATETIME_CONFIG=CURRENT
BREAK_ONLY_BEFORE=\d+\.\d+:

On search heads
props.conf

[sun_jvm]
REPORT-jvm = sun_jvm_gc

transforms.conf

[sun_jvm_gc]
REGEX = \[(Full\s)?GC\s(?<JVM_HeapUsedBeforeGC>\d+)K->(?<JVM_HeapUsedAfterGC>\d+)K\((?<JVM_HeapSize>\d+)K\),\s(?<JVM_GCTimeTaken>\d+.\d+)\ssecs\]

ddrillic
Ultra Champion

Gorgeous @somesoni2 - you know, our sales engineer says - Always at search time - what do you think?

0 Karma

somesoni2
Revered Legend

He must be talking about field extractions which are recommended during search-time. Above config does exactly that.

There are cases where we do index-time field extractions, e.g. for data which we want to use data model acceleration or want to use the fields in tstats. They occupy space on indexers (and will be replicated in case of indexer clusters) and will cause slightly slowness in indexing process, hence they should be avoided unless you're OK with that impact.

ddrillic
Ultra Champion

Gorgeous @somesoni2 !!!

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...