Accumulative stats for protocol and methods (#1144)

only data for pie chart currently
This commit is contained in:
gadotroee
2022-06-19 16:59:35 +03:00
committed by GitHub
parent 99cb0b4f44
commit 6f117d0a84
5 changed files with 157 additions and 12 deletions

View File

@@ -16,6 +16,7 @@ func StatusRoutes(ginApp *gin.Engine) {
routeGroup.GET("/tap", controllers.GetTappingStatus)
routeGroup.GET("/general", controllers.GetGeneralStats) // get general stats about entries in DB
routeGroup.GET("/accumulative", controllers.GetAccumulativeStats) // get general stats about entries in DB
routeGroup.GET("/resolving", controllers.GetCurrentResolvingInformation)
}