<?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: Fetching the keywords and creating queries in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650229#M53272</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="abc*" sourcetype=600000304_gg_abs_ipc2 source="/app/abs-upstreamer/logs/abs-upstreamer.log" "finished reading file"
| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"
| eval filename="finished reading file ".filename
| table filename _time&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jul 2023 15:26:30 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2023-07-12T15:26:30Z</dc:date>
    <item>
      <title>Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650194#M53265</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Could you please guide how I can fetch the below keywords from raw logs:&lt;/P&gt;&lt;P&gt;2023-06-29 09:41:53.884 [INFO ] [pool-2-thread-1] ArchivalProcessor - finished reading file&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;/absin/TRIM.ARCH.D062923.T052525&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2023-06-28 10:36:24.064 [INFO ] [pool-2-thread-1] ArchivalProcessor - finished reading file /&amp;nbsp; &lt;STRONG&gt;absin/TRIM.ARCH.D062823.T063718&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2023-06-29 09:38:03.308 [INFO ] [pool-2-thread-1] ArchivalProcessor - Processing archival records for file &lt;STRONG&gt;TRIM.ARCH.D062923.T052525&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Can someone guide me how can I fetch from raw logs.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 14:09:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650194#M53265</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T14:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650199#M53266</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you have to use a regex like the following:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"&lt;/LI-CODE&gt;&lt;P&gt;that you can test at&amp;nbsp;&lt;A href="https://regex101.com/r/Uc21zy/1" target="_blank"&gt;https://regex101.com/r/Uc21zy/1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 14:20:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650199#M53266</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-12T14:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650201#M53267</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp; could you please provide me the complete query:&lt;/P&gt;&lt;P&gt;My current query is this:&lt;/P&gt;&lt;P&gt;index="abc*" sourcetype=600000304_gg_abs_ipc2 source="/app/abs-upstreamer/logs/abs-upstreamer.log" "finished reading file"&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 14:22:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650201#M53267</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T14:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650204#M53268</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;please try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="abc*" sourcetype=600000304_gg_abs_ipc2 source="/app/abs-upstreamer/logs/abs-upstreamer.log" "finished reading file"
| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"
| table filename&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 14:26:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650204#M53268</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-12T14:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650226#M53271</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want something like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;finished reading file /absin/TRIM.ARCH.D062923.T052525&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;2023-06-29 09:41:53.884&lt;/P&gt;&lt;P&gt;One side it should be this and other side it should be date.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp; how can we create query for this. Please guide&lt;/P&gt;&lt;P&gt;2023-06-29 09:41:53.884 [INFO ] [pool-2-thread-1] ArchivalProcessor - finished reading file /absin/TRIM.ARCH.D062923.T052525&lt;/P&gt;&lt;P&gt;Also I don't want tabular format is that possible I can create bar chart.&lt;/P&gt;&lt;P&gt;Current query:&lt;/P&gt;&lt;P&gt;index="abx*" sourcetype=600000304_gg_abs_ipc2 source="/app/abs-upstreamer/logs/abs-upstreamer.log" "finished reading file"| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:23:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650226#M53271</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T15:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650229#M53272</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="abc*" sourcetype=600000304_gg_abs_ipc2 source="/app/abs-upstreamer/logs/abs-upstreamer.log" "finished reading file"
| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"
| eval filename="finished reading file ".filename
| table filename _time&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:26:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650229#M53272</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-12T15:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650231#M53273</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I want to create in bar chart format please guide.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:32:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650231#M53273</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T15:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650235#M53274</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;let me understand: you have a string in a column and a date in another, how do you want to put them in a chart?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:36:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650235#M53274</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-12T15:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650237#M53275</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want string on bar and date down&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:38:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650237#M53275</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T15:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650238#M53276</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you want a timeline, you have to use the timeline Add-On at&amp;nbsp;&lt;A href="https://splunkbase.splunk.com/app/3120" target="_blank"&gt;https://splunkbase.splunk.com/app/3120&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There isn't any other solution.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:40:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650238#M53276</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-12T15:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650239#M53277</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just want date down and string in column or bar format.&lt;/P&gt;&lt;P&gt;Can you guide me with timechart&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:43:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650239#M53277</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T15:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650243#M53278</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried like this but not getting any result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="abc*" sourcetype=600000304_gg_abs_ipc2 source="/app/abs-upstreamer/logs/abs-upstreamer.log" "finished reading file"
| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"
| eval filename="finished reading file ".filename
|  timechart span=1d values(filename) AS filename&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 12 Jul 2023 15:57:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650243#M53278</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T15:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650252#M53280</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying this query:&lt;/P&gt;&lt;P&gt;index="abc*" sourcetype=600000304_gg_abs_ipc2 source="/amex/app/abs-upstreamer/logs/abs-upstreamer.log" "Processing archival records for file "&lt;BR /&gt;| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"&lt;BR /&gt;| eval filename="Processing archival records for file ".filename&lt;BR /&gt;| stats count by filename&lt;/P&gt;&lt;P&gt;I am able to see result like this:&lt;/P&gt;&lt;P&gt;filename&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;count&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Processing archival records for file TRIM.ARCH.D062723.T061108&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to see result like this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;filename&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Date&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Processing archival records for file TRIM.ARCH.D062723.T061108&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2023-06-27 09:29:11.022&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;please guide&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 17:05:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650252#M53280</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T17:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650255#M53281</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had tried like this:&lt;/P&gt;&lt;P&gt;index="abc*" sourcetype=600000304_gg_abs_ipc2 source="/amex/app/abs-upstreamer/logs/abs-upstreamer.log" "finished reading file"&lt;BR /&gt;| rex "file\s+(?&amp;lt;filename&amp;gt;.*)"&lt;BR /&gt;| eval filename="finished reading file ".filename&lt;BR /&gt;| stats count by filename&lt;/P&gt;&lt;P&gt;I am getting result like this:&lt;/P&gt;&lt;P&gt;filename&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; count&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;finished reading file TRIM.ARCH.D062623.T053124&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want something like this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;filename&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Date&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;finished reading fileTRIM.ARCH.D062623.T053124&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN class=""&gt;2023-06-29&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;09:41:53&lt;/SPAN&gt;.&lt;SPAN class=""&gt;884&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 17:18:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650255#M53281</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2023-07-12T17:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650325#M53290</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;as I said, in a chart you can insert a count or a value but never a string.&lt;/P&gt;&lt;P&gt;You can eventually have a timechart, but always with a value (a count or a sum) never with a string.&lt;/P&gt;&lt;P&gt;The only way to have a chart is the Timeline add-on.&lt;/P&gt;&lt;P&gt;Otherwise, you can have a table like the one you shared.&lt;/P&gt;&lt;P&gt;ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 06:26:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650325#M53290</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-13T06:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching the keywords and creating queries</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650486#M53318</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225066"&gt;@aditsss&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 06:33:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Fetching-the-keywords-and-creating-queries/m-p/650486#M53318</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-07-14T06:33:49Z</dc:date>
    </item>
  </channel>
</rss>

