<?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: wanna show the of the job as it is untill its changes its status in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472631#M133010</link>
    <description>&lt;P&gt;You need the &lt;CODE&gt;concurrency&lt;/CODE&gt; command.  Google for examples and you will find what you need (I have provided some answer before so that may help narrow it down):&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Concurrency"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Concurrency&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Feb 2020 00:31:52 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2020-02-20T00:31:52Z</dc:date>
    <item>
      <title>wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472618#M132997</link>
      <description>&lt;P&gt;Hi Team&lt;/P&gt;

&lt;P&gt;I have following details&lt;/P&gt;

&lt;P&gt;One of autosys job is running for 20 hours with the status recording in the logs as RUNNING recording only one event with status in the logs .i.e when it changed from the status STARTING to RUNNING.&lt;/P&gt;

&lt;P&gt;I would like to show the same status of the Job for that 20 hours duration in the timechart .&lt;/P&gt;

&lt;P&gt;I am using the following query, but no able to get the solution. can you please help.&lt;/P&gt;

&lt;P&gt;index=infra_apps sourcetype=ca:atsys:edemon:txt &lt;BR /&gt;
| rename hostname as host&lt;BR /&gt;
| fields Job host Autosysjob_time Status&lt;BR /&gt;
| lookup datalakenodeslist.csv host OUTPUT cluster&lt;BR /&gt;
| mvexpand cluster&lt;BR /&gt;
| search Status=STARTING AND cluster=* AND host="&lt;EM&gt;" AND Job=&lt;/EM&gt; &lt;BR /&gt;
| dedup Job Autosysjob_time host&lt;BR /&gt;
| timechart span=5m count(Job) by  cluster&lt;/P&gt;

&lt;P&gt;You help is much appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:12:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472618#M132997</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-09-30T04:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472619#M132998</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| search Status=STARTING AND cluster= AND host="" AND Job=*
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This query can't find status change. This displays only Status=STARTING.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2020 09:33:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472619#M132998</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-16T09:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472620#M132999</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184221"&gt;@to4kawa&lt;/a&gt; thanks for the response, the following is my updated query&lt;/P&gt;

&lt;P&gt;index=infra_apps sourcetype=ca:atsys:edemon:txt&lt;BR /&gt;
| rename hostname as host&lt;BR /&gt;
| fields Job host Autosysjob_time Status&lt;BR /&gt;
| lookup datalakenodeslist.csv host OUTPUT cluster&lt;BR /&gt;
| mvexpand cluster&lt;BR /&gt;
| dedup Job Autosysjob_time host&lt;BR /&gt;
| timechart span=5m count(Status) by cluster&lt;/P&gt;

&lt;P&gt;I dont mind if you edit the query the way you want but i need to see the number of jobs running with what status by the clustert at any given point of time. And the if a job duration is 3 hours for suppose, the status of the job has to be same through out the 3 hours as RUNINNG.&lt;/P&gt;

&lt;P&gt;P S : I have to deal with only two status from this query  i.e RUNNING and STARTING&lt;/P&gt;

&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/15147"&gt;@somesoni2&lt;/a&gt; &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/1406"&gt;@woodcock&lt;/a&gt;  &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;  &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/199197"&gt;@jkat54&lt;/a&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:13:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472620#M132999</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-09-30T04:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472621#M133000</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=infra_apps sourcetype=ca:atsys:edemon:txt
| rename hostname as host
| fields Job host Autosysjob_time Status
| lookup datalakenodeslist.csv host OUTPUT cluster
| mvexpand cluster
| dedup Job Autosysjob_time host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Can you provide the result at this point?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 09:10:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472621#M133000</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-17T09:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472622#M133001</link>
      <description>&lt;P&gt;@to4kawa       its giving me reulsts with the following as fields when i add table * at the end of above query&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Autosysjob_time&lt;/STRONG&gt;  &lt;STRONG&gt;Job&lt;/STRONG&gt;  &lt;STRONG&gt;Status&lt;/STRONG&gt;  &lt;STRONG&gt;cluster&lt;/STRONG&gt;  &lt;STRONG&gt;host&lt;/STRONG&gt;   &lt;STRONG&gt;_raw&lt;/STRONG&gt;  &lt;STRONG&gt;_time&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 10:02:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472622#M133001</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-02-17T10:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472623#M133002</link>
      <description>&lt;P&gt;what's &lt;EM&gt;Autosysjob_time&lt;/EM&gt; ?&lt;BR /&gt;
