<?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: Please advise on Licensing: Workload/Usage based Vs. Daily ingest which is better &amp;amp; why ? Thank u a million in Splunk Enterprise</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise/Please-advise-on-Licensing-Workload-Usage-based-Vs-Daily-ingest/m-p/574309#M10650</link>
    <description>&lt;P&gt;We don't have nearly enough information about how you use Splunk to answer that question.&amp;nbsp; Contact your account team.&amp;nbsp; They will mutter some incantations and come up with an answer for you.&amp;nbsp; There is no SPL you can run that give you the answer.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Nov 2021 00:56:43 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2021-11-10T00:56:43Z</dc:date>
    <item>
      <title>Please advise on Licensing: Workload/Usage based Vs. Daily ingest which is better &amp; why ? Thank u a million</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Please-advise-on-Licensing-Workload-Usage-based-Vs-Daily-ingest/m-p/574300#M10648</link>
      <description>&lt;P&gt;Which is beneficial ? Workload / Usage based licensing vs. daily ingest? Any useful SPLs would help a lot. Thax very much in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 22:35:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Please-advise-on-Licensing-Workload-Usage-based-Vs-Daily-ingest/m-p/574300#M10648</guid>
      <dc:creator>SamHTexas</dc:creator>
      <dc:date>2021-11-09T22:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Please advise on Licensing: Workload/Usage based Vs. Daily ingest which is better &amp; why ? Thank u a million</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Please-advise-on-Licensing-Workload-Usage-based-Vs-Daily-ingest/m-p/574309#M10650</link>
      <description>&lt;P&gt;We don't have nearly enough information about how you use Splunk to answer that question.&amp;nbsp; Contact your account team.&amp;nbsp; They will mutter some incantations and come up with an answer for you.&amp;nbsp; There is no SPL you can run that give you the answer.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 00:56:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Please-advise-on-Licensing-Workload-Usage-based-Vs-Daily-ingest/m-p/574309#M10650</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-11-10T00:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: Please advise on Licensing: Workload/Usage based Vs. Daily ingest which is better &amp; why ? Thank u a million</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise/Please-advise-on-Licensing-Workload-Usage-based-Vs-Daily-ingest/m-p/574444#M10666</link>
      <description>&lt;P&gt;I appreciate your reply &amp;amp; might be asking too much. I have used the following in the past in my new environment it returns an error, "in the search expression you must provide a macro expression" that I can not fix, I did try ! When free please advise &amp;amp; Thx again&lt;/P&gt;&lt;P&gt;index=_introspection earliest=-30d component=Hostwide&lt;/P&gt;&lt;P&gt;[|inputlookup dmc_assets&lt;/P&gt;&lt;P&gt;&amp;nbsp;| table serverName as host, search_group&lt;/P&gt;&lt;P&gt;&amp;nbsp;| search search_group=*dmc_group_index* OR search_group=*dmc_group_search_head*&lt;/P&gt;&lt;P&gt;&amp;nbsp;| table host ]&lt;/P&gt;&lt;P&gt;&amp;nbsp;| eval cpu_util = ('data.cpu_user_pct' + 'data.cpu_system_pct')&lt;/P&gt;&lt;P&gt;| bin _time span=5m&lt;/P&gt;&lt;P&gt;| table _time host data.cpu_count data.virtual_cpu_count data.cpu_idle_pct data.cpu_idle_pct cpu_util&lt;/P&gt;&lt;P&gt;```5-min Roll-Up```&lt;/P&gt;&lt;P&gt;| stats max(data.cpu_count) AS physical_cores, max(data.virtual_cpu_count) AS numberOfVirtualCores,&lt;/P&gt;&lt;P&gt;max(cpu_util) as CPU_util_pct_max&lt;/P&gt;&lt;P&gt;by _time host&lt;/P&gt;&lt;P&gt;| eval max_5minCPUsUsed = CPU_util_pct_max*numberOfVirtualCores/100&lt;/P&gt;&lt;P&gt;| stats values(host) as host_list dc(host) as total_hosts sum(physical_cores) as physical_cores sum(numberOfVirtualCores) as numberOfVirtualCores&lt;/P&gt;&lt;P&gt;sum(max_5minCPUsUsed) as max_5minCPUsUsed&lt;/P&gt;&lt;P&gt;by _time&lt;/P&gt;&lt;P&gt;```24h Roll-Up```&lt;/P&gt;&lt;P&gt;| bin _time span=1d&lt;/P&gt;&lt;P&gt;| stats values(host_list) as host_list max(total_hosts) as total_hosts max(physical_cores) as physical_cores max(numberOfVirtualCores) as numberOfVirtualCores&lt;/P&gt;&lt;P&gt;p90(max_5minCPUsUsed) as p90Daily_5minMax_CPUsUsed&lt;/P&gt;&lt;P&gt;by _time&lt;/P&gt;&lt;P&gt;```Month Roll-Up```&lt;/P&gt;&lt;P&gt;| appendpipe [&lt;/P&gt;&lt;P&gt;| stats max(total_hosts) as total_hosts, max(physical_cores) as physical_cores, max(numberOfVirtualCores) as numberOfVirtualCores,&lt;/P&gt;&lt;P&gt;p90(p90Daily_5minMax_CPUsUsed) as p90Daily_5minMax_CPUsUsed&lt;/P&gt;&lt;P&gt;| eval _time="90th Perc. across report duration (equivalent to 3 days out of 30)"]&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 16:27:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise/Please-advise-on-Licensing-Workload-Usage-based-Vs-Daily-ingest/m-p/574444#M10666</guid>
      <dc:creator>SamHTexas</dc:creator>
      <dc:date>2021-11-10T16:27:11Z</dc:date>
    </item>
  </channel>
</rss>

