Monitoring Splunk

How to get the data related to creation, modification, deletion of a particular index

gndivya
Explorer

Hi,

I want to check when the index was created, modified or deleted from internal logs(also other details of this particular operation). Is there any way to query this data?

Labels (1)
Tags (1)
0 Karma
1 Solution

gaurav_maniar
Builder

Hi,

Try the below search query,
- the first part will give details regarding action performed on Index (create, edit, remove)
- subquery after join will provide the parameter and other details for the action

index=_audit action=indexes_edit operation IN (create, edit, remove) 
| rename object as idx 
| bin span=1m _time 
| join type=outer _time, idx 
    [ search index=_internal params=* 
    | bin span=1m _time 
    | stats first(params) as params by _time, idx]
| table _time, user, operation, idx, params

accept & up-vote the answer if it helps.

View solution in original post

gaurav_maniar
Builder

Hi,

Try the below search query,
- the first part will give details regarding action performed on Index (create, edit, remove)
- subquery after join will provide the parameter and other details for the action

index=_audit action=indexes_edit operation IN (create, edit, remove) 
| rename object as idx 
| bin span=1m _time 
| join type=outer _time, idx 
    [ search index=_internal params=* 
    | bin span=1m _time 
    | stats first(params) as params by _time, idx]
| table _time, user, operation, idx, params

accept & up-vote the answer if it helps.

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, ...