Splunk Search

How to display user list with number of attachment emails daily?

Snehraj
New Member

Hello All,

I have email exchange transactional data with below fields. Looking some data with span of 1day. Like how many emails sent by users having attachment vs no attachment. 

message_id, email_id, attachment_count, recipient_name

abc, nameA, 0, xyz

 

Expected result is :
date(like dd/mm/yy), email_ID,  HasAttachmnetcount, NoAttachmnet count. 

1/1/2022,nameA, 4, 3

I am able to write chart (over email_id by isattachmnet) and get data for the selected duration, but unable to list data splited day wise. 

Labels (2)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Snehraj,

please try something like this:

index=your_index
| bin span=1d _time
| stats 
   count(eval(attachment_count=0)) AS NoAttachmnet
   count(eval(attachment_count>0)) AS HasAttachmnetcount
   count
   BY _time email_id
| eval date=strftime(_time,"%d/%m/%Y")
| table date email_id HasAttachmnetcount NoAttachmnet

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...