﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>LogViewPlus Support » LogViewPlus Support » Configuration &amp; Customization  » Multiple timestamp fields in a log</title><generator>InstantForum 2017-1 Final</generator><description>LogViewPlus Support</description><link>https://www.logviewplus.com/forum/</link><webMaster>LogViewPlus Support</webMaster><lastBuildDate>Sat, 09 May 2026 02:21:39 GMT</lastBuildDate><ttl>20</ttl><item><title>Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1757</link><description>Hello, I have time stamps in my log file.&amp;nbsp; The first parses correctly and displays correctly.&amp;nbsp; The second and third are omitted.&amp;nbsp; They are set up in the parser wizard but only as "timestamp" and are dropped in the log view.&amp;nbsp; Is there a way to include them and/or also name these fields (start time/end time etc)</description><pubDate>Thu, 11 May 2023 18:45:08 GMT</pubDate><dc:creator>dicetube</dc:creator></item><item><title>RE: Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1764</link><description>Glad that helped!&amp;nbsp;&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Unfortunately, there is no way to format the additional dates.&amp;nbsp; Currently, LVP will just treat them as strings for sorting and data analysis purposes.</description><pubDate>Thu, 11 May 2023 18:45:08 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1763</link><description>Got it, so no way to format that as a human readable date.&amp;nbsp; It's easy enough to read though.&amp;nbsp; Just have to use eye parsers.&lt;br/&gt;&lt;br/&gt;That worked as you indicated.&amp;nbsp; Thanks for the \t, that helped a lot as well!&amp;nbsp; </description><pubDate>Thu, 11 May 2023 18:39:34 GMT</pubDate><dc:creator>dicetube</dc:creator></item><item><title>RE: Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1761</link><description>I am getting a good parse of your sample log file with that configuration.  &lt;br/&gt;&lt;br/&gt;&lt;img src="../Uploads/Images/853355dc-a745-469f-8f9b-fcdb.png" data-download-url="../Uploads/Images/7d28307e-301a-4264-bc41-b0c1.png" id="if_insertedNode_1683828770920"&gt;&lt;br/&gt;&lt;br/&gt;I did change your configuration to use \t instead of tabs.&amp;nbsp; This might make it a bit easer to read:&lt;br/&gt;&lt;br/&gt;[code]%S{Sequence}\t%d{yyyyMMddTHHmmss.fffzzz}\t%p\t%S{Hostname}\t%S{Logger}\t%S{Thread}\t%S{Id}\t%S{ServiceUser}\t%S{Message}\t%S{Exception}\t%S{StackTrace}\t%S{ProxySessionId}\t%S{TaskId}\t%S{TaskName}\t%S{AppId}\t%S{AppName}\t%S{ExecutionId}\t%S{ExecutingNodeId}\t%S{ExecutingNodeName}\t%S{Status}\t%d{yyyyMMddTHHmmss.fffzzz}\t%d{yyyyMMddTHHmmss.fffzzz}\t%S{Duration}\t%S{FailureReason}\t%S{Id2}%n[/code]&lt;br/&gt;&lt;img src="../Uploads/Images/ad8719ab-2cf9-47b5-bd52-efa1.png" id="if_insertedNode_1683828826570"&gt;&lt;br/&gt;&lt;br/&gt;Hope that helps,&lt;br/&gt;&lt;br/&gt;Toby&lt;br/&gt;&lt;br/&gt;</description><pubDate>Thu, 11 May 2023 18:19:37 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1762</link><description>Ah - I think I see the issue you are having.&amp;nbsp; You have three date time columns.&amp;nbsp; This will not work as written.&amp;nbsp;&amp;nbsp;&lt;br/&gt;&lt;br/&gt;%d is used to indicate the log entry timestamp.&amp;nbsp; Using this field multiple times will simply be updating the existing timestamp.&amp;nbsp; If you have 3 date fields in a log entry, one is the timestamp and the other two are just data columns.&lt;br/&gt;&lt;br/&gt;For example:&lt;br/&gt;[code]%d{yyyyMMddTHHmmss.fffzzz}\t%d{yyyyMMddTHHmmss.fffzzz}[/code]&lt;br/&gt;Becomes:&lt;br/&gt;[code]%s{Date1}\t%s{Date2}[/code]</description><pubDate>Thu, 11 May 2023 18:18:53 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1760</link><description>This is what I have for the parser for the attached file&lt;br/&gt;&lt;br/&gt;[code]%S{Sequence}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%d{yyyyMMddTHHmmss.fffzzz}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%p&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Hostname}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Logger}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Thread}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Id}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{ServiceUser}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Message}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Exception}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{StackTrace}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{ProxySessionId}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{TaskId}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{TaskName}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{AppId}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{AppName}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{ExecutionId}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{ExecutingNodeId}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{ExecutingNodeName}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Status}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%d{yyyyMMddTHHmmss.fffzzz}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%d{yyyyMMddTHHmmss.fffzzz}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Duration}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{FailureReason}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;%S{Id2}%n[/code]</description><pubDate>Thu, 11 May 2023 18:14:28 GMT</pubDate><dc:creator>dicetube</dc:creator></item><item><title>RE: Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1759</link><description>Hello,&lt;br/&gt;thanks, I will give that a try. I have also attached a sample log file though, sometimes it's good to see how you would do it to gain insight into the product.</description><pubDate>Thu, 11 May 2023 18:02:23 GMT</pubDate><dc:creator>dicetube</dc:creator></item><item><title>RE: Multiple timestamp fields in a log</title><link>https://www.logviewplus.com/forum/post/1758</link><description>Hi - thanks for reaching out.&amp;nbsp; &lt;br/&gt;&lt;br/&gt;LogViewPlus can parse files log files with multiple timestamp formats, but this needs to be configured manually.&amp;nbsp; See &lt;a href="https://www.logviewplus.com/docs/multi_patterns.html" id="if_insertedNode_1683824698147"&gt;multi-patterns&lt;/a&gt; for more information.&amp;nbsp; The &lt;a href="https://www.logviewplus.com/docs/date_specifier.html" id="if_insertedNode_1683824787521"&gt;date specifier&lt;/a&gt; documentation might also help.&lt;br/&gt;&lt;br/&gt;Alternatively, if you can send me a few sample log entries, I would be happy to help you create a parser configuration.&lt;br/&gt;&lt;br/&gt;Hope that helps,&lt;br/&gt;&lt;br/&gt;Toby</description><pubDate>Thu, 11 May 2023 17:06:33 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item></channel></rss>