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!

Data Management Digest – December 2025

Welcome to the December edition of Data Management Digest! As we continue our journey of data innovation, the ...

Index This | What is broken 80% of the time by February?

December 2025 Edition   Hayyy Splunk Education Enthusiasts and the Eternally Curious!    We’re back with this ...

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...