- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
whole message in Event Explorer 4.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
There is a colum name called 'message' which displays the full message. You can also see all the parsed fields of a message by creating an event trace with the "datastore" storage option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Thanks.
The message field does not display the full message - it gets truncated.
It is possible to copy and paste into a different app - e.g notepad - then the full message appears.
Would be nice to see the whole thig in Event Explorer
version 4.0.0 b228
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
meadowh is correct. This is in fact a problem with EE 4.0 that I've observed myself recently but have not had time to submit a support call as I'm currently jugling three other ones that are higher priority for me right now.
has anyone else submitted a case for this? If so, what was the outcome?
ryan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
The only way I have been able to see the entire message is to use the following in an advanced table.
It splits the message up into multiple fields (message, message1, message2, etc), but at least you can see it
SUBSTRING(RIGHT(MESSAGE, (LENGTH(MESSAGE) - LOCATE('%', MESSAGE))),1,259) AS MESSAGE,
SUBSTRING(RIGHT(MESSAGE, (LENGTH(MESSAGE) - LOCATE('', MESSAGE)) ),260,519) AS MESSAGE2,
SUBSTRING(RIGHT(MESSAGE, (LENGTH(MESSAGE) - LOCATE('', MESSAGE)) ),519,759) AS MESSAGE3,
SUBSTRING(RIGHT(MESSAGE, (LENGTH(MESSAGE) - LOCATE('%', MESSAGE)) ),778,1024) AS MESSAGE4,
Rick
