aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-09-09 16:44:20 +0200
committerTaras Madan <tarasmadan@google.com>2024-09-10 06:32:30 +0000
commitf8059e89cd5e73f80a7afa159736c7f230d8aed7 (patch)
tree83cd53fda71c8363b3434b9fe53b454a5f1ba1b0
parentcbb4b24e82f33912794041c4313067ab4aa87f0c (diff)
dashboard/app: set period=quarter for the coverage total page
It reminds the parameter is adjustable.
-rw-r--r--dashboard/app/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/main.go b/dashboard/app/main.go
index 9e4652410..596b52924 100644
--- a/dashboard/app/main.go
+++ b/dashboard/app/main.go
@@ -65,7 +65,7 @@ func initHTTPHandlers() {
http.Handle("/"+ns+"/graph/crashes", handlerWrapper(handleGraphCrashes))
http.Handle("/"+ns+"/graph/found-bugs", handlerWrapper(handleFoundBugsGraph))
if nsConfig.Coverage != nil {
- http.Handle("/"+ns+"/graph/coverage", handlerWrapper(handleCoverageGraph))
+ http.Handle("/"+ns+"/graph/coverage?period=quarter", handlerWrapper(handleCoverageGraph))
http.Handle("/"+ns+"/graph/coverage_heatmap?period=month", handlerWrapper(handleCoverageHeatmap))
if nsConfig.Subsystems.Service != nil {
http.Handle("/"+ns+"/graph/coverage_subsystems_heatmap?period=month",