Executing Actions on Global Interaction / Global Hooks?
Hey InterSystems Community!
This is probably far-fetched - is there a way to get notified/get a piece of code triggered whenever the state of a global changes?
Now what could I possibly want with that? Quite simple! I would like to forward the content of a global (in this case the "FSLog" global written by the FHIR implementation) while adding timestamps to it - to create some sort of file-based logging for it.
Product version: IRIS 2021.1
If your global is part of a class/table class parameter DSTIME could be an approach.
or any SQL trigger or any %OnAfterSave, %OnAfterDelete, ...
For pure Globals all you have is the Journal (if enabled)
Sadly it's a pure global in this case. But I will keep that in mind for the future, as logging to globals seems to be a common thing, and some actually are backed by classes.
Following on Robert's idea of the journal, you might set up a shadow server with a custom filter routine. That routine could examine each journaled global set/kill that comes to it, choose the ones it cares about and do something with them, then "quit 0" so the shadow doesn't actually dejournal the activity.
We were thinking of using filebeat anyway. This might actually work smooth enough, with filebeat on the journal, filtering in a later step? I'll have to take a closer look at the journal itself, thank you!
How about polling the global looking for updates? It would be lightweight to just check if the value of ^FSLOG has incremented since the last check:
or use $order:
As for timestamps, in my test environment all of the ^FSLOG entries seem to end with timestamps already:
Mine doesn't do that - yet. Still using HealthShare 2020.1. I assume it'll be added with a later version!
As for the polling - I guess with a timestamp maybe added in the future (We're planning to upgrade soon), this may very well be the smartest solution. Thanks!
As it happens, if you use the Node.js-based QEWD framework, any time you use the QEWD-JSdb APIs that modify a global node (eg set, kill, increment etc), an event is triggered that you can write your own customer handler for.
It's described in this set of training slides: https://www.slideshare.net/robtweed/ewd-3-training-course-part-26-eventd...
Thank you for the helpful link.
The only way you could accomplish this is by watching the journal files, there would be journals like "Set Global" and "Kill Global"