Skip to content

Commit a8a7f6f

Browse files
authored
fix: ennable selectable time intervals for metrics across all screens (#807)
1 parent 969ecaa commit a8a7f6f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

projects/observability/src/pages/apis/api-detail/overview/api-overview.dashboard.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export const apiOverviewDashboard: DashboardDefaultConfiguration = {
198198
{
199199
type: 'cartesian-widget',
200200
title: 'Latency',
201-
'selectable-interval': false,
201+
'selectable-interval': true,
202202
'legend-position': LegendPosition.None,
203203
'x-axis': {
204204
type: 'cartesian-axis',
@@ -291,7 +291,7 @@ export const apiOverviewDashboard: DashboardDefaultConfiguration = {
291291
{
292292
type: 'cartesian-widget',
293293
title: 'Errors',
294-
'selectable-interval': false,
294+
'selectable-interval': true,
295295
'legend-position': LegendPosition.None,
296296
'x-axis': {
297297
type: 'cartesian-axis',
@@ -385,7 +385,7 @@ export const apiOverviewDashboard: DashboardDefaultConfiguration = {
385385
{
386386
type: 'cartesian-widget',
387387
title: 'Calls',
388-
'selectable-interval': false,
388+
'selectable-interval': true,
389389
'legend-position': LegendPosition.None,
390390
'x-axis': {
391391
type: 'cartesian-axis',

projects/observability/src/pages/apis/backend-detail/overview/backend-overview.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export class BackendOverviewComponent {
214214
{
215215
type: 'cartesian-widget',
216216
title: 'Latency',
217-
'selectable-interval': false,
217+
'selectable-interval': true,
218218
'legend-position': LegendPosition.None,
219219
'x-axis': {
220220
type: 'cartesian-axis',
@@ -291,7 +291,7 @@ export class BackendOverviewComponent {
291291
{
292292
type: 'cartesian-widget',
293293
title: 'Errors',
294-
'selectable-interval': false,
294+
'selectable-interval': true,
295295
'legend-position': LegendPosition.None,
296296
'x-axis': {
297297
type: 'cartesian-axis',
@@ -369,7 +369,7 @@ export class BackendOverviewComponent {
369369
{
370370
type: 'cartesian-widget',
371371
title: 'Calls',
372-
'selectable-interval': false,
372+
'selectable-interval': true,
373373
'legend-position': LegendPosition.None,
374374
'x-axis': {
375375
type: 'cartesian-axis',

projects/observability/src/pages/apis/service-detail/overview/service-overview.dashboard.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export const serviceOverviewDashboard: DashboardDefaultConfiguration = {
242242
{
243243
type: 'cartesian-widget',
244244
title: 'Latency',
245-
'selectable-interval': false,
245+
'selectable-interval': true,
246246
'legend-position': LegendPosition.None,
247247
'x-axis': {
248248
type: 'cartesian-axis',
@@ -335,7 +335,7 @@ export const serviceOverviewDashboard: DashboardDefaultConfiguration = {
335335
{
336336
type: 'cartesian-widget',
337337
title: 'Errors',
338-
'selectable-interval': false,
338+
'selectable-interval': true,
339339
'legend-position': LegendPosition.None,
340340
'x-axis': {
341341
type: 'cartesian-axis',
@@ -429,7 +429,7 @@ export const serviceOverviewDashboard: DashboardDefaultConfiguration = {
429429
{
430430
type: 'cartesian-widget',
431431
title: 'Calls',
432-
'selectable-interval': false,
432+
'selectable-interval': true,
433433
'legend-position': LegendPosition.None,
434434
'x-axis': {
435435
type: 'cartesian-axis',

src/app/home/home.dashboard.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ export const homeDashboard: DashboardDefaultConfiguration = {
406406
type: 'cartesian-widget',
407407
title: 'Latency',
408408
'legend-position': LegendPosition.None,
409-
'selectable-interval': false,
409+
'selectable-interval': true,
410410
'x-axis': {
411411
type: 'cartesian-axis',
412412
'show-grid-lines': false
@@ -482,7 +482,7 @@ export const homeDashboard: DashboardDefaultConfiguration = {
482482
type: 'cartesian-widget',
483483
title: 'Calls',
484484
'legend-position': LegendPosition.None,
485-
'selectable-interval': false,
485+
'selectable-interval': true,
486486
'x-axis': {
487487
type: 'cartesian-axis',
488488
'show-grid-lines': false
@@ -559,7 +559,7 @@ export const homeDashboard: DashboardDefaultConfiguration = {
559559
type: 'cartesian-widget',
560560
title: 'Errors',
561561
'legend-position': LegendPosition.None,
562-
'selectable-interval': false,
562+
'selectable-interval': true,
563563
'x-axis': {
564564
type: 'cartesian-axis',
565565
'show-grid-lines': false

0 commit comments

Comments
 (0)