Splunk Search

only show 2 decimal places

mileven
Explorer

Currently doing a search and converting results from KB to MB but I only want to see 2 decimal places not 6 as it's currently being shown. Below is my search.

Name: 'Daily-license-usage'
Query Terms: 'index=_internal sourcetype=splunkd source=metrics \"group=per_sourcetype_thruput\" NOT series=\"filetrackercrclog\" NOT series=\"splunk*\" NOT series=\"audittrail\" NOT series=\"scheduler\" NOT series=\"searches\" NOT series=\"stash\" NOT series=\"entity\"| eval events=eps*kb/kbps | stats sum(events) as events sum(kb) as MB by series | eval events=round(events,0) | eval kb=round(kb,1)/1024'

Tags (1)
0 Karma
1 Solution

lguinn2
Legend

At the end of the query put

| eval MB = round(MB/1024,2)

instead of

| eval kb=round(kb,1)/1024' 

View solution in original post

lguinn2
Legend

At the end of the query put

| eval MB = round(MB/1024,2)

instead of

| eval kb=round(kb,1)/1024' 

sowings
Splunk Employee
Splunk Employee

So close! Do the round after the math: |eval kb=round(kb / 1024, 2)

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...