Hello,
I want to capture the time it takes for each step in the process and store it for analitics.
Can I do that with dropwizard metrics or I have to implement my own computations + dropwizard metrics ?
We are processing a document with id X and we do several steps:
- ML1
- ML2
- ML3
I would like to capture the time it takes for each step - both for performance metrics but also to store in a DB alongside document X so we can run analitics at a later date.
Is this usecase suitable for metrcis or we have to roll our own + metrics ?
I would like to stick to 1 API if possible and we are going to use metrics for performance monitoring, but we also want performance analitics later on.