Hello,
Wondering if I can bounce my problem off some folks for an idea of how to solve it.
My colleague and I are trying to pull in a python Rest API library for a piece of software. Rather than have end users run scripts we wanted to make a basic gui for them. I've got the basic tests working fine but one area we're lacking is the monitoring status.
I'm struggling conceptually with how to handle a static monitoring thread that queries an API server that's running processes that I need to know the status of.
The API server doesn't support stateful sessions for streaming data so I have a python monitoring thread that periodically re-queries the API gateway for test status. Works great from a CLI, but no sure how to handle it in Django.
If anyone can provide some insight into a viable method for this please let me know.
Thanks