Is there a way to pass errors thrown by the Easymorph server out of the program itself - to windows standard errors?
Hi
Could you describe in more detail exactly what you need?
Which specific errors are you referring to?
What do you mean by “Windows standard errors”?
I'm just looking at a way to capture errors thrown from easymorph processes from an external monitoring platform like Datadog.
Are you referring to workflow errors or the server's own system errors?
Workflow errors. For example a .morph error being thrown due to invalid data, etc.
Errors that occur during workflow execution are logged in the Server journal
. This can be either a local SQLite database or an external ODBC database.
If your software supports database connectivity, you can periodically poll for new entries in such a database and configure rules to handle errors when they occur.
If it doesn’t support database connectivity, you can create a project that periodically queries this table and exports the data into a supported format.
Check the Server journal
section in the EasyMorph Server Administrator Guide
for more details.
Thanks, I thought that was likely the only option for capturing those types of errors, but just wanted to confirm.