Monitoring per operation
See original GitHub issueThis issue might be a more of a question rather than issue. I’m interested in a way how http4s generated code handles monitoring. Right now we are able to monitor things globally, ie. we can keep track of HTTP status codes returned by a server, but I’m not able to keep a track of status codes per endpoints/operationId. Similar thing applies http4s server. How do you solve this? Or do you event solve it at all?
I have an idea how to modify current generator in order to suit our needs. Essentially it requires to be able to pass String => Request[F] => F[Response[F]]
into every Client and Resource (server).
Issue Analytics
- State:
- Created 4 years ago
- Comments:14 (14 by maintainers)
Top Results From Across the Web
Implementing IT Operations Monitoring Best Practices - Optanix
In this post, we'll look into IT operations monitoring best practices and related considerations when implementing AIOps tools and other ...
Read more >Operations monitoring for better decisions - Plant Services
In a typical process plant, operations monitoring can be used to monitor measured and calculated process tags against operating, safety, and ...
Read more >Monitoring - Operations Center Getting Started Guide
Effectively monitor and manage availability and performance of applications and IT services that you deliver to business. Through the hierarchy and service ...
Read more >Performance Monitoring | Operations Management with ... - Esri
This real-time view of how assets and operations are performing helps identify inefficiencies and makes it easier to share data.
Read more >Operations Monitoring and Control EN12896 – 4 - Transmodel
The domain of operations monitoring and control concerns all activities related to the actual transportation process. It is also known as real-time control,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes, http4s Middleware is exactly what I want. We just need to fix input parameters to
Request[F]
and output toResponse[F]
. I also like that it plays nicely with the rest of http4s framework.Great! Feel free to reopen if necessary.