mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
c9f25cf0a5
Signed-off-by: bergquist <carl.bergquist@gmail.com>
23 lines
451 B
Go
23 lines
451 B
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
)
|
|
|
|
func (hs *HTTPServer) databaseHealthy(ctx context.Context) bool {
|
|
const cacheKey = "db-healthy"
|
|
|
|
if cached, found := hs.CacheService.Get(cacheKey); found {
|
|
return cached.(bool)
|
|
}
|
|
|
|
healthy := bus.DispatchCtx(ctx, &models.GetDBHealthQuery{}) == nil
|
|
|
|
hs.CacheService.Set(cacheKey, healthy, time.Second*5)
|
|
return healthy
|
|
}
|