&lt;CODE&gt;timechart&lt;/CODE&gt; uses _ &lt;EM&gt;time&lt;/EM&gt;.&lt;BR /&gt;
why useless field is remain?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:07:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472623#M133002</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-09-30T04:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472624#M133003</link>
      <description>&lt;P&gt;Thats when the autosys update the status in th records, we can use that as _time&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 10:46:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472624#M133003</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-02-17T10:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472625#M133004</link>
      <description>&lt;P&gt;UPDATE:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=infra_apps sourcetype=ca:atsys:edemon:txt 
| rename hostname as host 
| fields Job host Autosysjob_time Status 
| lookup datalakenodeslist.csv host OUTPUT cluster 
| mvexpand cluster 
| dedup Job Autosysjob_time host 
| table Autosysjob_time Job Status cluster host
| sort Autosysjob_time
| streamstats values(Status) as p_Status window=1 current=F  by cluster
| eval flag=if(Status!=p_Status,"change",NULL)
| streamstats count(eval(flag="change")) as session by cluster
| rename Autosysjob_time as _time
| bin _time span=5m
| stats count(Job) as job_count count(eval(status="STARTING")) as STARTING  count(eval(status="RUNNING")) as RUNNING count(eval(status="SUCCESS")) as SUCCESS by _time cluster session
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Feb 2020 13:45:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472625#M133004</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-17T13:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472626#M133005</link>
      <description>&lt;P&gt;here is the sample events FYR :&lt;/P&gt;

&lt;P&gt;[02/18/2020 10:37:27.6386] CAUAJM_I_40245 EVENT: CHANGE_STATUS    STATUS: SUCCESS         JOB: Job1&lt;BR /&gt;
Status = STARTING host = XXXX source = /opt/CA/r1  sourcetype = ca:atsys:edemon:txt &lt;/P&gt;

&lt;P&gt;[02/18/2020 10:39:27.6386] CAUAJM_I_40245 EVENT: CHANGE_STATUS    STATUS: SUCCESS         JOB: Job1&lt;BR /&gt;
Status = RUNNING  host = XXXX source = /opt/CA/r1  sourcetype = ca:atsys:edemon:txt &lt;/P&gt;

&lt;P&gt;[02/18/2020 12:37:27.6386] CAUAJM_I_40245 EVENT: CHANGE_STATUS    STATUS: SUCCESS         JOB: Job1&lt;BR /&gt;
Status = RUNNING  host = XXXX source = /opt/CA/r1  sourcetype = ca:atsys:edemon:txt &lt;/P&gt;

&lt;P&gt;the latest query i have defined is as follows&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;eventtype="sourcetype-atsys_edemon" &lt;BR /&gt;
 | rename hostname as host&lt;BR /&gt;
 | transaction Job startswith=(Status=STARTING) endswith=(Status=RUNNING)&lt;BR /&gt;
 | eval zipped= mvzip(Autosysjob_time,Status,"!!!Status=")&lt;BR /&gt;
 | fields Job host zipped&lt;BR /&gt;
 | mvexpand zipped&lt;BR /&gt;
 | rex field=zipped "^(?.&lt;EM&gt;)!!!Status=(?.&lt;/EM&gt;)"&lt;BR /&gt;
 | fields Job Autosysjob_time host  Status&lt;BR /&gt;
 | lookup datalakenodeslist.csv host OUTPUT cluster&lt;BR /&gt;
 | mvexpand cluster&lt;BR /&gt;
 | fields Autosysjob_time Job host Status cluster&lt;BR /&gt;
 | eval _time=Autosysjob_time&lt;BR /&gt;
 | search cluster=$clustername$  AND host="$host$" AND Job=$job$ AND Status=$jobstatus$&lt;BR /&gt;
 | dedup Job Autosysjob_time host&lt;BR /&gt;
 | chart count(Job) OVER _time BY cluster&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;I am not sure if this is correct query to check as this query running very slow.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:14:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472626#M133005</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-09-30T04:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472627#M133006</link>
      <description>&lt;P&gt;small correction in the sample events&lt;/P&gt;

&lt;P&gt;[02/18/2020 10:47:15.1318] CAUAJM_I_40245 EVENT: CHANGE_STATUS    STATUS: STARTING        JOB: CFDW_ADHOC_C_AIMSAS_D_INV_LNITEM_BILLING_CHGS_M  MACHINE: XXXX&lt;/P&gt;

&lt;P&gt;[02/18/2020 10:48:15.1318] CAUAJM_I_40245 EVENT: CHANGE_STATUS    STATUS: RUNNING  JOB: CFDW_ADHOC_C_AIMSAS_D_INV_LNITEM_BILLING_CHGS_M  MACHINE: XXXX&lt;/P&gt;

