<?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 Getting different result when do search query and same implement on dashboard for percentage of success to total jobs in Splunk Cloud Platform</title>
    <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659823#M2555</link>
    <description>&lt;LI-CODE lang="markup"&gt;index="jenkins_console" source="*-deploy/*" NOT (source="*/gremlin-fault-injection-deploy/*" OR source="*pipe-test*" OR source="*java-validation-*") ("Approved by" OR "*Finished:*")
| fields source
| stats count(eval(match(_raw, "Approved by"))) as count_approved,
    count(eval(match(_raw, ".*Finished:*."))) as count_finish by source
| where count_approved &amp;gt; 0 AND count_finish &amp;gt; 0
| stats dc(source) as Total
| appendcols
    [ search(index="jenkins_console" source="*-deploy/*" NOT (source="*/gremlin-fault-injection-deploy/*" OR source="*pipe-test*" OR source="*java-validation-*") ("Finished: UNSTABLE" OR "Finished: SUCCESS" OR "Approved by" OR "Automatic merge*" OR "pushed branch tip is behind its remote" OR "WARNING: E2E tests did not pass"))
    | fields source host
    | stats count(eval(match(_raw, "Approved by"))) as count_approved,
        count(eval(match(_raw, "Finished: SUCCESS"))) as count_success,
        count(eval(match(_raw, "Finished: UNSTABLE"))) as count_unstable,
        count(eval(match(_raw, "Automatic merge.*failed*."))) as count_merge_fail,
        count(eval(match(_raw, "WARNING: E2E tests did not pass"))) as count_e2e_failure,
        count(eval(match(_raw, "pushed branch tip"))) as count_branch_fail by source, host
    | where count_approved &amp;gt; 0 AND (count_success &amp;gt; 0 OR (count_unstable &amp;gt; 0 AND (count_merge_fail &amp;gt; 0 OR count_branch_fail &amp;gt; 0 OR count_e2e_failure &amp;gt; 0)))
    | stats dc(source) as success
        ]
        | stats avg(success) as S, avg(Total) as T | eval percentage=( S / T * 100)
        | fields percentage,success, Total&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 05 Oct 2023 17:31:24 GMT</pubDate>
    <dc:creator>Impavan5</dc:creator>
    <dc:date>2023-10-05T17:31:24Z</dc:date>
    <item>
      <title>Getting different result when do search query and same implement on dashboard for percentage of success to total jobs</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659823#M2555</link>
      <description>&lt;LI-CODE lang="markup"&gt;index="jenkins_console" source="*-deploy/*" NOT (source="*/gremlin-fault-injection-deploy/*" OR source="*pipe-test*" OR source="*java-validation-*") ("Approved by" OR "*Finished:*")
| fields source
| stats count(eval(match(_raw, "Approved by"))) as count_approved,
    count(eval(match(_raw, ".*Finished:*."))) as count_finish by source
| where count_approved &amp;gt; 0 AND count_finish &amp;gt; 0
| stats dc(source) as Total
| appendcols
    [ search(index="jenkins_console" source="*-deploy/*" NOT (source="*/gremlin-fault-injection-deploy/*" OR source="*pipe-test*" OR source="*java-validation-*") ("Finished: UNSTABLE" OR "Finished: SUCCESS" OR "Approved by" OR "Automatic merge*" OR "pushed branch tip is behind its remote" OR "WARNING: E2E tests did not pass"))
    | fields source host
    | stats count(eval(match(_raw, "Approved by"))) as count_approved,
        count(eval(match(_raw, "Finished: SUCCESS"))) as count_success,
        count(eval(match(_raw, "Finished: UNSTABLE"))) as count_unstable,
        count(eval(match(_raw, "Automatic merge.*failed*."))) as count_merge_fail,
        count(eval(match(_raw, "WARNING: E2E tests did not pass"))) as count_e2e_failure,
        count(eval(match(_raw, "pushed branch tip"))) as count_branch_fail by source, host
    | where count_approved &amp;gt; 0 AND (count_success &amp;gt; 0 OR (count_unstable &amp;gt; 0 AND (count_merge_fail &amp;gt; 0 OR count_branch_fail &amp;gt; 0 OR count_e2e_failure &amp;gt; 0)))
    | stats dc(source) as success
        ]
        | stats avg(success) as S, avg(Total) as T | eval percentage=( S / T * 100)
        | fields percentage,success, Total&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 05 Oct 2023 17:31:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659823#M2555</guid>
      <dc:creator>Impavan5</dc:creator>
      <dc:date>2023-10-05T17:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Getting different result when do search query and same implement on dashboard for percentage of success to total job</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659826#M2556</link>
      <description>&lt;P&gt;Please use the body of the message to ask your question.&amp;nbsp; Tell us how the search results differ when run in a dashboard.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 17:32:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659826#M2556</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-10-05T17:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Getting different result when do search query and same implement on dashboard for percentage of success to total job</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659838#M2557</link>
      <description>&lt;P&gt;when i do query for percentage of success to the total jobs it gives result 87.716 but when i see on dashboard it gives result 90&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 18:21:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659838#M2557</guid>
      <dc:creator>Impavan5</dc:creator>
      <dc:date>2023-10-05T18:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Getting different result when do search query and same implement on dashboard for percentage of success to total job</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659839#M2558</link>
      <description>&lt;P&gt;Can you pls assist with valid solution for above query.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 18:42:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659839#M2558</guid>
      <dc:creator>Impavan5</dc:creator>
      <dc:date>2023-10-05T18:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Getting different result when do search query and same implement on dashboard for percentage of success to total job</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659896#M2559</link>
      <description>&lt;P&gt;What is your time range for both searches?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2023 00:54:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659896#M2559</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-10-06T00:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Getting different result when do search query and same implement on dashboard for percentage of success to total job</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659908#M2560</link>
      <description>&lt;P&gt;time range :last onemonth&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2023 05:29:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659908#M2560</guid>
      <dc:creator>Impavan5</dc:creator>
      <dc:date>2023-10-06T05:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Getting different result when do search query and same implement on dashboard for percentage of success to total job</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659921#M2561</link>
      <description>&lt;P&gt;Hi ,&lt;BR /&gt;issue fixed , time range i was taken static instead of default.&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2023 06:56:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Getting-different-result-when-do-search-query-and-same-implement/m-p/659921#M2561</guid>
      <dc:creator>Impavan5</dc:creator>
      <dc:date>2023-10-06T06:56:10Z</dc:date>
    </item>
  </channel>
</rss>

