<?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: How to utilize wildcards in time fields in lookup file in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616248#M214181</link>
    <description>&lt;P&gt;I appreciate that insight, I had not heard of the cron format and I think that's going to make this schedule a lot easier to work with. If I'm understanding correctly, I will try to convert the scheduled and late time columns to a cron format, then translate back to a readable format when displaying in a table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll do more research into this, but I appreciate you!&lt;/P&gt;</description>
    <pubDate>Fri, 07 Oct 2022 00:14:22 GMT</pubDate>
    <dc:creator>TBH0</dc:creator>
    <dc:date>2022-10-07T00:14:22Z</dc:date>
    <item>
      <title>How to utilize wildcards in time fields in lookup file?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616044#M214081</link>
      <description>&lt;P&gt;I have a lookup which has a field with time values (in 24 hr time; i.e. 00:30, 13:45, 23:15), which tells my dashboard the scheduled start time of jobs. I have a number of jobs which are set to run hourly, and as such need to have every hour as their start time (XX:00). I've tried adding wildcard functionality to the desired fields in the lookup definition like this:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;WILDCARD(Field_Name_1),WILDCARD(Field_Name_2)&lt;BR /&gt;&lt;BR /&gt;This has unfortunately not worked as I'd hoped, though, and it does not allow the wildcards to be every number when searching for all jobs which are set to run this hour.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any ideas on how I can best implement this within the lookup?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 16:20:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616044#M214081</guid>
      <dc:creator>TBH0</dc:creator>
      <dc:date>2022-10-06T16:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to utilize wildcards in time fields in lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616066#M214088</link>
      <description>&lt;P&gt;I cannot quite understand the use case. &amp;nbsp;Can you elaborate? &amp;nbsp;I can see that &lt;EM&gt;one&lt;/EM&gt; field in lookup has the HH:MM format. (Let's call it start_time.) &amp;nbsp;What is the data like for the jobs? &amp;nbsp;Is the requirement to match those jobs' actual _time with that start_time field, but only match to the hour?&lt;/P&gt;&lt;P&gt;If this is the requirement, wildcard may not be the best solution. &amp;nbsp;Do you have flexibility in the lookup's design? &amp;nbsp;For example, can the start_time field be split into two fields, start_hour, start_minute? &amp;nbsp;If so, all you need to do is to lookup start_hour, like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval job_hour = strftime(_time, "%H")
| lookup mylookup start_hour AS job_hour&lt;/LI-CODE&gt;&lt;P&gt;That will be the easiest in my opinion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 22:37:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616066#M214088</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-10-05T22:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to utilize wildcards in time fields in lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616070#M214089</link>
      <description>&lt;P&gt;Sorry for the confusion, in this query I am only looking at the lookup file to read out details about a schedule onto the dashboard. The difficulty I have is that the schedule contains jobs with irregular schedules (hourly, weekly, biweekly, monthly, etc.) and those are a bit more difficult to show in a 'scheduled to run today' panel on a dashboard as they aren't just 'XX:XX' daily. So for the ones which are every hour, I need a way to present those to Splunk in such a way that shows the jobs in every hour regardless of which timeframe I select.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 23:25:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616070#M214089</guid>
      <dc:creator>TBH0</dc:creator>
      <dc:date>2022-10-05T23:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to utilize wildcards in time fields in lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616072#M214090</link>
      <description>&lt;P&gt;Things are simpler if match is not involved. &amp;nbsp;Even so, an illustration of the lookup data would help others. &amp;nbsp;And I still think HH:MM may not be the best representation, especially because your actual schedule runs mixed intervals. &amp;nbsp;Let me first demonstrate a quick solution with HH:MM. &amp;nbsp;As I supposed, we'll call this field start_time, and assume that another field is called job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup dailyschedule
| rex field=start_time "(?&amp;lt;job_hour&amp;gt;[^:]+):(?&amp;lt;job_minute&amp;gt;[^:]+)"
| eval hod = mvrange(0,24)
| eval hod = mvmap(hod, if(hod &amp;lt; 10, "0".hod, hod))
| mvexpand hod
| eval job = if(job_hour == hod, job, null())
| stats values(job) as jobs by hod&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This gives you something like&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;hod&lt;/TD&gt;&lt;TD&gt;jobs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;05&lt;/TD&gt;&lt;TD&gt;&lt;DIV class=""&gt;job1&lt;/DIV&gt;&lt;DIV class=""&gt;job3&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;07&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;08&lt;/TD&gt;&lt;TD&gt;job2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;09&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;22&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Is this what you expect?&lt;/P&gt;&lt;P&gt;Now, suppose your mixed schedule is represented in a crontab format, like&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;minute&lt;/TD&gt;&lt;TD&gt;hour&lt;/TD&gt;&lt;TD&gt;dom&lt;/TD&gt;&lt;TD&gt;month&lt;/TD&gt;&lt;TD&gt;dow&lt;/TD&gt;&lt;TD&gt;job&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;05&lt;/TD&gt;&lt;TD&gt;08&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;job1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;job2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;job3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;45&lt;/TD&gt;&lt;TD&gt;00&lt;/TD&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;3,6,9,12&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;job5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;job6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;job7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00&lt;/TD&gt;&lt;TD&gt;00&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;job8&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Then, you can display all jobs in a given hour no matter its interval. &amp;nbsp;For simplicity, say you still want to only display the daily jobs, you can do&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup samplecron
| where dow=="*" AND dom=="*" AND month=="*"
| fields hour job
| eval hod = mvrange(0,24)
| eval hod = mvmap(hod, if(hod &amp;lt; 10, "0".hod, hod))
| mvexpand hod
| eval job = if(hour == "*" OR hour == hod, job, null())
| stats values(job) as jobs by hod&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output will be similar, but will also include hourly job4, like&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;hod&lt;/TD&gt;&lt;TD&gt;jobs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;00&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;05&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;06&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;07&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;08&lt;/TD&gt;&lt;TD&gt;&lt;DIV class=""&gt;job1&lt;/DIV&gt;&lt;DIV class=""&gt;job4&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;09&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;&lt;DIV class=""&gt;job2&lt;/DIV&gt;&lt;DIV class=""&gt;job4&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;&lt;DIV class=""&gt;job3&lt;/DIV&gt;&lt;DIV class=""&gt;job4&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;&lt;DIV class=""&gt;job4&lt;/DIV&gt;&lt;DIV class=""&gt;job7&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;22&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;job4&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 00:52:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616072#M214090</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-10-06T00:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to utilize wildcards in time fields in lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616191#M214159</link>
      <description>&lt;P&gt;The cron format is something I had not known about, but may be the more efficient way of doing what I'm doing. The Job and Start_Time columns are essentially as you have it, just with supporting details about the job which is also shown in the dashboard (and is also joined to an alert subsearch for certain panels).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way I am utilizing this currently is actually even simpler than you had predicted: I'm just comparing the current time (or time range selected) to the HH:MM presented in the lookup, then showing all jobs which are &amp;lt;current time, &amp;gt;selected time, so it's been a fairly simplistic approach to it overall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't have any experience with making anything in the cron format, but would this support having multiple jobs in the same time slot? How would you handle that as far as a .csv goes, just multiple rows with the same cron values and different job names?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 15:02:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616191#M214159</guid>
      <dc:creator>TBH0</dc:creator>
      <dc:date>2022-10-06T15:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to utilize wildcards in time fields in lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616200#M214164</link>
      <description>&lt;P&gt;Indeed if you only compare with the current hour, it's hugely simpler,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup dailyschedule
| where strftime(now(), "%H") == mvindex(split(start_time, ":"), 0)&lt;/LI-CODE&gt;&lt;P&gt;Crontab format is very flexible. &amp;nbsp;Yes, you can have two jobs at the same time. &amp;nbsp;For statistical purposes, it is easier if job names are different, but cron jobs do not even require that.&lt;/P&gt;&lt;P&gt;Remember it is just one possible representation. &amp;nbsp;If you have a different method to represent mixed schedule, &amp;nbsp;you can still use SPL to "translate" it for display. &amp;nbsp;If the task is to perform a match in search, on the other hand, certain representations could be easier than others.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 16:39:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616200#M214164</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-10-06T16:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to utilize wildcards in time fields in lookup file</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616248#M214181</link>
      <description>&lt;P&gt;I appreciate that insight, I had not heard of the cron format and I think that's going to make this schedule a lot easier to work with. If I'm understanding correctly, I will try to convert the scheduled and late time columns to a cron format, then translate back to a readable format when displaying in a table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll do more research into this, but I appreciate you!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 00:14:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-utilize-wildcards-in-time-fields-in-lookup-file/m-p/616248#M214181</guid>
      <dc:creator>TBH0</dc:creator>
      <dc:date>2022-10-07T00:14:22Z</dc:date>
    </item>
  </channel>
</rss>

