<?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 Data manipulation. Is this feasible ? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Data-manipulation-Is-this-feasible/m-p/484405#M135580</link>
    <description>&lt;P&gt;Let's say I have a CSV with 2 columns&lt;BR /&gt;
So I have transactions count per day mentioned against the date..&lt;BR /&gt;
Now I want to show graph where i can show on which date OR how many days it took to reach  1 million ,2 million,3 million .. so on . ..&lt;BR /&gt;
Feasible ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Date Count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 13 Nov 2019 06:19:01 GMT</pubDate>
    <dc:creator>reverse</dc:creator>
    <dc:date>2019-11-13T06:19:01Z</dc:date>
    <item>
      <title>Data manipulation. Is this feasible ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Data-manipulation-Is-this-feasible/m-p/484405#M135580</link>
      <description>&lt;P&gt;Let's say I have a CSV with 2 columns&lt;BR /&gt;
So I have transactions count per day mentioned against the date..&lt;BR /&gt;
Now I want to show graph where i can show on which date OR how many days it took to reach  1 million ,2 million,3 million .. so on . ..&lt;BR /&gt;
Feasible ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Date Count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Nov 2019 06:19:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Data-manipulation-Is-this-feasible/m-p/484405#M135580</guid>
      <dc:creator>reverse</dc:creator>
      <dc:date>2019-11-13T06:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Data manipulation. Is this feasible ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Data-manipulation-Is-this-feasible/m-p/484406#M135581</link>
      <description>&lt;P&gt;Hi @reverse,&lt;BR /&gt;
let me understand:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;you have a lookup that contains rows with two fields: date and count,&lt;/LI&gt;
&lt;LI&gt;you want a graph with on x the dates and on Y the values,&lt;/LI&gt;
&lt;LI&gt;then you want to compare these values with some limits (e.g. limit1=1M and limit2=2M);&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;is this correct?&lt;/P&gt;

&lt;P&gt;If this is your need you could run a search like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup your_lookup.csv
| chart values(count) AS count BY date
| eval limit1=1000000, limit2=2000000
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and use it in a dashboard's panel like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;test_overlay_2&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
               | inputlookup your_lookup.csv
               | chart values(count) AS count BY date
               | eval limit1=1000000, limit2=2000000
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.overflowMode"&amp;gt;ellipsisNone&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisLabelsX.majorLabelStyle.rotation"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleX.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisTitleY2.visibility"&amp;gt;visible&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisX.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY.scale"&amp;gt;linear&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.abbreviation"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.axisY2.scale"&amp;gt;inherit&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;column&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMaximumSize"&amp;gt;50&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleMinimumSize"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.bubbleSizeBy"&amp;gt;area&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.nullValueMode"&amp;gt;gaps&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.overlayFields"&amp;gt;limit1,limit2&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.showDataLabels"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.sliceCollapsingThreshold"&amp;gt;0.01&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.stackMode"&amp;gt;default&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.chart.style"&amp;gt;shiny&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.layout.splitSeries.allowIndependentYRanges"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.labelStyle.overflowMode"&amp;gt;ellipsisMiddle&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.mode"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.legend.placement"&amp;gt;right&amp;lt;/option&amp;gt;
        &amp;lt;option name="charting.lineWidth"&amp;gt;2&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&amp;lt;/option&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 09:09:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Data-manipulation-Is-this-feasible/m-p/484406#M135581</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-11-13T09:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data manipulation. Is this feasible ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Data-manipulation-Is-this-feasible/m-p/484407#M135582</link>
      <description>&lt;P&gt;I have below CSV ..&lt;/P&gt;

&lt;P&gt;I want to identify how many days it took to reach 1st million .. 2nd million .. so on ..&lt;/P&gt;

&lt;P&gt;Date  Transactions Net Count&lt;BR /&gt;
    5/1/2019    0&lt;BR /&gt;
