<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Running php script in alert with adding results as arguments in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477049#M8448</link>
    <description>&lt;P&gt;Nevermind, I've deleted spaces on each row. Now it's WORKING! Great! Thank you @manjunathmeti &lt;BR /&gt;
What changes I could make in your python code to add more fields?  &lt;IMG src="https://sun9-46.userapi.com/c857124/v857124329/e1ad5/cDUpgh7YcQs.jpg" alt="alt text" /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2020 12:01:21 GMT</pubDate>
    <dc:creator>damiko</dc:creator>
    <dc:date>2020-02-24T12:01:21Z</dc:date>
    <item>
      <title>Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477018#M8417</link>
      <description>&lt;P&gt;Hello Ninjas!&lt;BR /&gt;
I need help with setting an alert which triggers a php script with results. This script should pass the results to 3rd party system.&lt;BR /&gt;
For example: script.php "date | field1 | field 2 | _raw "&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 04:46:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477018#M8417</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-02-20T04:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477019#M8418</link>
      <description>&lt;P&gt;Step 1. Place script &lt;STRONG&gt;my_script.php&lt;/STRONG&gt; in $SPLUNK_HOME/etc/apps/[app]/bin/.&lt;/P&gt;

&lt;P&gt;Step 2: Create php.path file in $SPLUNK_HOME/etc/apps/[app]/bin/ or in $SPLUNK_HOME/bin/ with below content (path to binary) and make it executable.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;/usr/bin/php&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Step 3. Create app.conf and alert_actions.conf in $SPLUNK_HOME$/etc/apps/[app]/default/ with below configurations. Note that name of the script should be the same as in its alert_actions.conf stanza.&lt;/P&gt;

&lt;P&gt;app.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[ui]
is_visible = 0
label = My Alert Action

[launcher]
description = My Alert Action
version = 1.0.0

[install]
state = enabled
is_configured = 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;alert_actions.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[my_script]
is_custom = 1
label = My Alert Action
disabled = 0
alert.execute.cmd = php.path
alert.execute.cmd.arg.0 =  $SPLUNK_HOME/etc/apps/[app]/bin/my_script.php
alert.execute.cmd.arg.1 = $trigger_date$
alert.execute.cmd.arg.2 = $result.field1$
alert.execute.cmd.arg.3 = $result.field2$
alert.execute.cmd.arg.4 = $result._raw$
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;Note that $result.field1$, $result.field2$ and $result._raw$ are the field values from the first row of the search results.&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Step 4. Configure alert with this alert action:&lt;BR /&gt;
savedsearches.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[alert_name]
action.my_script = 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Script will be executed like this:&lt;BR /&gt;
/usr/bin/php $SPLUNK_HOME/etc/apps/[app]/bin/my_script.php $trigger_date$ $result.field1$ $result.field2$ $result._raw$&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:15:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477019#M8418</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-09-30T04:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477020#M8419</link>
      <description>&lt;P&gt;Hey, thank you. I didn't finish setting yet, wanted to ask you: Where do I put savedsearches.conf?&lt;BR /&gt;
Or should I change current savedsearches.conf?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 09:04:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477020#M8419</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-02-20T09:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477021#M8420</link>
      <description>&lt;P&gt;Did everything step by step as in your instruction, people on the other side (3rd party app), who are waiting for script results, said it didn't trigger.&lt;BR /&gt;
For clarification: script is not mine, but I have to run it with arguments. It works when I run it from Command line like this: php my_script.php "test1 | test2 | test3 | test4"&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 10:00:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477021#M8420</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-02-20T10:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477022#M8421</link>
      <description>&lt;P&gt;You should change existing savedsearches.conf.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 10:28:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477022#M8421</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-02-20T10:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477023#M8422</link>
      <description>&lt;P&gt;Check splunkd logs:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal earliest=-24h action=my_script
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Feb 2020 10:29:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477023#M8422</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-02-20T10:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477024#M8423</link>
      <description>&lt;P&gt;&lt;IMG src="https://sun9-57.userapi.com/c858328/v858328016/17d3b0/-F8oJ1QrH4I.jpg" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;Here is the result. Same error every alert&lt;BR /&gt;
02-20-2020 16:38:04.787 +0600 ERROR sendmodalert - action=Splunk_integration - Failed to find alert.execute.cmd "/path/to/php".&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 10:48:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477024#M8423</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-02-20T10:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477025#M8424</link>
      <description>&lt;P&gt;You need to provide path to /path/to/php for alert.execute.cmd.&lt;/P&gt;

