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!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...