From 7139544c7696e814e7a9d1c93ee3198ae72f2c7b Mon Sep 17 00:00:00 2001 From: David Date: Mon, 22 Jul 2019 13:34:10 +0200 Subject: [PATCH] Explore: Reduce default time range to last hour (#18212) --- public/app/core/utils/explore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/utils/explore.ts b/public/app/core/utils/explore.ts index 7f36b7de474..627a9e3d844 100644 --- a/public/app/core/utils/explore.ts +++ b/public/app/core/utils/explore.ts @@ -41,7 +41,7 @@ import { import { config } from '../config'; export const DEFAULT_RANGE = { - from: 'now-6h', + from: 'now-1h', to: 'now', };