I am using prometheus_client python library.
I want to count the number of http requests came for each day.
For that I want the counter to reset at 12 AM each day. How to achieve that ?
            Asked
            
        
        
            Active
            
        
            Viewed 441 times
        
    1
            
            
        
        Rahul
        
- 337
 - 2
 - 14
 
- 
                    Generally, that kind of counting would be done where you're aggregating the metrics, not at the source - maybe something like https://stackoverflow.com/questions/47138461/get-total-requests-in-a-period-of-time ? – Josh Karpel Aug 01 '21 at 03:52