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!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...