Nicolay
09/21/2024, 5:14 AMNate
09/22/2024, 2:18 AMexamples for project layoutsI'd point you here for an opinionated layout of mine, but really anywhere you can write python should be fine, since for the python deployment interface its normally just
python file_containing_flow_to_deploy.py
At the moment the monitoring is completely decoupled. We have the configs stored in a db and a job running to see whether a monitoring has to be run, which then triggers the right monitor. I would love to hear whether you have seen / know a better approach for this.im not sure I could make a concrete recommendation based on only this information, but I will say that if you have the ability to curl a webhook from inside your existing app, then you can trigger arbitrary downtream work in python here's an example that may be close to what you're looking for, where I simulate some code elsewhere to gather and write some result to s3, then emits an event to trigger downstream stuff, passing the customer id and whatever else
Nate
09/22/2024, 2:27 AMNicolay
09/22/2024, 5:23 AMNate
09/22/2024, 5:32 PM