Splunk Enterprise Security

Correaltion Search : Detect if an Acces Apache Log exist for a user who has triggered an event

yanisA
Explorer

Hello,

We need to develop a Correlation Search to implement this algorithm :

If a specific custom event (here tagged as index="custom_app" categorie="custom_log") occures for one user we trigger an alert if there is no access apache log for the same user.

I have tried the following correlation search with trigger conditions : Trigger alert when Number of Results is equal to 0.

index="linux_apache" sourcetype="apache:access:kv"

[search index="custom_app" categorie="custom_log"

| top limit=1 user

| table user]

| table user

| dedup user

 

Thanks by advance for your help regarding this topic

Labels (1)
0 Karma
1 Solution

venkatasri
SplunkTrust
SplunkTrust

Hi @yanisA 

As i understood you want to return top user to main search linux* and if there is a single table entry then you want to trigger it. You can try following query

 

index="linux_apache" sourcetype="apache:access:kv"
[search index="custom_app" categorie="custom_log"
| top limit=1 user
| return user]
| stats count by user

 

 

---

An upvote would be appreciated and Accept solution if it helps!

 

View solution in original post

venkatasri
SplunkTrust
SplunkTrust

@yanisA Hope it helped, Appreciate if you could Accept solution.

venkatasri
SplunkTrust
SplunkTrust

Hi @yanisA 

As i understood you want to return top user to main search linux* and if there is a single table entry then you want to trigger it. You can try following query

 

index="linux_apache" sourcetype="apache:access:kv"
[search index="custom_app" categorie="custom_log"
| top limit=1 user
| return user]
| stats count by user

 

 

---

An upvote would be appreciated and Accept solution if it helps!

 

yanisA
Explorer

Hi @venkatasri ,

Yes that's it ! It seems to work perfectly !

Thank you so much for your help 🙂

0 Karma
Get Updates on the Splunk Community!

Enhance Your Splunk App Development: New Tools & Support

UCC FrameworkAdd-on Builder has been around for quite some time. It helps build Splunk apps faster, but it ...

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...