Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NEW-FEATURE] Extend Diagnostics View in Blazor #519

Open
RGrabichler opened this issue Sep 26, 2022 · 10 comments · May be fixed by #647
Open

[NEW-FEATURE] Extend Diagnostics View in Blazor #519

RGrabichler opened this issue Sep 26, 2022 · 10 comments · May be fixed by #647
Milestone

Comments

@RGrabichler
Copy link
Collaborator

This is the Diagnostics View in my Project.
link
But i think, there are a few things missing.
I ve got the Timestamp for raised, but i also want Timestamp for Acknowledged.
Icons for the Severity should be displayed for a quick overview.
I prefer the Messages to remain after Acknowledged in the list (perhaps like 1000 items),
sortable like for time raised, time acknowledged and so on.

The Refresh Time and the Initial displayed Severity should be accessible via Property
(not sure if already adressed)

Perhaps any other suggestions can be added here

@RGrabichler
Copy link
Collaborator Author

I tried a few things

  • Docker-Compose.yml is created, starts a mongo db to store messages

image

  • i added property TimeStampAcknowledged to TcoMessage
    • works, but i am unhappy, because it is a breaking change, i will try to revert this
  • will add possibilities to config the logging
  • Change appearance, filtering etc.

Alternative to the Usage of Messenger, i could change this completly to Display the Logs, so i could display
every Message from a Module, even if there are pinned Messages Pending.

If there are any suggestions, optimasitions or ideas, im happy to hear

@RGrabichler
Copy link
Collaborator Author

/cib

@github-actions
Copy link
Contributor

github-actions bot pushed a commit that referenced this issue Sep 22, 2023
@github-actions github-actions bot linked a pull request Sep 22, 2023 that will close this issue
@RGrabichler
Copy link
Collaborator Author

I am still rethinking, if i can use the logger for logging what i want to display as messages.
I have a few issues.

image
this is the PlainTcoLogItem.

Here in the TcoLogger.cs
image
Can i add the Identity ?

Because i would need this, to check back, if the messenger has active messages.

And i really do not understand fully, what means

PerCycleCount, is this related to category, when from same object more message per cycle came in?
ExpectDequeing, what exactly can i do with this
MessageDigest, some sort of Hashing? does this change when Cycle or TimeStamp changes?

@PTKu
Copy link
Member

PTKu commented Sep 26, 2023

@RGrabichler, you could employ 'identity', but it's essential to recognize that each messenger can issue multiple messages. To accurately determine the duration from the logger, you must also consider the content of the message.

Identity essentially represents the pointer value for each TcoObject. This allows us to distinguish the objects within a .NET application.

'PerCycleCount' indicates the number of messages sent by a particular messenger in a single PLC cycle. Though the messenger displays only the most critical message contained in _mime, the logger captures the rising edge of every message occurrence.

'MessageDigest' serves as a checksum for the message content. It alters only when the content of the messages (i.e., text) changes.

@RGrabichler
Copy link
Collaborator Author

RGrabichler commented Oct 11, 2023

image
this is my DB Entry.
The Identity in the
RenderedMessage : "... Identity: 18446625899150357168
and the
Properties.senderlPayload.Identity: -118174559194448
do not match, looks like a overflow?

Edit: i do not find, where this Log Messages is composed to look like that.

@PTKu
Copy link
Member

PTKu commented Oct 11, 2023

@RGrabichler is it from MongoDB?

@RGrabichler
Copy link
Collaborator Author

yes

@PTKu
Copy link
Member

PTKu commented Oct 11, 2023

https://www.mongodb.com/docs/manual/reference/bson-types/

Identity is unsigned long (ulong), mongo supports only signed long. TcOpen deals with this issue using customized deserializer, when handling data exchange.

@PTKu
Copy link
Member

PTKu commented Oct 11, 2023

BsonSerializer.RegisterSerializer(typeof(UInt64), new UInt64Serializer(BsonType.Int64, new RepresentationConverter(true, false)));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants