<?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 Time value shenanigans in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/Time-value-shenanigans/m-p/548859#M8973</link>
    <description>&lt;P&gt;When I run this filter, I want splunk to give me a count per day based on the Month, day, and year of value&amp;nbsp; sys_created_on instead of any ticket that may have been touched that day, but created on another day. What am I doing wrong!?&amp;nbsp; I'm teaching myself and have at least made it this far.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I just want to get a count per day for the&amp;nbsp;sys_created_on value. I tell it to give me per day values in the time picker and it give me incidents that were not created on that day.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SEARCH
| dedup dv_number
| table sys_created_on dv_number dv_u_username_id assignment_group_name dv_assigned_to dv_u_workstation_ci dv_cmdb_ci dv_u_location_1 description dv_close_notes u_last_3_worknotes dv_close_notes
| rename sys_created_on AS "Created On", dv_number AS "Incident Number", dv_u_username_id AS "Username", assignment_group_name AS "Assignment Group", dv_assigned_to AS "Assigned to", dv_u_workstation_ci AS "Workstation ID", dv_cmdb_ci AS "CI" dv_u_location_1 AS "Location", description AS "Description", dv_close_notes AS "Closing Notes", u_last_3_worknotes AS "Last 3 Work Notes", dv_close_notes AS "Closing Notes"
| sort by "Incident Number" desc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Apr 2021 20:18:00 GMT</pubDate>
    <dc:creator>elloyd4</dc:creator>
    <dc:date>2021-04-21T20:18:00Z</dc:date>
    <item>
      <title>Time value shenanigans</title>
      <link>https://community.splunk.com/t5/Reporting/Time-value-shenanigans/m-p/548859#M8973</link>
      <description>&lt;P&gt;When I run this filter, I want splunk to give me a count per day based on the Month, day, and year of value&amp;nbsp; sys_created_on instead of any ticket that may have been touched that day, but created on another day. What am I doing wrong!?&amp;nbsp; I'm teaching myself and have at least made it this far.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I just want to get a count per day for the&amp;nbsp;sys_created_on value. I tell it to give me per day values in the time picker and it give me incidents that were not created on that day.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SEARCH
| dedup dv_number
| table sys_created_on dv_number dv_u_username_id assignment_group_name dv_assigned_to dv_u_workstation_ci dv_cmdb_ci dv_u_location_1 description dv_close_notes u_last_3_worknotes dv_close_notes
| rename sys_created_on AS "Created On", dv_number AS "Incident Number", dv_u_username_id AS "Username", assignment_group_name AS "Assignment Group", dv_assigned_to AS "Assigned to", dv_u_workstation_ci AS "Workstation ID", dv_cmdb_ci AS "CI" dv_u_location_1 AS "Location", description AS "Description", dv_close_notes AS "Closing Notes", u_last_3_worknotes AS "Last 3 Work Notes", dv_close_notes AS "Closing Notes"
| sort by "Incident Number" desc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 20:18:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Time-value-shenanigans/m-p/548859#M8973</guid>
      <dc:creator>elloyd4</dc:creator>
      <dc:date>2021-04-21T20:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Time value shenanigans</title>
      <link>https://community.splunk.com/t5/Reporting/Time-value-shenanigans/m-p/548861#M8974</link>
      <description>&lt;P&gt;The time picker looks only at the _time field, not sys_created_on or any other.&amp;nbsp; Any filtering on other time fields has to be done manually.&amp;nbsp; If sys_created_on is in epoch (integer) form then this may help.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SEARCH
| dedup dv_number
| addinfo
| where (sys_created_on &amp;gt;= info_min_time AND sys_created_on &amp;lt;= info_max_time
| table sys_created_on dv_number dv_u_username_id assignment_group_name dv_assigned_to dv_u_workstation_ci dv_cmdb_ci dv_u_location_1 description dv_close_notes u_last_3_worknotes dv_close_notes
| rename sys_created_on AS "Created On", dv_number AS "Incident Number", dv_u_username_id AS "Username", assignment_group_name AS "Assignment Group", dv_assigned_to AS "Assigned to", dv_u_workstation_ci AS "Workstation ID", dv_cmdb_ci AS "CI" dv_u_location_1 AS "Location", description AS "Description", dv_close_notes AS "Closing Notes", u_last_3_worknotes AS "Last 3 Work Notes", dv_close_notes AS "Closing Notes"
| sort by "Incident Number" desc&lt;/LI-CODE&gt;&lt;P&gt;If sys_created_on is a text field ("04/21/2021", for example) then it must be converted to an integer using the &lt;FONT face="courier new,courier"&gt;strptime&lt;/FONT&gt; function.&amp;nbsp; That's left as a exercise for the reader.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 20:33:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Time-value-shenanigans/m-p/548861#M8974</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-04-21T20:33:12Z</dc:date>
    </item>
  </channel>
</rss>

