Getting Data In

Can I change the name of attachments which are sent via schedule saved searches?

rgonzale6
Path Finder

What I'd like is to have the date appended to the file name. Currently we have a scheduled saved search running each night that emails results out. The file names are identical every night as currently configured. I don't think there is a GUI fix, but I've looked at alert_actions.conf and don't see where I could make this change.

Thanks

Tags (3)
0 Karma
1 Solution

Simeon
Splunk Employee
Splunk Employee

I believe there is an enhancement request to do this. Currently, you could edit the python script that performs the email alert. Before considering this action, you should be aware of the following:

  1. editing this is NOT supported
  2. upgrading may overwrite your change
  3. See #1

With that said, you can find the file here: $SPLUNK_HOME/etc/apps/search/bin/sendemail.py

The line you would want to edit is:

filename = "splunk-results.csv"

View solution in original post

rgonzale6
Path Finder

In case anyone needs to do something similar...here are the changes I made to sendemail.py:

added:
import datetime
import time
today= datetime.date.today()

modified:

    filename = 'splunk-results'
    filename += str(today)
    filename += ".csv"

results:

splunk-results2010-05-11.csv

Simeon
Splunk Employee
Splunk Employee

I believe there is an enhancement request to do this. Currently, you could edit the python script that performs the email alert. Before considering this action, you should be aware of the following:

  1. editing this is NOT supported
  2. upgrading may overwrite your change
  3. See #1

With that said, you can find the file here: $SPLUNK_HOME/etc/apps/search/bin/sendemail.py

The line you would want to edit is:

filename = "splunk-results.csv"

rgonzale6
Path Finder

Thanks! This was quite helpful.

0 Karma
Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...