&lt;P&gt;Set &lt;STRONG&gt;alert.execute.cmd = php&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 10:54:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477025#M8424</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-02-20T10:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477026#M8425</link>
      <description>&lt;P&gt;Tried with adding full path to &lt;STRONG&gt;alert.execute.cmd = /opt/splunk/etc/apps/myapp/bin/script.php&lt;/STRONG&gt;&lt;BR /&gt;
And just adding as you said &lt;STRONG&gt;alert.execute.cmd = php&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;No use, same Errors&lt;BR /&gt;
pls check the pic &lt;IMG src="https://sun9-65.userapi.com/c858328/v858328500/1791c5/VoUyxwIMrzo.jpg" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 11:24:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477026#M8425</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-02-20T11:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477027#M8426</link>
      <description>&lt;P&gt;is script path is /opt/splunk/etc/apps/myapp/bin/script.php OR /opt/splunk/etc/apps/alert_action/bin/my_script.php?&lt;/P&gt;

&lt;P&gt;Make sure this script is executable.&lt;BR /&gt;
chmod +x /opt/splunk/etc/apps/alert_action/bin/my_script.php&lt;/P&gt;

&lt;P&gt;And also add file default.metadata in /metadata/ with below content.&lt;/P&gt;

&lt;P&gt;[]&lt;BR /&gt;
access = read : [ * ], write : [ admin ]&lt;BR /&gt;
export = system&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:15:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477027#M8426</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-09-30T04:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477028#M8427</link>
      <description>&lt;P&gt;/opt/splunk/etc/apps/alert_action/bin/my_script.php - my script path looks like this.&lt;BR /&gt;
Script is executable. I've added to metadata. Still the same Error.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477028#M8427</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-09-30T04:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477029#M8428</link>
      <description>&lt;P&gt;Wait absolute paths are not supported for alert.execute.cmd. &lt;BR /&gt;
Step 1. Create php.path in /opt/splunk/etc/apps/alert_action/bin/ with below content:&lt;/P&gt;

&lt;P&gt;/usr/bin/php&lt;/P&gt;

&lt;P&gt;Step 2. Make .path file executable:&lt;BR /&gt;
chmod +x /opt/splunk/etc/apps/alert_action/bin/php.path&lt;/P&gt;

&lt;P&gt;Step 3. Set alert.execute.cmd = php.path in alert_actions.conf.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 12:12:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477029#M8428</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-02-20T12:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477030#M8429</link>
      <description>&lt;P&gt;Cool, I've got events which show success results. Now I'm waiting for a response from Devs.&lt;BR /&gt;
&lt;IMG src="https://sun9-3.userapi.com/c858328/v858328539/17d7a6/vYJH9udiRG8.jpg" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 12:29:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477030#M8429</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-02-20T12:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477031#M8430</link>
      <description>&lt;P&gt;One more thing, the script will be executed in like this with four separate parameters.&lt;/P&gt;

&lt;P&gt;/usr/bin/php /opt/splunk/etc/apps/alert_action/bin/my_script.php date field1 field 2 _raw&lt;/P&gt;

&lt;P&gt;If the parameter is this: "test1 | test2 | test3 | test4", then make below changes in alert_actions.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[my_script]
 is_custom = 1
 label = My Alert Action
 disabled = 0
 alert.execute.cmd = php.path
 alert.execute.cmd.arg.0 =  /opt/splunk/etc/apps/alert_action/bin/my_script.php
 alert.execute.cmd.arg.1 = $trigger_date$ | $result.field1$ | $result.field2$ | $result._raw$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:15:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477031#M8430</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-09-30T04:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477032#M8431</link>
      <description>&lt;P&gt;Thanks, script is working, but data being send is incorrect. Instead of sending Token values it sends Token text string.&lt;BR /&gt;
3rd party is receiving it as text: $trigger_date$   $result.field1$  $result.field2$  $result._raw$.&lt;BR /&gt;
Please see pic below and don't get your attention on 2 trigger.dates, it's my mistake &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;&lt;IMG src="https://sun9-21.userapi.com/c205628/v205628333/78d80/U1Gdt-KTPhk.jpg" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477032#M8431</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-09-30T04:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477033#M8432</link>
      <description>&lt;P&gt;My apologies, alert.execute.cmd.arg only supports text.&lt;/P&gt;

