Splunk Search

Error auto-canceled search

lamnguyentt1
Explorer

Dear professional,

I want to get the log size of each service in an index.
This is my search string


index="hcg_oapi_prod"| eval size = len(_raw) | stats sum(size) as rawSize by sourcetype | eval GB = round(rawSize / 1024 / 1024/1024, 2)

lamnguyentt1_0-1651137456325.png

 

But this query string can not be completed and auto-canceled.

lamnguyentt1_1-1651137487499.png

 

Please help me.

0 Karma

smurf
Communicator

Hi,

I think you might be hitting some of the user search limits like the amount of memory it can consume.

I would try to switch from Verbose to Fast or specify the _raw field before your eval.

index="hcg_oapi_prod"
| fields _raw
| eval size = len(_raw)
...

This should substantially speed the search up as it would not try to extract all the fields.

0 Karma
Get Updates on the Splunk Community!

Build Scalable Security While Moving to Cloud - Guide From Clayton Homes

 Clayton Homes faced the increased challenge of strengthening their security posture as they went through ...

Mission Control | Explore the latest release of Splunk Mission Control (2.3)

We’re happy to announce the release of Mission Control 2.3 which includes several new and exciting features ...

Cloud Platform | Migrating your Splunk Cloud deployment to Python 3.7

Python 2.7, the last release of Python 2, reached End of Life back on January 1, 2020. As part of our larger ...