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!

Splunk Enterprise Security 8.0.2 Availability: On cloud and On-premise!

A few months ago, we released Splunk Enterprise Security 8.0 for our cloud customers. Today, we are excited to ...

Logs to Metrics

Logs and Metrics Logs are generally unstructured text or structured events emitted by applications and written ...

Developer Spotlight with Paul Stout

Welcome to our very first developer spotlight release series where we'll feature some awesome Splunk ...