&lt;P&gt;Custom alert action works best with python script. Let's try this with that. Create a python script /opt/splunk/etc/apps/alert_action/bin/my_script.py as a wrapper to my_script.php with below content and update alert_actions.conf.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#!/usr/bin/python
import sys
import subprocess
import json
if __name__ == "__main__":
    if len(sys.argv) &amp;lt; 2 or sys.argv[1] != "--execute":
        print &amp;gt;&amp;gt; sys.stderr, "FATAL Unsupported execution mode (expected --execute flag)"
        sys.exit(1)
    settings = json.loads(sys.stdin.read())
    config = settings['configuration']
    inputs = "%s | %s | %s | %s" % (config.get('trigger_date'), config.get('status'), config.get('uri_path'), config.get('raw'))
    command = "%s %s %s" % ("/usr/bin/php", "/opt/splunk/etc/apps/alert_action/bin/my_script.php", inputs)
    try:
        p = subprocess.Popen(command, stdin=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
        out, error = p.communicate()
        if error:
            print(error)
        if out:
            print(out)
    except Exception, e:
        print &amp;gt;&amp;gt; sys.stderr, "ERROR Unexpected error: %s" % e
        sys.exit(1)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Update alert_actions.conf with below content. You don't need to provide script name as stanza name matches with script name: my_script.py in app /opt/splunk/etc/apps/alert_action/bin/.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[my_script]
is_custom = 1
label = My Alert Action
payload_format = json
param.trigger_date = $trigger_date$
param.status = $result.status$
param.uri_path = $result.uri_path$
param.raw = $result._raw$
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I tested this on my dev stack.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:16:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477033#M8432</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-09-30T04:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477034#M8433</link>
      <description>&lt;P&gt;Thank you manjunathmeti. The environment where I was testing it is blocked on weekend, I'll try your python method on Monday. Have a good weekend &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2020 08:30:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477034#M8433</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-02-22T08:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477035#M8434</link>
      <description>&lt;P&gt;Hello manjunathmeti! I've created a python script with your code. Updated alert_actions.conf as you said but now I'm getting this Warn below. I guess it can't find a script to execute. May be I forgot to add a line in alert_action.conf?&lt;/P&gt;

&lt;P&gt;02-24-2020 10:37:06.409 +0600 WARN  sendmodalert - action=Splunk_integration - Unable to find alert action script for action="Splunk_integration" in app="alert_action_php"&lt;/P&gt;

&lt;P&gt;Below is my_script.py and alert_action.conf&lt;/P&gt;

&lt;P&gt;&lt;IMG src="https://sun9-34.userapi.com/c206528/v206528934/7f583/Ck4GI5mdpwo.jpg" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;&lt;IMG src="https://sun9-58.userapi.com/c206528/v206528934/7f58c/-78rDrsWV9g.jpg" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:19:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477035#M8434</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-09-30T04:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477036#M8435</link>
      <description>&lt;P&gt;hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/167496"&gt;@damiko&lt;/a&gt; &lt;/P&gt;

&lt;P&gt;In alert_actions.conf stanza name must be "my_script". Change stanza name Splunk_integration to my_script.&lt;/P&gt;

&lt;P&gt;And also remove 1 space from beginning of each line (starting from line 2) in the python script. This is to avoid python indentation errors.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:16:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477036#M8435</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-09-30T04:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Running php script in alert with adding results as arguments</title>
      <link>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477037#M8436</link>
      <description>&lt;P&gt;Not working they say, well I get the message in the search &lt;/P&gt;

&lt;P&gt;02-24-2020 12:11:10.666 +0600 INFO  sendmodalert - Invoking modular alert action=Splunk_integration for search="Damir_php_test" sid="scheduler_&lt;EM&gt;admin_YWxlcnRfYWN0aW9uX3BocA&lt;/EM&gt;_RMD5f6cda7d30fd7e0b1_at_1582524660_62268" in app="alert_action_php" owner="admin" type="saved"&lt;/P&gt;

&lt;P&gt;Which means that alert executed correctly, right? &lt;BR /&gt;
What might be the issue then?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:19:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Running-php-script-in-alert-with-adding-results-as-arguments/m-p/477037#M8436</guid>
      <dc:creator>damiko</dc:creator>
      <dc:date>2020-09-30T04:19:24Z</dc:date>
    </item>
  </channel>
</rss>