5/2/2019    0&lt;BR /&gt;
5/3/2019    0&lt;BR /&gt;
5/4/2019    0&lt;BR /&gt;
5/5/2019    0&lt;BR /&gt;
5/6/2019    0&lt;BR /&gt;
5/7/2019    0&lt;BR /&gt;
5/8/2019    136&lt;BR /&gt;
5/9/2019    62344&lt;BR /&gt;
5/10/2019   118776&lt;BR /&gt;
5/11/2019   119394&lt;BR /&gt;
5/12/2019   124998&lt;BR /&gt;
5/13/2019   255242&lt;BR /&gt;
5/14/2019   407902&lt;BR /&gt;
5/15/2019   545374&lt;BR /&gt;
5/16/2019   693342&lt;BR /&gt;
5/17/2019   823672&lt;BR /&gt;
5/18/2019   824987&lt;BR /&gt;
5/19/2019   825994&lt;BR /&gt;
5/20/2019   963299&lt;BR /&gt;
5/21/2019   1128368&lt;BR /&gt;
5/22/2019   1273399&lt;BR /&gt;
5/23/2019   1409096&lt;BR /&gt;
5/24/2019   1548648&lt;BR /&gt;
5/25/2019   1549038&lt;BR /&gt;
5/26/2019   1549241&lt;BR /&gt;
5/27/2019   1549437&lt;BR /&gt;
5/28/2019   1703438&lt;BR /&gt;
5/29/2019   1863571&lt;BR /&gt;
5/30/2019   2023886&lt;BR /&gt;
5/31/2019   2169741&lt;BR /&gt;
6/1/2019    2171281&lt;BR /&gt;
6/2/2019    2172752&lt;BR /&gt;
6/3/2019    2357376&lt;BR /&gt;
6/4/2019    2549456&lt;BR /&gt;
6/5/2019    2748790&lt;BR /&gt;
6/6/2019    2925480&lt;BR /&gt;
6/7/2019    3094447&lt;BR /&gt;
6/8/2019    3094937&lt;BR /&gt;
6/9/2019    3096621&lt;BR /&gt;
6/10/2019   3302982&lt;BR /&gt;
6/11/2019   3530454&lt;BR /&gt;
6/12/2019   3743284&lt;BR /&gt;
6/13/2019   3957966&lt;BR /&gt;
6/14/2019   4134705&lt;BR /&gt;
6/15/2019   4135043&lt;BR /&gt;
6/16/2019   4138509&lt;BR /&gt;
6/17/2019   4356140&lt;BR /&gt;
6/18/2019   4581721&lt;BR /&gt;
6/19/2019   4807367&lt;BR /&gt;
6/20/2019   5028887&lt;BR /&gt;
6/21/2019   5250289&lt;BR /&gt;
6/22/2019   5252730&lt;BR /&gt;
6/23/2019   5265504&lt;BR /&gt;
6/24/2019   5542090&lt;BR /&gt;
6/25/2019   5801049&lt;BR /&gt;
6/26/2019   6087436&lt;BR /&gt;
6/27/2019   6341174&lt;BR /&gt;
6/28/2019   6584475&lt;BR /&gt;
6/29/2019   6584590&lt;BR /&gt;
6/30/2019   6584640&lt;BR /&gt;
7/1/2019    6720785&lt;BR /&gt;
7/2/2019    6855255&lt;BR /&gt;
7/3/2019    7116670&lt;BR /&gt;
7/4/2019    7121355&lt;BR /&gt;
7/5/2019    7362331&lt;BR /&gt;
7/6/2019    7364580&lt;BR /&gt;
7/7/2019    7365988&lt;BR /&gt;
7/8/2019    7636042&lt;BR /&gt;
7/9/2019    7920961&lt;BR /&gt;
7/10/2019   8203068&lt;BR /&gt;
7/11/2019   8485787&lt;BR /&gt;
7/12/2019   8727653&lt;BR /&gt;
7/13/2019   8792477&lt;BR /&gt;
7/14/2019   8795300&lt;BR /&gt;
7/15/2019   9087292&lt;BR /&gt;
7/16/2019   9375926&lt;BR /&gt;
7/17/2019   9662508&lt;BR /&gt;
7/18/2019   9952211&lt;BR /&gt;
7/19/2019   10212747&lt;BR /&gt;
7/20/2019   10212864&lt;BR /&gt;
7/21/2019   10216125&lt;BR /&gt;
7/22/2019   10518348&lt;BR /&gt;
7/23/2019   10835836&lt;BR /&gt;
7/24/2019   11158939&lt;BR /&gt;
7/25/2019   11465130&lt;BR /&gt;
7/26/2019   11740613&lt;BR /&gt;
7/27/2019   11741652&lt;BR /&gt;
7/28/2019   11744143&lt;BR /&gt;
7/29/2019   12051891&lt;BR /&gt;
7/30/2019   12369031&lt;BR /&gt;
7/31/2019   12668196&lt;BR /&gt;
8/1/2019    12977702&lt;BR /&gt;
8/2/2019    13265981&lt;BR /&gt;
8/3/2019    13351765&lt;BR /&gt;
8/4/2019    13355804&lt;BR /&gt;
8/5/2019    13677489&lt;BR /&gt;
8/6/2019    14019882&lt;BR /&gt;
8/7/2019    14332307&lt;BR /&gt;
8/8/2019    14648741&lt;BR /&gt;
8/9/2019    14949548&lt;BR /&gt;
8/10/2019   14975147&lt;BR /&gt;
8/11/2019   14979884&lt;BR /&gt;
8/12/2019   15317020&lt;BR /&gt;
8/13/2019   15653665&lt;BR /&gt;
8/14/2019   15959909&lt;BR /&gt;
8/15/2019   16286073&lt;BR /&gt;
8/16/2019   16586463&lt;BR /&gt;
8/17/2019   16588907&lt;BR /&gt;
8/18/2019   16595103&lt;BR /&gt;
8/19/2019   16942456&lt;BR /&gt;
8/20/2019   17278620&lt;BR /&gt;
8/21/2019   17615380&lt;BR /&gt;
8/22/2019   18022197&lt;BR /&gt;
8/23/2019   18346390&lt;BR /&gt;
8/24/2019   18352398&lt;BR /&gt;
8/25/2019   18355892&lt;BR /&gt;
8/26/2019   18721763&lt;BR /&gt;
8/27/2019   19090736&lt;BR /&gt;
8/28/2019   19454931&lt;BR /&gt;
8/29/2019   19808846&lt;BR /&gt;
8/30/2019   20110190&lt;BR /&gt;
8/31/2019   20110193&lt;BR /&gt;
9/1/2019    20111165&lt;BR /&gt;
9/2/2019    20147008&lt;BR /&gt;
9/3/2019    20492737&lt;BR /&gt;
9/4/2019    20819653&lt;BR /&gt;
9/5/2019    21157604&lt;BR /&gt;
9/6/2019    21496360&lt;BR /&gt;
9/7/2019    21496364&lt;BR /&gt;
9/8/2019    21502498&lt;BR /&gt;
9/9/2019    21866897&lt;BR /&gt;
9/10/2019   22233207&lt;BR /&gt;
9/11/2019   22561647&lt;BR /&gt;
9/12/2019   22900983&lt;BR /&gt;
9/13/2019   23210343&lt;BR /&gt;
9/14/2019   23227905&lt;BR /&gt;
9/15/2019   23231311&lt;BR /&gt;
9/16/2019   23598761&lt;BR /&gt;
9/17/2019   23953395&lt;BR /&gt;
9/18/2019   24279978&lt;BR /&gt;
9/19/2019   24670278&lt;BR /&gt;
9/20/2019   24968218&lt;BR /&gt;
9/21/2019   25002016&lt;BR /&gt;
9/22/2019   25002233&lt;BR /&gt;
9/23/2019   25362739&lt;BR /&gt;
9/24/2019   25557055&lt;BR /&gt;
9/25/2019   25909864&lt;BR /&gt;
9/26/2019   26253312&lt;BR /&gt;
9/27/2019   26551231&lt;BR /&gt;
9/28/2019   26551261&lt;BR /&gt;
9/29/2019   26551477&lt;BR /&gt;
9/30/2019   26951729&lt;BR /&gt;
10/1/2019   27409916&lt;BR /&gt;
10/2/2019   27831962&lt;BR /&gt;
10/3/2019   28257589&lt;BR /&gt;
10/4/2019   28665147&lt;BR /&gt;
10/5/2019   28665371&lt;BR /&gt;
10/6/2019   28665585&lt;BR /&gt;
10/7/2019   29150528&lt;BR /&gt;
10/8/2019   29628877&lt;BR /&gt;
10/9/2019   30086053&lt;BR /&gt;
10/10/2019  30535860&lt;BR /&gt;
10/11/2019  30937292&lt;BR /&gt;
10/12/2019  31027756&lt;BR /&gt;
10/13/2019  31027953&lt;BR /&gt;
10/14/2019  31244053&lt;BR /&gt;
10/15/2019  31707531&lt;BR /&gt;
10/16/2019  32210767&lt;BR /&gt;
10/17/2019  32698435&lt;BR /&gt;
10/18/2019  33152677&lt;BR /&gt;
10/19/2019  33167537&lt;BR /&gt;
10/20/2019  33168426&lt;BR /&gt;
10/21/2019  33689438&lt;BR /&gt;
10/22/2019  34237851&lt;BR /&gt;
10/23/2019  34806248&lt;BR /&gt;
10/24/2019  35459885&lt;BR /&gt;
10/25/2019  36047463&lt;BR /&gt;
10/26/2019  36201224&lt;BR /&gt;
10/27/2019  36201975&lt;BR /&gt;
10/28/2019  36823376&lt;BR /&gt;
10/29/2019  37464217&lt;BR /&gt;
10/30/2019  38088407&lt;BR /&gt;
10/31/2019  38688976&lt;BR /&gt;
11/1/2019   39262023&lt;BR /&gt;
11/2/2019   39262122&lt;BR /&gt;
11/2/2019   39262221&lt;BR /&gt;
11/3/2019   39263013&lt;BR /&gt;
11/4/2019   39888012&lt;BR /&gt;
11/5/2019   40086915&lt;BR /&gt;
11/6/2019   40712066&lt;BR /&gt;
11/7/2019   41361170&lt;BR /&gt;
11/8/2019   41966551&lt;BR /&gt;
11/9/2019   42061220&lt;BR /&gt;
11/10/2019  42062234&lt;BR /&gt;
11/11/2019  42303351&lt;BR /&gt;
11/12/2019  42937628&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 14:39:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Data-manipulation-Is-this-feasible/m-p/484407#M135582</guid>
      <dc:creator>reverse</dc:creator>
      <dc:date>2019-11-13T14:39:36Z</dc:date>
    </item>
  </channel>
</rss>

