Service could run around 12.00 each day, that calculates the previous day of forecasts.
the first approach is to let the database do the calculations, as then lots of raw data doesnt need to be moved to this service. If this probes to computationally expense for the database, then we can think about moveing the calucation outside of the database.
We might want to do this in a separate repo (not in datamodel)
It should be easy to add a new metric if we want to. This helps when we want to collect more metrics in the future
Make metric entry point that runs
the first approach is to let the database do the calculations, as then lots of raw data doesnt need to be moved to this service. If this probes to computationally expense for the database, then we can think about moveing the calucation outside of the database.
We might want to do this in a separate repo (not in datamodel)
It should be easy to add a new metric if we want to. This helps when we want to collect more metrics in the future