Getting Data In

Network Monitoring between Enterprise Security Search Head and Indexers

shedalkar
Engager

Is it possible set up a monitoring of the data transfer rates between search head and indexer.
We are especially interested in the amount of data transferred for the scheduled searches that Enterprise Security runs every day. The transferred data per hour, ideally in form of a chart and a total value per day.

Thanks.

0 Karma

adonio
Ultra Champion

hello there,
you can use the eval len function on data from the particular search head you are after.
here is the code:

    index = _internal OR index = _audit host = <YourSearchHeadHere>
    | eval total_bytes = len(_raw)
    | eval bytes_kb = round(total_bytes/1024, 2)
    | eval bytes_mb = round(total_bytes/1024/1024, 2)
    | eval bytes_gb = round(total_bytes/1024/1024/1024, 2)
    | stats sum(bytes_*) as total_internal_audit_*  by host

here is a screenshot:
alt text

0 Karma

adonio
Ultra Champion

do you mean the amount of internal data that goes to _audit, _internal indexes?

0 Karma

shedalkar
Engager

yes. So is it possible to monitor this ? If yes, can you please let us know how ?

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...