&lt;P&gt;[02/18/2020 11:57:15.1318] CAUAJM_I_40245 EVENT: CHANGE_STATUS    STATUS: SUCCESS  JOB: CFDW_ADHOC_C_AIMSAS_D_INV_LNITEM_BILLING_CHGS_M   MACHINE: XXXX&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:14:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472627#M133006</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-09-30T04:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472628#M133007</link>
      <description>&lt;P&gt;I am not sure &lt;CODE&gt;Autosysjob_time&lt;/CODE&gt; , but my query is like OK.&lt;BR /&gt;
what's wrong?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 20:46:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472628#M133007</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-18T20:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472629#M133008</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184221"&gt;@to4kawa&lt;/a&gt;  Autosysjob_time  is the timestamp that is available in the sample event, i see the difference in indexing time and  Autosysjob_time. Confused what to populate on the x- axis.&lt;/P&gt;

&lt;P&gt;Your query seems to be OK, but i am not able to get  how many jobs are in running or Starting state at each minute by each cluster with your query.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:14:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472629#M133008</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-09-30T04:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472630#M133009</link>
      <description>&lt;OL&gt;
&lt;LI&gt;&lt;CODE&gt;how many jobs are in running or Starting state at each minute by each cluster&lt;/CODE&gt;
is not &lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;show the of the job as it is untill its changes its status&lt;/CODE&gt;.
which do you want?&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;ans1. count state=Running and state=Starting each other.&lt;BR /&gt;
ans2. count the change like my query.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 20:59:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472630#M133009</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-19T20:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472631#M133010</link>
      <description>&lt;P&gt;You need the &lt;CODE&gt;concurrency&lt;/CODE&gt; command.  Google for examples and you will find what you need (I have provided some answer before so that may help narrow it down):&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Concurrency"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Concurrency&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 00:31:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472631#M133010</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-02-20T00:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472632#M133011</link>
      <description>&lt;P&gt;@to4kawa  I would like to combine both of them.&lt;/P&gt;

&lt;P&gt;I have an event with status=running  at 10:48 as shown in the sample event, when i do the auditing for evvery 5 minutes it should get counted in the number of running jobs untill it changes it changes its job status=success at 11:57. &lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 08:59:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472632#M133011</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-02-21T08:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472633#M133012</link>
      <description>&lt;P&gt;I'm not sure what you want to count the status.&lt;BR /&gt;
my answer is updated. please confirm.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 09:56:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472633#M133012</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-21T09:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472634#M133013</link>
      <description>&lt;P&gt;@woodcock Concurrency command looking like doesnt suit to my use case....For example i want to hold the job with running status and get it counted till it changes its next status to success when i audit it with my timechart for every 5 mins.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 14:42:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472634#M133013</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-02-21T14:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472635#M133014</link>
      <description>&lt;P&gt;Any time you use co currency, you need to do some extra work but it is the only command that can easily do what you need.  Look for answers by @woodcock and by @sideview.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 17:11:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472635#M133014</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-02-21T17:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472636#M133015</link>
      <description>&lt;P&gt;Finally, i solved my own puzzle, Thanks for everyone for spending their time here&lt;/P&gt;

&lt;P&gt;Correct Answer: &lt;BR /&gt;
index=infra_apps sourcetype=ca:atsys:edemon:txt&lt;BR /&gt;
| stats count  by _time Job Status hostname&lt;BR /&gt;
| bin span=5m _time&lt;BR /&gt;
| makecontinuous span=5m _time&lt;BR /&gt;
| filldown _time Job Status&lt;BR /&gt;
| chart count(Job) OVER _time BY cluster&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 12:08:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472636#M133015</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-02-25T12:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: wanna show the of the job as it is untill its changes its status</title>
      <link>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472637#M133016</link>
      <description>&lt;P&gt;Finally, i solved my own puzzle, Thanks to everyone for spending their time here&lt;/P&gt;

&lt;P&gt;Correct Answer: &lt;BR /&gt;
index=infra_apps sourcetype=ca:atsys:edemon:txt&lt;BR /&gt;
| stats count  by _time Job Status hostname&lt;BR /&gt;
| bin span=5m _time&lt;BR /&gt;
| makecontinuous span=5m _time&lt;BR /&gt;
| filldown _time Job Status&lt;BR /&gt;
| chart count(Job) OVER _time BY cluster&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 12:09:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/wanna-show-the-of-the-job-as-it-is-untill-its-changes-its-status/m-p/472637#M133016</guid>
      <dc:creator>pench2k19</dc:creator>
      <dc:date>2020-02-25T12:09:49Z</dc:date>
    </item>
  </channel>
</rss>

