Reporting

Splunk Scheduled PDF - Use token on mail subject

nuaraujo
Path Finder

Hello everyone

I have a scheduled PDF delivery mail, where I want to manipulate the mail subject, using a mail token. Basically, I want to add the word SUCCESS or ERROR, to the mail subject.

To achieve this, on my dashboard, I am using a global search, where I am creating a token, using the following code:

<search id="get_status_token">
    <query>my_search_here
| eval fstatus=if(AAA==BBB AND CCC==DDD  , "SUCCESS","ERROR")
| fields fstatus</query>
    <earliest>-1d@d</earliest>
    <latest>@d</latest>
    <sampleRatio>1</sampleRatio>
    <done>
      <set token="fstatus">$result.fstatus$</set>
    </done>
  </search>

On the EDIT PDF SCHEDULE menu, I adding the following code as Subject

TEST $fstatus$

but the email does never display the value of the token in the subject.

Can someone help me find what am I missing?

NOTE: I am using the token in the email subject and not in the PDF.

Thanks in advance

Tags (1)
0 Karma
1 Solution

masonmorales
Influencer

Instead of setting a token in the XML of the report, try using a token with the sendemail command.
i.e.

<query>my_search_here
 | eval fstatus=if(AAA==BBB AND CCC==DDD  , "SUCCESS","ERROR")
 | fields fstatus
 | sendemail to=someone@somewhere.net sendpdf=t subject=$result.fstatus$</query> 

View solution in original post

0 Karma

masonmorales
Influencer

Instead of setting a token in the XML of the report, try using a token with the sendemail command.
i.e.

<query>my_search_here
 | eval fstatus=if(AAA==BBB AND CCC==DDD  , "SUCCESS","ERROR")
 | fields fstatus
 | sendemail to=someone@somewhere.net sendpdf=t subject=$result.fstatus$</query> 
0 Karma

nuaraujo
Path Finder

Thanks @masonmorales for the quick reply, but since in this dashboard I have 3 different searches, this would require at least 3 mails.

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Index This | What travels the world but is also stuck in place?

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

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...