diff --git a/x-pack/solutions/observability/plugins/slo/server/domain/models/common.ts b/x-pack/solutions/observability/plugins/slo/server/domain/models/common.ts index 4c58c3e51624c..72fc9e291138e 100644 --- a/x-pack/solutions/observability/plugins/slo/server/domain/models/common.ts +++ b/x-pack/solutions/observability/plugins/slo/server/domain/models/common.ts @@ -11,7 +11,6 @@ import { groupBySchema, groupingsSchema, groupSummarySchema, - historicalSummarySchema, metaSchema, objectiveSchema, sloSettingsSchema, @@ -22,7 +21,6 @@ import { type Objective = t.TypeOf; type Status = t.TypeOf; type DateRange = t.TypeOf; -type HistoricalSummary = t.TypeOf; type Summary = t.TypeOf; type Groupings = t.TypeOf; type Meta = t.TypeOf; @@ -35,7 +33,6 @@ export type { Objective, DateRange, Groupings, - HistoricalSummary, Meta, Status, Summary, diff --git a/x-pack/solutions/observability/plugins/slo/server/errors/handler.ts b/x-pack/solutions/observability/plugins/slo/server/errors/handler.ts deleted file mode 100644 index 2aeebefe2a06c..0000000000000 --- a/x-pack/solutions/observability/plugins/slo/server/errors/handler.ts +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { Boom, badRequest, conflict, forbidden, notFound } from '@hapi/boom'; -import { SLOError, SecurityException, SLOIdConflict, SLONotFound } from './errors'; - -function handleSLOError(error: SLOError): Boom { - if (error instanceof SLONotFound) { - return notFound(error.message); - } - - if (error instanceof SLOIdConflict) { - return conflict(error.message); - } - - if (error instanceof SecurityException) { - return forbidden(error.message); - } - - return badRequest(error.message); -} - -export async function executeWithErrorHandler(fn: () => Promise): Promise { - try { - return await fn(); - } catch (error) { - if (error instanceof SLOError) { - throw handleSLOError(error); - } - - throw error; - } -} diff --git a/x-pack/solutions/observability/plugins/slo/server/errors/index.ts b/x-pack/solutions/observability/plugins/slo/server/errors/index.ts index e466d5b8ae4a1..8761ef1b52a32 100644 --- a/x-pack/solutions/observability/plugins/slo/server/errors/index.ts +++ b/x-pack/solutions/observability/plugins/slo/server/errors/index.ts @@ -6,4 +6,3 @@ */ export * from './errors'; -export * from './handler'; diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/create_slo_server_route.ts b/x-pack/solutions/observability/plugins/slo/server/routes/create_slo_server_route.ts index 6d1b762f1dca5..eb36f6692e0e4 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/create_slo_server_route.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/create_slo_server_route.ts @@ -5,6 +5,42 @@ * 2.0. */ import { createServerRouteFactory } from '@kbn/server-route-repository'; +import { Boom, forbidden, notFound, conflict, badRequest } from '@hapi/boom'; +import { CreateServerRouteFactory } from '@kbn/server-route-repository-utils/src/typings'; import { SLORouteHandlerResources } from './types'; +import { SLOError, SLONotFound, SLOIdConflict, SecurityException } from '../errors'; -export const createSloServerRoute = createServerRouteFactory(); +function handleSLOError(error: SLOError): Boom { + if (error instanceof SLONotFound) { + return notFound(error.message); + } + + if (error instanceof SLOIdConflict) { + return conflict(error.message); + } + + if (error instanceof SecurityException) { + return forbidden(error.message); + } + + return badRequest(error.message); +} + +const createPlainSloServerRoute = createServerRouteFactory(); + +export const createSloServerRoute: CreateServerRouteFactory< + SLORouteHandlerResources, + undefined +> = ({ handler, ...config }) => { + return createPlainSloServerRoute({ + ...config, + handler: (options) => { + return handler(options).catch((error) => { + if (error instanceof SLOError) { + throw handleSLOError(error); + } + throw error; + }); + }, + }); +}; diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/create_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/create_slo.ts index 7b4db6e077e6e..857a8c8987373 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/create_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/create_slo.ts @@ -6,18 +6,17 @@ */ import { createSLOParamsSchema } from '@kbn/slo-schema'; -import { createSloServerRoute } from '../create_slo_server_route'; -import { assertPlatinumLicense } from './utils/assert_platinum_license'; -import { getSpaceId } from './utils/get_space_id'; -import { createTransformGenerators } from '../../services/transform_generators'; -import { DefaultSummaryTransformGenerator } from '../../services/summary_transform_generator/summary_transform_generator'; -import { executeWithErrorHandler } from '../../errors'; import { CreateSLO, DefaultSummaryTransformManager, DefaultTransformManager, KibanaSavedObjectsSLORepository, } from '../../services'; +import { DefaultSummaryTransformGenerator } from '../../services/summary_transform_generator/summary_transform_generator'; +import { createTransformGenerators } from '../../services/transform_generators'; +import { createSloServerRoute } from '../create_slo_server_route'; +import { assertPlatinumLicense } from './utils/assert_platinum_license'; +import { getSpaceId } from './utils/get_space_id'; export const createSLORoute = createSloServerRoute({ endpoint: 'POST /api/observability/slos 2023-10-31', @@ -74,6 +73,6 @@ export const createSLORoute = createSloServerRoute({ userId ); - return await executeWithErrorHandler(() => createSLO.execute(params.body)); + return await createSLO.execute(params.body); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_instances.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_instances.ts index be92f87332b88..9c416d670df80 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_instances.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_instances.ts @@ -6,7 +6,6 @@ */ import { deleteSLOInstancesParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { DeleteSLOInstances } from '../../services'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -26,7 +25,7 @@ export const deleteSloInstancesRoute = createSloServerRoute({ const esClient = (await context.core).elasticsearch.client.asCurrentUser; const deleteSloInstances = new DeleteSLOInstances(esClient); - await executeWithErrorHandler(() => deleteSloInstances.execute(params.body)); + await deleteSloInstances.execute(params.body); return response.noContent(); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_slo.ts index 98c5f803c4d12..3f247c09e57c8 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/delete_slo.ts @@ -6,7 +6,6 @@ */ import { deleteSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { DefaultSummaryTransformManager, DefaultTransformManager, @@ -72,7 +71,7 @@ export const deleteSLORoute = createSloServerRoute({ rulesClient ); - await executeWithErrorHandler(() => deleteSLO.execute(params.path.id)); + await deleteSLO.execute(params.path.id); return response.noContent(); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/disable_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/disable_slo.ts index ac527c39be1a7..ee44b66b5ab74 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/disable_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/disable_slo.ts @@ -6,7 +6,6 @@ */ import { manageSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { DefaultSummaryTransformManager, DefaultTransformManager, @@ -60,7 +59,7 @@ export const disableSLORoute = createSloServerRoute({ const manageSLO = new ManageSLO(repository, transformManager, summaryTransformManager); - await executeWithErrorHandler(() => manageSLO.disable(params.path.id)); + await manageSLO.disable(params.path.id); return response.noContent(); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/enable_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/enable_slo.ts index 5227817cd3e48..1eeb13559b82e 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/enable_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/enable_slo.ts @@ -6,7 +6,6 @@ */ import { manageSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { DefaultSummaryTransformManager, DefaultTransformManager, @@ -60,7 +59,7 @@ export const enableSLORoute = createSloServerRoute({ const manageSLO = new ManageSLO(repository, transformManager, summaryTransformManager); - await executeWithErrorHandler(() => manageSLO.enable(params.path.id)); + await manageSLO.enable(params.path.id); return response.noContent(); }, diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_health.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_health.ts index 2e093006e7cbe..00f91c5bccfaf 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_health.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_health.ts @@ -6,7 +6,6 @@ */ import { fetchSLOHealthParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { GetSLOHealth, KibanaSavedObjectsSLORepository } from '../../services'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -31,6 +30,6 @@ export const fetchSloHealthRoute = createSloServerRoute({ const getSLOHealth = new GetSLOHealth(esClient, scopedClusterClient, repository); - return await executeWithErrorHandler(() => getSLOHealth.execute(params.body)); + return await getSLOHealth.execute(params.body); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_historical_summary.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_historical_summary.ts index ac41836445df4..7b7a0e20f43f6 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_historical_summary.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/fetch_historical_summary.ts @@ -6,8 +6,7 @@ */ import { fetchHistoricalSummaryParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; -import { DefaultHistoricalSummaryClient } from '../../services/historical_summary_client'; +import { HistoricalSummaryClient } from '../../services/historical_summary_client'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -24,8 +23,8 @@ export const fetchHistoricalSummary = createSloServerRoute({ await assertPlatinumLicense(plugins); const esClient = (await context.core).elasticsearch.client.asCurrentUser; - const historicalSummaryClient = new DefaultHistoricalSummaryClient(esClient); + const historicalSummaryClient = new HistoricalSummaryClient(esClient); - return await executeWithErrorHandler(() => historicalSummaryClient.fetch(params.body)); + return await historicalSummaryClient.fetch(params.body); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_definitions.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_definitions.ts index b7e05e51b5d68..9b8f22b24b350 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_definitions.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_definitions.ts @@ -6,7 +6,6 @@ */ import { findSloDefinitionsParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { KibanaSavedObjectsSLORepository } from '../../services'; import { FindSLODefinitions } from '../../services/find_slo_definitions'; import { createSloServerRoute } from '../create_slo_server_route'; @@ -28,6 +27,6 @@ export const findSloDefinitionsRoute = createSloServerRoute({ const repository = new KibanaSavedObjectsSLORepository(soClient, logger); const findSloDefinitions = new FindSLODefinitions(repository); - return await executeWithErrorHandler(() => findSloDefinitions.execute(params?.query ?? {})); + return await findSloDefinitions.execute(params?.query ?? {}); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_groups.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_groups.ts index 20fd53c1460ca..d6f8c2f9013fd 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_groups.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_groups.ts @@ -6,7 +6,6 @@ */ import { findSLOGroupsParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { FindSLOGroups } from '../../services'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -29,6 +28,6 @@ export const findSLOGroupsRoute = createSloServerRoute({ const coreContext = context.core; const esClient = (await coreContext).elasticsearch.client.asCurrentUser; const findSLOGroups = new FindSLOGroups(esClient, soClient, logger, spaceId); - return await executeWithErrorHandler(() => findSLOGroups.execute(params?.query ?? {})); + return await findSLOGroups.execute(params?.query ?? {}); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_slo.ts index bfc17b55ca64f..93a51ac098ae9 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/find_slo.ts @@ -6,7 +6,6 @@ */ import { findSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { FindSLO, KibanaSavedObjectsSLORepository } from '../../services'; import { DefaultSummarySearchClient } from '../../services/summary_search_client/summary_search_client'; import { createSloServerRoute } from '../create_slo_server_route'; @@ -33,6 +32,6 @@ export const findSLORoute = createSloServerRoute({ const findSLO = new FindSLO(repository, summarySearchClient); - return await executeWithErrorHandler(() => findSLO.execute(params?.query ?? {})); + return await findSLO.execute(params?.query ?? {}); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_groupings.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_groupings.ts index f59b89da77d29..0e2acfc4daec9 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_groupings.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_groupings.ts @@ -6,7 +6,6 @@ */ import { getSLOGroupingsParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { KibanaSavedObjectsSLORepository } from '../../services'; import { GetSLOGroupings } from '../../services/get_slo_groupings'; import { SloDefinitionClient } from '../../services/slo_definition_client'; @@ -38,8 +37,6 @@ export const getSLOGroupingsRoute = createSloServerRoute({ const getSLOGroupings = new GetSLOGroupings(definitionClient, esClient, settings, spaceId); - return await executeWithErrorHandler(() => - getSLOGroupings.execute(params.path.id, params.query) - ); + return await getSLOGroupings.execute(params.path.id, params.query); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo.ts index 812f93c2683a4..80eca64ffbe52 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo.ts @@ -6,7 +6,6 @@ */ import { getSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { DefaultBurnRatesClient, DefaultSummaryClient, @@ -40,8 +39,6 @@ export const getSLORoute = createSloServerRoute({ const definitionClient = new SloDefinitionClient(repository, esClient, logger); const getSLO = new GetSLO(definitionClient, summaryClient); - return await executeWithErrorHandler(() => - getSLO.execute(params.path.id, spaceId, params.query) - ); + return await getSLO.execute(params.path.id, spaceId, params.query); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_burn_rates.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_burn_rates.ts index 111b10c713ae3..90cb18da60b76 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_burn_rates.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_burn_rates.ts @@ -6,7 +6,6 @@ */ import { getSLOBurnRatesParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { getBurnRates } from '../../services/get_burn_rates'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -30,19 +29,17 @@ export const getSloBurnRates = createSloServerRoute({ const soClient = (await context.core).savedObjects.client; const { instanceId, windows, remoteName } = params.body; - return await executeWithErrorHandler(() => - getBurnRates({ - instanceId, - spaceId, - windows, - remoteName, - sloId: params.path.id, - services: { - soClient, - esClient, - logger, - }, - }) - ); + return await getBurnRates({ + instanceId, + spaceId, + windows, + remoteName, + sloId: params.path.id, + services: { + soClient, + esClient, + logger, + }, + }); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_settings.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_settings.ts index 5049191c89dbb..833f827132bcd 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_settings.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slo_settings.ts @@ -5,7 +5,6 @@ * 2.0. */ -import { executeWithErrorHandler } from '../../errors'; import { getSloSettings } from '../../services/slo_settings'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -23,6 +22,6 @@ export const getSloSettingsRoute = createSloServerRoute({ const soClient = (await context.core).savedObjects.client; - return await executeWithErrorHandler(() => getSloSettings(soClient)); + return await getSloSettings(soClient); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slos_overview.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slos_overview.ts index 4c6981236ff58..fab0f7b0f1b44 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slos_overview.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_slos_overview.ts @@ -6,7 +6,6 @@ */ import { getOverviewParamsSchema } from '@kbn/slo-schema/src/rest_specs/routes/get_overview'; -import { executeWithErrorHandler } from '../../errors'; import { GetSLOsOverview } from '../../services/get_slos_overview'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -44,6 +43,6 @@ export const getSLOsOverview = createSloServerRoute({ racClient ); - return await executeWithErrorHandler(() => slosOverview.execute(params?.query ?? {})); + return await slosOverview.execute(params?.query ?? {}); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_suggestions.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_suggestions.ts index 57a0d4bd7c15d..e98f16b05ae03 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_suggestions.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/get_suggestions.ts @@ -5,7 +5,6 @@ * 2.0. */ -import { executeWithErrorHandler } from '../../errors'; import { GetSLOSuggestions } from '../../services/get_slo_suggestions'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -23,6 +22,6 @@ export const getSLOSuggestionsRoute = createSloServerRoute({ const soClient = (await context.core).savedObjects.client; const getSLOSuggestions = new GetSLOSuggestions(soClient); - return await executeWithErrorHandler(() => getSLOSuggestions.execute()); + return await getSLOSuggestions.execute(); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/inspect_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/inspect_slo.ts index 550466c42a69b..e4af6958d310e 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/inspect_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/inspect_slo.ts @@ -6,7 +6,6 @@ */ import { createSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { CreateSLO, DefaultSummaryTransformManager, @@ -71,6 +70,6 @@ export const inspectSLORoute = createSloServerRoute({ username ); - return await executeWithErrorHandler(() => createSLO.inspect(params.body)); + return await createSLO.inspect(params.body); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/put_slo_settings.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/put_slo_settings.ts index 0b5fa03b2d5ad..fb3a72d7c1a47 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/put_slo_settings.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/put_slo_settings.ts @@ -10,7 +10,6 @@ import { putSLOServerlessSettingsParamsSchema, putSLOSettingsParamsSchema, } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { storeSloSettings } from '../../services/slo_settings'; import { createSloServerRoute } from '../create_slo_server_route'; import { assertPlatinumLicense } from './utils/assert_platinum_license'; @@ -29,8 +28,6 @@ export const putSloSettings = (isServerless?: boolean) => await assertPlatinumLicense(plugins); const soClient = (await context.core).savedObjects.client; - return await executeWithErrorHandler(() => - storeSloSettings(soClient, params.body as PutSLOSettingsParams) - ); + return await storeSloSettings(soClient, params.body as PutSLOSettingsParams); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/reset_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/reset_slo.ts index 494eda55b22ed..c11ab95b82f73 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/reset_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/reset_slo.ts @@ -6,7 +6,6 @@ */ import { resetSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { DefaultSummaryTransformManager, DefaultTransformManager, @@ -70,6 +69,6 @@ export const resetSLORoute = createSloServerRoute({ basePath ); - return await executeWithErrorHandler(() => resetSLO.execute(params.path.id)); + return await resetSLO.execute(params.path.id); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/routes/slo/update_slo.ts b/x-pack/solutions/observability/plugins/slo/server/routes/slo/update_slo.ts index 5af7f9c54aacd..35909edee3c39 100644 --- a/x-pack/solutions/observability/plugins/slo/server/routes/slo/update_slo.ts +++ b/x-pack/solutions/observability/plugins/slo/server/routes/slo/update_slo.ts @@ -6,7 +6,6 @@ */ import { updateSLOParamsSchema } from '@kbn/slo-schema'; -import { executeWithErrorHandler } from '../../errors'; import { DefaultSummaryTransformManager, DefaultTransformManager, @@ -73,6 +72,6 @@ export const updateSLORoute = createSloServerRoute({ userId ); - return await executeWithErrorHandler(() => updateSLO.execute(params.path.id, params.body)); + return await updateSLO.execute(params.path.id, params.body); }, }); diff --git a/x-pack/solutions/observability/plugins/slo/server/services/__snapshots__/historical_summary_client.test.ts.snap b/x-pack/solutions/observability/plugins/slo/server/services/__snapshots__/historical_summary_client.test.ts.snap index 3b495e56db593..f6544e8fca421 100644 --- a/x-pack/solutions/observability/plugins/slo/server/services/__snapshots__/historical_summary_client.test.ts.snap +++ b/x-pack/solutions/observability/plugins/slo/server/services/__snapshots__/historical_summary_client.test.ts.snap @@ -2,7 +2,7 @@ exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 1`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -16,7 +16,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 2`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -30,7 +30,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 3`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -44,7 +44,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 4`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -58,7 +58,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 5`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -72,7 +72,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 6`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -86,7 +86,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 7`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -100,7 +100,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 8`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -114,7 +114,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 9`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -128,7 +128,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 10`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -142,7 +142,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 11`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -156,7 +156,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 12`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -170,7 +170,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 13`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -184,7 +184,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 14`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -198,7 +198,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 15`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -212,7 +212,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 16`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -226,7 +226,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 17`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -240,7 +240,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 18`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -254,7 +254,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 19`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -268,7 +268,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 20`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -282,7 +282,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 21`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -296,7 +296,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 22`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -310,7 +310,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 23`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -324,7 +324,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 24`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -338,7 +338,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 25`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -352,7 +352,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 26`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -366,7 +366,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 27`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -380,7 +380,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 28`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -394,7 +394,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 29`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -408,7 +408,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 30`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -422,7 +422,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 31`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -436,7 +436,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 32`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -450,7 +450,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 33`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -464,7 +464,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 34`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -478,7 +478,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 35`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -492,7 +492,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 36`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -506,7 +506,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 37`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -520,7 +520,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 38`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -534,7 +534,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 39`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -548,7 +548,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 40`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -562,7 +562,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 41`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -576,7 +576,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 42`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -590,7 +590,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 43`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -604,7 +604,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 44`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -618,7 +618,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 45`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -632,7 +632,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 46`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -646,7 +646,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 47`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -660,7 +660,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 48`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -674,7 +674,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 49`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -688,7 +688,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 50`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -702,7 +702,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 51`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -716,7 +716,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 52`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -730,7 +730,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 53`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -744,7 +744,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 54`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -758,7 +758,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 55`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -772,7 +772,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 56`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -786,7 +786,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 57`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -800,7 +800,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 58`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -814,7 +814,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 59`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -828,7 +828,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 60`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -842,7 +842,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 61`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -856,7 +856,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 62`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -870,7 +870,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 63`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -884,7 +884,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 64`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -898,7 +898,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 65`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -912,7 +912,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 66`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -926,7 +926,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 67`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -940,7 +940,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 68`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -954,7 +954,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 69`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -968,7 +968,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 70`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -982,7 +982,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 71`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -996,7 +996,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 72`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1010,7 +1010,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 73`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1024,7 +1024,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 74`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1038,7 +1038,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 75`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1052,7 +1052,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 76`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1066,7 +1066,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 77`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1080,7 +1080,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 78`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1094,7 +1094,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 79`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1108,7 +1108,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 80`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1122,7 +1122,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 81`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1136,7 +1136,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 82`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1150,7 +1150,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 83`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1164,7 +1164,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 84`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1178,7 +1178,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 85`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1192,7 +1192,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 86`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1206,7 +1206,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 87`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1220,7 +1220,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 88`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1234,7 +1234,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 89`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1248,7 +1248,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 90`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1262,7 +1262,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 91`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1276,7 +1276,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 92`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1290,7 +1290,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 93`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1304,7 +1304,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 94`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1318,7 +1318,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 95`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1332,7 +1332,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 96`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1346,7 +1346,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 97`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1360,7 +1360,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 98`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1374,7 +1374,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 99`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1388,7 +1388,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 100`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1402,7 +1402,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 101`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1416,7 +1416,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 102`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1430,7 +1430,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 103`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1444,7 +1444,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 104`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1458,7 +1458,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 105`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1472,7 +1472,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 106`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1486,7 +1486,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 107`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1500,7 +1500,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Occurrences SLOs returns the summary 108`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -1514,7 +1514,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 1`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.00134, "initial": 0.05, @@ -1528,7 +1528,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 2`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.00268, "initial": 0.05, @@ -1542,7 +1542,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 3`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.00404, "initial": 0.05, @@ -1556,7 +1556,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 4`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.00538, "initial": 0.05, @@ -1570,7 +1570,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 5`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.00672, "initial": 0.05, @@ -1584,7 +1584,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 6`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.00806, "initial": 0.05, @@ -1598,7 +1598,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 7`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0094, "initial": 0.05, @@ -1612,7 +1612,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 8`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.01076, "initial": 0.05, @@ -1626,7 +1626,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 9`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0121, "initial": 0.05, @@ -1640,7 +1640,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 10`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.01344, "initial": 0.05, @@ -1654,7 +1654,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 11`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.01478, "initial": 0.05, @@ -1668,7 +1668,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 12`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.01612, "initial": 0.05, @@ -1682,7 +1682,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 13`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.01748, "initial": 0.05, @@ -1696,7 +1696,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 14`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.01882, "initial": 0.05, @@ -1710,7 +1710,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 15`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.02016, "initial": 0.05, @@ -1724,7 +1724,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 16`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0215, "initial": 0.05, @@ -1738,7 +1738,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 17`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.02284, "initial": 0.05, @@ -1752,7 +1752,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 18`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0242, "initial": 0.05, @@ -1766,7 +1766,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 19`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.02554, "initial": 0.05, @@ -1780,7 +1780,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 20`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.02688, "initial": 0.05, @@ -1794,7 +1794,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 21`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.02822, "initial": 0.05, @@ -1808,7 +1808,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 22`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.02958, "initial": 0.05, @@ -1822,7 +1822,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 23`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.03092, "initial": 0.05, @@ -1836,7 +1836,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 24`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.03226, "initial": 0.05, @@ -1850,7 +1850,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 25`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0336, "initial": 0.05, @@ -1864,7 +1864,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 26`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.03494, "initial": 0.05, @@ -1878,7 +1878,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 27`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0363, "initial": 0.05, @@ -1892,7 +1892,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 28`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.03764, "initial": 0.05, @@ -1906,7 +1906,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 29`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.03898, "initial": 0.05, @@ -1920,7 +1920,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 30`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.04032, "initial": 0.05, @@ -1934,7 +1934,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 31`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.04166, "initial": 0.05, @@ -1948,7 +1948,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 32`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.04302, "initial": 0.05, @@ -1962,7 +1962,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 33`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.04436, "initial": 0.05, @@ -1976,7 +1976,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 34`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0457, "initial": 0.05, @@ -1990,7 +1990,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 35`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.04704, "initial": 0.05, @@ -2004,7 +2004,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 36`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.04838, "initial": 0.05, @@ -2018,7 +2018,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 37`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.04974, "initial": 0.05, @@ -2032,7 +2032,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 38`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.05108, "initial": 0.05, @@ -2046,7 +2046,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 39`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.05242, "initial": 0.05, @@ -2060,7 +2060,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 40`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.05376, "initial": 0.05, @@ -2074,7 +2074,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 41`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0551, "initial": 0.05, @@ -2088,7 +2088,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 42`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.05646, "initial": 0.05, @@ -2102,7 +2102,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 43`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0578, "initial": 0.05, @@ -2116,7 +2116,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 44`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.05914, "initial": 0.05, @@ -2130,7 +2130,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 45`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.06048, "initial": 0.05, @@ -2144,7 +2144,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 46`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.06182, "initial": 0.05, @@ -2158,7 +2158,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 47`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.06318, "initial": 0.05, @@ -2172,7 +2172,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 48`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.06452, "initial": 0.05, @@ -2186,7 +2186,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 49`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.06586, "initial": 0.05, @@ -2200,7 +2200,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 50`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0672, "initial": 0.05, @@ -2214,7 +2214,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 51`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.06854, "initial": 0.05, @@ -2228,7 +2228,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 52`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0699, "initial": 0.05, @@ -2242,7 +2242,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 53`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.07124, "initial": 0.05, @@ -2256,7 +2256,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 54`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.07258, "initial": 0.05, @@ -2270,7 +2270,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 55`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.07392, "initial": 0.05, @@ -2284,7 +2284,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 56`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.07528, "initial": 0.05, @@ -2298,7 +2298,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 57`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.07662, "initial": 0.05, @@ -2312,7 +2312,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 58`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.07796, "initial": 0.05, @@ -2326,7 +2326,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 59`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0793, "initial": 0.05, @@ -2340,7 +2340,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 60`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.08064, "initial": 0.05, @@ -2354,7 +2354,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 61`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.082, "initial": 0.05, @@ -2368,7 +2368,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 62`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.08334, "initial": 0.05, @@ -2382,7 +2382,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 63`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.08468, "initial": 0.05, @@ -2396,7 +2396,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 64`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.08602, "initial": 0.05, @@ -2410,7 +2410,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 65`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.08736, "initial": 0.05, @@ -2424,7 +2424,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 66`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.08872, "initial": 0.05, @@ -2438,7 +2438,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 67`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.09006, "initial": 0.05, @@ -2452,7 +2452,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 68`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.0914, "initial": 0.05, @@ -2466,7 +2466,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 69`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.09274, "initial": 0.05, @@ -2480,7 +2480,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 70`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.09408, "initial": 0.05, @@ -2494,7 +2494,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 71`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.09544, "initial": 0.05, @@ -2508,7 +2508,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 72`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.09678, "initial": 0.05, @@ -2522,7 +2522,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 73`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.09812, "initial": 0.05, @@ -2536,7 +2536,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 74`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.09946, "initial": 0.05, @@ -2550,7 +2550,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 75`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.1008, "initial": 0.05, @@ -2564,7 +2564,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 76`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.10216, "initial": 0.05, @@ -2578,7 +2578,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 77`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.1035, "initial": 0.05, @@ -2592,7 +2592,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 78`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.10484, "initial": 0.05, @@ -2606,7 +2606,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 79`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.10618, "initial": 0.05, @@ -2620,7 +2620,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 80`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.10752, "initial": 0.05, @@ -2634,7 +2634,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 81`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.10888, "initial": 0.05, @@ -2648,7 +2648,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 82`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.11022, "initial": 0.05, @@ -2662,7 +2662,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 83`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.11156, "initial": 0.05, @@ -2676,7 +2676,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 84`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.1129, "initial": 0.05, @@ -2690,7 +2690,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 85`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.11424, "initial": 0.05, @@ -2704,7 +2704,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 86`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.1156, "initial": 0.05, @@ -2718,7 +2718,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 87`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.11694, "initial": 0.05, @@ -2732,7 +2732,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 88`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.11828, "initial": 0.05, @@ -2746,7 +2746,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 89`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.11962, "initial": 0.05, @@ -2760,7 +2760,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 90`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.12098, "initial": 0.05, @@ -2774,7 +2774,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 91`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.12232, "initial": 0.05, @@ -2788,7 +2788,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 92`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.12366, "initial": 0.05, @@ -2802,7 +2802,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 93`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.125, "initial": 0.05, @@ -2816,7 +2816,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 94`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.12634, "initial": 0.05, @@ -2830,7 +2830,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 95`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.1277, "initial": 0.05, @@ -2844,7 +2844,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 96`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.12904, "initial": 0.05, @@ -2858,7 +2858,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 97`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.13038, "initial": 0.05, @@ -2872,7 +2872,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 98`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.13172, "initial": 0.05, @@ -2886,7 +2886,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 99`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.13306, "initial": 0.05, @@ -2900,7 +2900,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 100`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.13442, "initial": 0.05, @@ -2914,7 +2914,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 101`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.13576, "initial": 0.05, @@ -2928,7 +2928,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 102`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.1371, "initial": 0.05, @@ -2942,7 +2942,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 103`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.13844, "initial": 0.05, @@ -2956,7 +2956,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 104`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.13978, "initial": 0.05, @@ -2970,7 +2970,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 105`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.14114, "initial": 0.05, @@ -2984,7 +2984,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 106`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.14248, "initial": 0.05, @@ -2998,7 +2998,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 107`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.14382, "initial": 0.05, @@ -3012,7 +3012,7 @@ Object { exports[`FetchHistoricalSummary Calendar Aligned and Timeslices SLOs returns the summary 108`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.14516, "initial": 0.05, @@ -3026,7 +3026,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 1`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3040,7 +3040,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 2`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3054,7 +3054,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 3`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3068,7 +3068,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 4`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3082,7 +3082,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 5`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3096,7 +3096,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 6`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3110,7 +3110,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 7`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3124,7 +3124,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 8`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3138,7 +3138,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 9`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3152,7 +3152,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 10`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3166,7 +3166,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 11`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3180,7 +3180,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 12`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3194,7 +3194,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 13`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3208,7 +3208,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 14`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3222,7 +3222,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 15`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3236,7 +3236,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 16`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3250,7 +3250,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 17`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3264,7 +3264,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 18`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3278,7 +3278,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 19`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3292,7 +3292,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 20`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3306,7 +3306,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 21`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3320,7 +3320,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 22`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3334,7 +3334,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 23`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3348,7 +3348,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 24`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3362,7 +3362,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 25`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3376,7 +3376,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 26`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3390,7 +3390,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 27`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3404,7 +3404,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 28`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3418,7 +3418,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 29`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3432,7 +3432,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 30`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3446,7 +3446,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 31`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3460,7 +3460,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 32`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3474,7 +3474,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 33`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3488,7 +3488,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 34`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3502,7 +3502,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 35`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3516,7 +3516,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 36`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3530,7 +3530,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 37`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3544,7 +3544,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 38`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3558,7 +3558,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 39`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3572,7 +3572,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 40`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3586,7 +3586,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 41`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3600,7 +3600,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 42`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3614,7 +3614,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 43`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3628,7 +3628,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 44`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3642,7 +3642,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 45`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3656,7 +3656,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 46`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3670,7 +3670,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 47`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3684,7 +3684,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 48`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3698,7 +3698,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 49`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3712,7 +3712,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 50`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3726,7 +3726,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 51`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3740,7 +3740,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 52`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3754,7 +3754,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 53`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3768,7 +3768,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 54`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3782,7 +3782,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 55`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3796,7 +3796,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 56`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3810,7 +3810,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 57`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3824,7 +3824,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 58`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3838,7 +3838,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 59`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3852,7 +3852,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 60`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3866,7 +3866,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 61`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3880,7 +3880,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 62`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3894,7 +3894,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 63`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3908,7 +3908,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 64`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3922,7 +3922,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 65`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3936,7 +3936,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 66`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3950,7 +3950,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 67`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3964,7 +3964,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 68`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3978,7 +3978,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 69`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -3992,7 +3992,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 70`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4006,7 +4006,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 71`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4020,7 +4020,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 72`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4034,7 +4034,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 73`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4048,7 +4048,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 74`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4062,7 +4062,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 75`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4076,7 +4076,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 76`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4090,7 +4090,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 77`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4104,7 +4104,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 78`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4118,7 +4118,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 79`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4132,7 +4132,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 80`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4146,7 +4146,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 81`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4160,7 +4160,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 82`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4174,7 +4174,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 83`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4188,7 +4188,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 84`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4202,7 +4202,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 85`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4216,7 +4216,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 86`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4230,7 +4230,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 87`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4244,7 +4244,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 88`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4258,7 +4258,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 89`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4272,7 +4272,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 90`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4286,7 +4286,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 91`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4300,7 +4300,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 92`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4314,7 +4314,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 93`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4328,7 +4328,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 94`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4342,7 +4342,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 95`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4356,7 +4356,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 96`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4370,7 +4370,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 97`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4384,7 +4384,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 98`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4398,7 +4398,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 99`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4412,7 +4412,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 100`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4426,7 +4426,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 101`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4440,7 +4440,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 102`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4454,7 +4454,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 103`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4468,7 +4468,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 104`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4482,7 +4482,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 105`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4496,7 +4496,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 106`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4510,7 +4510,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 107`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4524,7 +4524,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 108`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4538,7 +4538,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 109`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4552,7 +4552,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 110`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4566,7 +4566,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 111`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4580,7 +4580,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 112`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4594,7 +4594,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 113`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4608,7 +4608,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 114`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4622,7 +4622,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 115`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4636,7 +4636,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 116`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4650,7 +4650,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 117`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4664,7 +4664,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 118`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4678,7 +4678,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 119`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4692,7 +4692,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 120`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4706,7 +4706,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 121`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4720,7 +4720,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 122`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4734,7 +4734,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 123`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4748,7 +4748,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 124`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4762,7 +4762,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 125`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4776,7 +4776,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 126`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4790,7 +4790,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 127`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4804,7 +4804,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 128`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4818,7 +4818,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 129`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4832,7 +4832,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 130`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4846,7 +4846,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 131`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4860,7 +4860,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 132`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4874,7 +4874,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 133`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4888,7 +4888,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 134`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4902,7 +4902,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 135`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4916,7 +4916,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 136`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4930,7 +4930,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 137`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4944,7 +4944,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 138`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4958,7 +4958,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 139`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4972,7 +4972,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 140`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -4986,7 +4986,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 141`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5000,7 +5000,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 142`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5014,7 +5014,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 143`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5028,7 +5028,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 144`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5042,7 +5042,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 145`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5056,7 +5056,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 146`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5070,7 +5070,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 147`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5084,7 +5084,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 148`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5098,7 +5098,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 149`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5112,7 +5112,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 150`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5126,7 +5126,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 151`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5140,7 +5140,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 152`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5154,7 +5154,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 153`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5168,7 +5168,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 154`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5182,7 +5182,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 155`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5196,7 +5196,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 156`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5210,7 +5210,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 157`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5224,7 +5224,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 158`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5238,7 +5238,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 159`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5252,7 +5252,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 160`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5266,7 +5266,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 161`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5280,7 +5280,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 162`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5294,7 +5294,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 163`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5308,7 +5308,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 164`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5322,7 +5322,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 165`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5336,7 +5336,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 166`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5350,7 +5350,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 167`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5364,7 +5364,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 168`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5378,7 +5378,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 169`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5392,7 +5392,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 170`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5406,7 +5406,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 171`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5420,7 +5420,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 172`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5434,7 +5434,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 173`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5448,7 +5448,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 174`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5462,7 +5462,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 175`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5476,7 +5476,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 176`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5490,7 +5490,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 177`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5504,7 +5504,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 178`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5518,7 +5518,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 179`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5532,7 +5532,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the SLO timeWindow date range 180`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -5546,7 +5546,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 1`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5560,7 +5560,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 2`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5574,7 +5574,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 3`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5588,7 +5588,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 4`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5602,7 +5602,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 5`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5616,7 +5616,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 6`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5630,7 +5630,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 7`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5644,7 +5644,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 8`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5658,7 +5658,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 9`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5672,7 +5672,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 10`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5686,7 +5686,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 11`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5700,7 +5700,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 12`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5714,7 +5714,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 13`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5728,7 +5728,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 14`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5742,7 +5742,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 15`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5756,7 +5756,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 16`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5770,7 +5770,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 17`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5784,7 +5784,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 18`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5798,7 +5798,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 19`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5812,7 +5812,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 20`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5826,7 +5826,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 21`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5840,7 +5840,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 22`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5854,7 +5854,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 23`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5868,7 +5868,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 24`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5882,7 +5882,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 25`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5896,7 +5896,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 26`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5910,7 +5910,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 27`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5924,7 +5924,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 28`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5938,7 +5938,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 29`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5952,7 +5952,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 30`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5966,7 +5966,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 31`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5980,7 +5980,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 32`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -5994,7 +5994,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 33`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6008,7 +6008,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 34`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6022,7 +6022,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 35`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6036,7 +6036,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 36`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6050,7 +6050,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 37`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6064,7 +6064,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 38`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6078,7 +6078,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 39`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6092,7 +6092,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 40`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6106,7 +6106,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 41`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6120,7 +6120,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 42`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6134,7 +6134,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 43`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6148,7 +6148,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 44`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6162,7 +6162,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 45`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6176,7 +6176,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 46`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6190,7 +6190,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 47`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6204,7 +6204,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 48`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6218,7 +6218,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 49`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6232,7 +6232,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 50`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6246,7 +6246,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 51`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6260,7 +6260,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 52`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6274,7 +6274,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 53`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6288,7 +6288,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 54`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6302,7 +6302,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 55`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6316,7 +6316,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 56`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6330,7 +6330,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 57`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6344,7 +6344,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 58`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6358,7 +6358,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 59`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6372,7 +6372,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 60`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6386,7 +6386,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 61`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6400,7 +6400,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 62`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6414,7 +6414,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 63`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6428,7 +6428,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 64`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6442,7 +6442,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 65`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6456,7 +6456,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 66`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6470,7 +6470,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 67`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6484,7 +6484,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 68`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6498,7 +6498,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 69`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6512,7 +6512,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 70`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6526,7 +6526,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 71`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6540,7 +6540,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 72`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6554,7 +6554,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 73`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6568,7 +6568,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 74`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6582,7 +6582,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 75`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6596,7 +6596,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 76`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6610,7 +6610,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 77`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6624,7 +6624,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 78`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6638,7 +6638,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 79`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6652,7 +6652,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 80`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6666,7 +6666,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 81`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6680,7 +6680,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 82`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6694,7 +6694,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 83`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6708,7 +6708,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 84`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6722,7 +6722,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 85`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6736,7 +6736,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 86`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6750,7 +6750,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 87`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6764,7 +6764,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 88`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6778,7 +6778,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 89`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6792,7 +6792,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 90`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6806,7 +6806,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 91`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6820,7 +6820,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 92`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6834,7 +6834,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 93`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6848,7 +6848,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 94`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6862,7 +6862,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 95`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6876,7 +6876,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 96`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6890,7 +6890,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Occurrences SLOs returns the summary using the provided date range 97`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.3, "initial": 0.1, @@ -6904,7 +6904,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 1`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -6918,7 +6918,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 2`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -6932,7 +6932,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 3`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -6946,7 +6946,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 4`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -6960,7 +6960,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 5`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -6974,7 +6974,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 6`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -6988,7 +6988,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 7`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7002,7 +7002,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 8`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7016,7 +7016,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 9`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7030,7 +7030,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 10`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7044,7 +7044,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 11`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7058,7 +7058,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 12`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7072,7 +7072,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 13`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7086,7 +7086,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 14`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7100,7 +7100,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 15`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7114,7 +7114,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 16`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7128,7 +7128,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 17`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7142,7 +7142,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 18`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7156,7 +7156,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 19`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7170,7 +7170,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 20`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7184,7 +7184,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 21`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7198,7 +7198,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 22`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7212,7 +7212,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 23`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7226,7 +7226,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 24`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7240,7 +7240,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 25`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7254,7 +7254,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 26`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7268,7 +7268,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 27`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7282,7 +7282,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 28`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7296,7 +7296,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 29`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7310,7 +7310,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 30`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7324,7 +7324,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 31`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7338,7 +7338,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 32`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7352,7 +7352,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 33`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7366,7 +7366,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 34`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7380,7 +7380,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 35`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7394,7 +7394,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 36`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7408,7 +7408,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 37`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7422,7 +7422,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 38`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7436,7 +7436,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 39`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7450,7 +7450,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 40`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7464,7 +7464,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 41`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7478,7 +7478,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 42`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7492,7 +7492,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 43`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7506,7 +7506,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 44`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7520,7 +7520,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 45`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7534,7 +7534,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 46`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7548,7 +7548,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 47`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7562,7 +7562,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 48`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7576,7 +7576,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 49`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7590,7 +7590,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 50`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7604,7 +7604,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 51`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7618,7 +7618,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 52`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7632,7 +7632,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 53`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7646,7 +7646,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 54`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7660,7 +7660,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 55`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7674,7 +7674,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 56`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7688,7 +7688,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 57`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7702,7 +7702,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 58`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7716,7 +7716,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 59`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7730,7 +7730,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 60`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7744,7 +7744,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 61`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7758,7 +7758,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 62`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7772,7 +7772,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 63`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7786,7 +7786,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 64`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7800,7 +7800,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 65`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7814,7 +7814,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 66`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7828,7 +7828,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 67`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7842,7 +7842,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 68`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7856,7 +7856,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 69`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7870,7 +7870,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 70`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7884,7 +7884,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 71`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7898,7 +7898,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 72`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7912,7 +7912,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 73`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7926,7 +7926,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 74`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7940,7 +7940,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 75`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7954,7 +7954,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 76`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7968,7 +7968,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 77`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7982,7 +7982,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 78`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -7996,7 +7996,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 79`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8010,7 +8010,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 80`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8024,7 +8024,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 81`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8038,7 +8038,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 82`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8052,7 +8052,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 83`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8066,7 +8066,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 84`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8080,7 +8080,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 85`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8094,7 +8094,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 86`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8108,7 +8108,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 87`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8122,7 +8122,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 88`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8136,7 +8136,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 89`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8150,7 +8150,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 90`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8164,7 +8164,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 91`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8178,7 +8178,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 92`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8192,7 +8192,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 93`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8206,7 +8206,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 94`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8220,7 +8220,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 95`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8234,7 +8234,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 96`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8248,7 +8248,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 97`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8262,7 +8262,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 98`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8276,7 +8276,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 99`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8290,7 +8290,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 100`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8304,7 +8304,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 101`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8318,7 +8318,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 102`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8332,7 +8332,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 103`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8346,7 +8346,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 104`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8360,7 +8360,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 105`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8374,7 +8374,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 106`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8388,7 +8388,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 107`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8402,7 +8402,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 108`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8416,7 +8416,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 109`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8430,7 +8430,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 110`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8444,7 +8444,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 111`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8458,7 +8458,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 112`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8472,7 +8472,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 113`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8486,7 +8486,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 114`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8500,7 +8500,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 115`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8514,7 +8514,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 116`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8528,7 +8528,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 117`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8542,7 +8542,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 118`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8556,7 +8556,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 119`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8570,7 +8570,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 120`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8584,7 +8584,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 121`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8598,7 +8598,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 122`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8612,7 +8612,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 123`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8626,7 +8626,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 124`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8640,7 +8640,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 125`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8654,7 +8654,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 126`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8668,7 +8668,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 127`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8682,7 +8682,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 128`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8696,7 +8696,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 129`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8710,7 +8710,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 130`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8724,7 +8724,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 131`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8738,7 +8738,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 132`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8752,7 +8752,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 133`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8766,7 +8766,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 134`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8780,7 +8780,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 135`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8794,7 +8794,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 136`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8808,7 +8808,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 137`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8822,7 +8822,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 138`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8836,7 +8836,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 139`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8850,7 +8850,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 140`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8864,7 +8864,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 141`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8878,7 +8878,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 142`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8892,7 +8892,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 143`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8906,7 +8906,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 144`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8920,7 +8920,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 145`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8934,7 +8934,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 146`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8948,7 +8948,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 147`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8962,7 +8962,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 148`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8976,7 +8976,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 149`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -8990,7 +8990,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 150`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9004,7 +9004,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 151`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9018,7 +9018,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 152`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9032,7 +9032,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 153`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9046,7 +9046,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 154`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9060,7 +9060,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 155`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9074,7 +9074,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 156`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9088,7 +9088,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 157`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9102,7 +9102,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 158`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9116,7 +9116,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 159`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9130,7 +9130,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 160`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9144,7 +9144,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 161`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9158,7 +9158,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 162`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9172,7 +9172,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 163`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9186,7 +9186,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 164`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9200,7 +9200,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 165`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9214,7 +9214,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 166`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9228,7 +9228,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 167`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9242,7 +9242,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 168`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9256,7 +9256,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 169`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9270,7 +9270,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 170`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9284,7 +9284,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 171`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9298,7 +9298,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 172`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9312,7 +9312,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 173`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9326,7 +9326,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 174`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9340,7 +9340,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 175`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9354,7 +9354,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 176`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9368,7 +9368,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 177`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9382,7 +9382,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 178`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9396,7 +9396,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 179`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9410,7 +9410,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the SLO timeWindow date range 180`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.66666, "initial": 0.05, @@ -9424,7 +9424,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 1`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.55648, "initial": 0.05, @@ -9438,7 +9438,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 2`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.5574, "initial": 0.05, @@ -9452,7 +9452,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 3`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.55834, "initial": 0.05, @@ -9466,7 +9466,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 4`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.55926, "initial": 0.05, @@ -9480,7 +9480,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 5`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56018, "initial": 0.05, @@ -9494,7 +9494,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 6`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56112, "initial": 0.05, @@ -9508,7 +9508,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 7`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56204, "initial": 0.05, @@ -9522,7 +9522,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 8`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56296, "initial": 0.05, @@ -9536,7 +9536,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 9`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56388, "initial": 0.05, @@ -9550,7 +9550,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 10`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56482, "initial": 0.05, @@ -9564,7 +9564,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 11`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56574, "initial": 0.05, @@ -9578,7 +9578,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 12`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56666, "initial": 0.05, @@ -9592,7 +9592,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 13`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.5676, "initial": 0.05, @@ -9606,7 +9606,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 14`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56852, "initial": 0.05, @@ -9620,7 +9620,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 15`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.56944, "initial": 0.05, @@ -9634,7 +9634,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 16`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57038, "initial": 0.05, @@ -9648,7 +9648,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 17`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.5713, "initial": 0.05, @@ -9662,7 +9662,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 18`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57222, "initial": 0.05, @@ -9676,7 +9676,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 19`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57314, "initial": 0.05, @@ -9690,7 +9690,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 20`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57408, "initial": 0.05, @@ -9704,7 +9704,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 21`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.575, "initial": 0.05, @@ -9718,7 +9718,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 22`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57592, "initial": 0.05, @@ -9732,7 +9732,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 23`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57686, "initial": 0.05, @@ -9746,7 +9746,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 24`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57778, "initial": 0.05, @@ -9760,7 +9760,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 25`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.5787, "initial": 0.05, @@ -9774,7 +9774,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 26`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.57962, "initial": 0.05, @@ -9788,7 +9788,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 27`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58056, "initial": 0.05, @@ -9802,7 +9802,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 28`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58148, "initial": 0.05, @@ -9816,7 +9816,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 29`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.5824, "initial": 0.05, @@ -9830,7 +9830,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 30`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58334, "initial": 0.05, @@ -9844,7 +9844,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 31`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58426, "initial": 0.05, @@ -9858,7 +9858,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 32`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58518, "initial": 0.05, @@ -9872,7 +9872,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 33`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58612, "initial": 0.05, @@ -9886,7 +9886,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 34`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58704, "initial": 0.05, @@ -9900,7 +9900,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 35`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58796, "initial": 0.05, @@ -9914,7 +9914,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 36`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58888, "initial": 0.05, @@ -9928,7 +9928,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 37`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.58982, "initial": 0.05, @@ -9942,7 +9942,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 38`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59074, "initial": 0.05, @@ -9956,7 +9956,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 39`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59166, "initial": 0.05, @@ -9970,7 +9970,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 40`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.5926, "initial": 0.05, @@ -9984,7 +9984,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 41`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59352, "initial": 0.05, @@ -9998,7 +9998,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 42`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59444, "initial": 0.05, @@ -10012,7 +10012,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 43`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59538, "initial": 0.05, @@ -10026,7 +10026,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 44`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.5963, "initial": 0.05, @@ -10040,7 +10040,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 45`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59722, "initial": 0.05, @@ -10054,7 +10054,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 46`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59814, "initial": 0.05, @@ -10068,7 +10068,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 47`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.59908, "initial": 0.05, @@ -10082,7 +10082,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 48`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10096,7 +10096,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 49`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60092, "initial": 0.05, @@ -10110,7 +10110,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 50`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60186, "initial": 0.05, @@ -10124,7 +10124,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 51`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60278, "initial": 0.05, @@ -10138,7 +10138,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 52`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6037, "initial": 0.05, @@ -10152,7 +10152,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 53`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60462, "initial": 0.05, @@ -10166,7 +10166,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 54`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60556, "initial": 0.05, @@ -10180,7 +10180,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 55`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60648, "initial": 0.05, @@ -10194,7 +10194,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 56`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6074, "initial": 0.05, @@ -10208,7 +10208,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 57`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60834, "initial": 0.05, @@ -10222,7 +10222,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 58`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.60926, "initial": 0.05, @@ -10236,7 +10236,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 59`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61018, "initial": 0.05, @@ -10250,7 +10250,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 60`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61112, "initial": 0.05, @@ -10264,7 +10264,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 61`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61204, "initial": 0.05, @@ -10278,7 +10278,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 62`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61296, "initial": 0.05, @@ -10292,7 +10292,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 63`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61388, "initial": 0.05, @@ -10306,7 +10306,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 64`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61482, "initial": 0.05, @@ -10320,7 +10320,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 65`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61574, "initial": 0.05, @@ -10334,7 +10334,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 66`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61666, "initial": 0.05, @@ -10348,7 +10348,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 67`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6176, "initial": 0.05, @@ -10362,7 +10362,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 68`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61852, "initial": 0.05, @@ -10376,7 +10376,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 69`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.61944, "initial": 0.05, @@ -10390,7 +10390,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 70`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62038, "initial": 0.05, @@ -10404,7 +10404,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 71`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6213, "initial": 0.05, @@ -10418,7 +10418,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 72`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62222, "initial": 0.05, @@ -10432,7 +10432,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 73`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62314, "initial": 0.05, @@ -10446,7 +10446,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 74`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62408, "initial": 0.05, @@ -10460,7 +10460,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 75`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.625, "initial": 0.05, @@ -10474,7 +10474,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 76`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62592, "initial": 0.05, @@ -10488,7 +10488,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 77`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62686, "initial": 0.05, @@ -10502,7 +10502,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 78`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62778, "initial": 0.05, @@ -10516,7 +10516,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 79`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6287, "initial": 0.05, @@ -10530,7 +10530,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 80`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.62962, "initial": 0.05, @@ -10544,7 +10544,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 81`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63056, "initial": 0.05, @@ -10558,7 +10558,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 82`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63148, "initial": 0.05, @@ -10572,7 +10572,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 83`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6324, "initial": 0.05, @@ -10586,7 +10586,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 84`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63334, "initial": 0.05, @@ -10600,7 +10600,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 85`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63426, "initial": 0.05, @@ -10614,7 +10614,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 86`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63518, "initial": 0.05, @@ -10628,7 +10628,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 87`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63612, "initial": 0.05, @@ -10642,7 +10642,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 88`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63704, "initial": 0.05, @@ -10656,7 +10656,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 89`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63796, "initial": 0.05, @@ -10670,7 +10670,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 90`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63888, "initial": 0.05, @@ -10684,7 +10684,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 91`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.63982, "initial": 0.05, @@ -10698,7 +10698,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 92`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.64074, "initial": 0.05, @@ -10712,7 +10712,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 93`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.64166, "initial": 0.05, @@ -10726,7 +10726,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 94`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6426, "initial": 0.05, @@ -10740,7 +10740,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 95`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.64352, "initial": 0.05, @@ -10754,7 +10754,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 96`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.64444, "initial": 0.05, @@ -10768,7 +10768,7 @@ Object { exports[`FetchHistoricalSummary Rolling and Timeslices SLOs returns the summary using the provided date range 97`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.64538, "initial": 0.05, @@ -10782,7 +10782,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 1`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10796,7 +10796,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 2`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10810,7 +10810,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 3`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10824,7 +10824,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 4`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10838,7 +10838,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 5`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10852,7 +10852,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 6`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10866,7 +10866,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 7`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10880,7 +10880,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 8`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10894,7 +10894,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 9`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10908,7 +10908,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 10`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10922,7 +10922,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 11`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10936,7 +10936,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 12`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10950,7 +10950,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 13`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10964,7 +10964,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 14`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10978,7 +10978,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 15`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -10992,7 +10992,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 16`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11006,7 +11006,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 17`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11020,7 +11020,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 18`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11034,7 +11034,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 19`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11048,7 +11048,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 20`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11062,7 +11062,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 21`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11076,7 +11076,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 22`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11090,7 +11090,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 23`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11104,7 +11104,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 24`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11118,7 +11118,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 25`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11132,7 +11132,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 26`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11146,7 +11146,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 27`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11160,7 +11160,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 28`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11174,7 +11174,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 29`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11188,7 +11188,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 30`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11202,7 +11202,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 31`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11216,7 +11216,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 32`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11230,7 +11230,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 33`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11244,7 +11244,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 34`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11258,7 +11258,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 35`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11272,7 +11272,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 36`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11286,7 +11286,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 37`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11300,7 +11300,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 38`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11314,7 +11314,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 39`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11328,7 +11328,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 40`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11342,7 +11342,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 41`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11356,7 +11356,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 42`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11370,7 +11370,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 43`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11384,7 +11384,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 44`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11398,7 +11398,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 45`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11412,7 +11412,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 46`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11426,7 +11426,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 47`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11440,7 +11440,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 48`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11454,7 +11454,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 49`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11468,7 +11468,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 50`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11482,7 +11482,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 51`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11496,7 +11496,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 52`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11510,7 +11510,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 53`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11524,7 +11524,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 54`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11538,7 +11538,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 55`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11552,7 +11552,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 56`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11566,7 +11566,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 57`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11580,7 +11580,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 58`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11594,7 +11594,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 59`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11608,7 +11608,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 60`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11622,7 +11622,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 61`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11636,7 +11636,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 62`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11650,7 +11650,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 63`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11664,7 +11664,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 64`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11678,7 +11678,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 65`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11692,7 +11692,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 66`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11706,7 +11706,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 67`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11720,7 +11720,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 68`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11734,7 +11734,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 69`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11748,7 +11748,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 70`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11762,7 +11762,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 71`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11776,7 +11776,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 72`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11790,7 +11790,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 73`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11804,7 +11804,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 74`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11818,7 +11818,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 75`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11832,7 +11832,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 76`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11846,7 +11846,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 77`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11860,7 +11860,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 78`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11874,7 +11874,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 79`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11888,7 +11888,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 80`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11902,7 +11902,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 81`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11916,7 +11916,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 82`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11930,7 +11930,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 83`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11944,7 +11944,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 84`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11958,7 +11958,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 85`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11972,7 +11972,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 86`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -11986,7 +11986,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 87`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12000,7 +12000,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 88`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12014,7 +12014,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 89`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12028,7 +12028,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 90`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12042,7 +12042,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 91`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12056,7 +12056,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 92`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12070,7 +12070,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 93`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12084,7 +12084,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 94`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12098,7 +12098,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 95`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12112,7 +12112,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 96`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12126,7 +12126,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 97`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12140,7 +12140,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 98`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12154,7 +12154,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 99`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12168,7 +12168,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 100`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12182,7 +12182,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 101`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12196,7 +12196,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 102`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12210,7 +12210,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 103`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12224,7 +12224,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 104`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12238,7 +12238,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 105`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12252,7 +12252,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 106`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12266,7 +12266,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 107`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12280,7 +12280,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 108`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12294,7 +12294,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 109`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12308,7 +12308,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 110`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12322,7 +12322,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 111`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12336,7 +12336,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 112`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12350,7 +12350,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 113`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12364,7 +12364,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 114`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12378,7 +12378,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 115`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12392,7 +12392,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 116`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12406,7 +12406,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 117`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12420,7 +12420,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 118`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12434,7 +12434,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 119`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12448,7 +12448,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 120`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12462,7 +12462,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 121`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12476,7 +12476,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 122`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12490,7 +12490,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 123`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12504,7 +12504,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 124`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12518,7 +12518,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 125`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12532,7 +12532,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 126`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12546,7 +12546,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 127`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12560,7 +12560,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 128`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12574,7 +12574,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 129`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12588,7 +12588,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 130`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12602,7 +12602,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 131`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12616,7 +12616,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 132`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12630,7 +12630,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 133`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12644,7 +12644,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 134`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12658,7 +12658,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 135`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12672,7 +12672,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 136`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12686,7 +12686,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 137`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12700,7 +12700,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 138`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12714,7 +12714,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 139`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12728,7 +12728,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 140`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12742,7 +12742,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 141`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12756,7 +12756,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 142`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12770,7 +12770,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 143`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12784,7 +12784,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 144`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12798,7 +12798,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 145`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12812,7 +12812,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 146`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12826,7 +12826,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 147`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12840,7 +12840,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 148`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12854,7 +12854,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 149`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12868,7 +12868,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 150`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12882,7 +12882,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 151`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12896,7 +12896,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 152`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12910,7 +12910,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 153`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12924,7 +12924,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 154`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12938,7 +12938,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 155`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12952,7 +12952,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 156`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12966,7 +12966,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 157`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12980,7 +12980,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 158`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -12994,7 +12994,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 159`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13008,7 +13008,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 160`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13022,7 +13022,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 161`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13036,7 +13036,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 162`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13050,7 +13050,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 163`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13064,7 +13064,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 164`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13078,7 +13078,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 165`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13092,7 +13092,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 166`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13106,7 +13106,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 167`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13120,7 +13120,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 168`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13134,7 +13134,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 169`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13148,7 +13148,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 170`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13162,7 +13162,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 171`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13176,7 +13176,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 172`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13190,7 +13190,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 173`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13204,7 +13204,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 174`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13218,7 +13218,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 175`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13232,7 +13232,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 176`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13246,7 +13246,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 177`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13260,7 +13260,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 178`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13274,7 +13274,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 179`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, @@ -13288,7 +13288,7 @@ Object { exports[`FetchHistoricalSummary filters with the 'instanceId' when provided 180`] = ` Object { - "date": Any, + "date": Any, "errorBudget": Object { "consumed": 0.6, "initial": 0.05, diff --git a/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.test.ts b/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.test.ts index d01d0f654bf54..7ad62c0444c26 100644 --- a/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.test.ts +++ b/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.test.ts @@ -12,7 +12,7 @@ import { DateRange, SLODefinition } from '../domain/models'; import { oneMinute, oneMonth, sevenDays, thirtyDays } from './fixtures/duration'; import { createSLO } from './fixtures/slo'; import { - DefaultHistoricalSummaryClient, + HistoricalSummaryClient, getFixedIntervalAndBucketsPerDay, } from './historical_summary_client'; @@ -168,7 +168,7 @@ describe('FetchHistoricalSummary', () => { groupBy: ALL_VALUE, }); esClientMock.msearch.mockResolvedValueOnce(generateEsResponseForRollingSLO(slo)); - const client = new DefaultHistoricalSummaryClient(esClientMock); + const client = new HistoricalSummaryClient(esClientMock); const results = await client.fetch({ list: [ @@ -185,7 +185,7 @@ describe('FetchHistoricalSummary', () => { }); results[0].data.forEach((dailyResult) => - expect(dailyResult).toMatchSnapshot({ date: expect.any(Date) }) + expect(dailyResult).toMatchSnapshot({ date: expect.any(String) }) ); }); @@ -201,7 +201,7 @@ describe('FetchHistoricalSummary', () => { }; esClientMock.msearch.mockResolvedValueOnce(generateEsResponseForRollingSLO(slo, range)); - const client = new DefaultHistoricalSummaryClient(esClientMock); + const client = new HistoricalSummaryClient(esClientMock); const results = await client.fetch({ list: [ @@ -219,7 +219,7 @@ describe('FetchHistoricalSummary', () => { }); results[0].data.forEach((dailyResult) => - expect(dailyResult).toMatchSnapshot({ date: expect.any(Date) }) + expect(dailyResult).toMatchSnapshot({ date: expect.any(String) }) ); }); }); @@ -233,7 +233,7 @@ describe('FetchHistoricalSummary', () => { groupBy: ALL_VALUE, }); esClientMock.msearch.mockResolvedValueOnce(generateEsResponseForRollingSLO(slo)); - const client = new DefaultHistoricalSummaryClient(esClientMock); + const client = new HistoricalSummaryClient(esClientMock); const results = await client.fetch({ list: [ @@ -250,7 +250,7 @@ describe('FetchHistoricalSummary', () => { }); results[0].data.forEach((dailyResult) => - expect(dailyResult).toMatchSnapshot({ date: expect.any(Date) }) + expect(dailyResult).toMatchSnapshot({ date: expect.any(String) }) ); expect(results[0].data).toHaveLength(180); }); @@ -267,7 +267,7 @@ describe('FetchHistoricalSummary', () => { to: new Date('2023-01-13T15:00:00.000Z'), }; esClientMock.msearch.mockResolvedValueOnce(generateEsResponseForRollingSLO(slo, range)); - const client = new DefaultHistoricalSummaryClient(esClientMock); + const client = new HistoricalSummaryClient(esClientMock); const results = await client.fetch({ list: [ @@ -285,7 +285,7 @@ describe('FetchHistoricalSummary', () => { }); results[0].data.forEach((dailyResult) => - expect(dailyResult).toMatchSnapshot({ date: expect.any(Date) }) + expect(dailyResult).toMatchSnapshot({ date: expect.any(String) }) ); }); }); @@ -301,7 +301,7 @@ describe('FetchHistoricalSummary', () => { objective: { target: 0.95, timesliceTarget: 0.9, timesliceWindow: oneMinute() }, }); esClientMock.msearch.mockResolvedValueOnce(generateEsResponseForMonthlyCalendarAlignedSLO()); - const client = new DefaultHistoricalSummaryClient(esClientMock); + const client = new HistoricalSummaryClient(esClientMock); const results = await client.fetch({ list: [ @@ -318,7 +318,7 @@ describe('FetchHistoricalSummary', () => { }); results[0].data.forEach((dailyResult) => - expect(dailyResult).toMatchSnapshot({ date: expect.any(Date) }) + expect(dailyResult).toMatchSnapshot({ date: expect.any(String) }) ); expect(results[0].data).toHaveLength(108); }); @@ -335,7 +335,7 @@ describe('FetchHistoricalSummary', () => { objective: { target: 0.95 }, }); esClientMock.msearch.mockResolvedValueOnce(generateEsResponseForMonthlyCalendarAlignedSLO()); - const client = new DefaultHistoricalSummaryClient(esClientMock); + const client = new HistoricalSummaryClient(esClientMock); const results = await client.fetch({ list: [ @@ -352,7 +352,7 @@ describe('FetchHistoricalSummary', () => { }); results[0].data.forEach((dailyResult) => - expect(dailyResult).toMatchSnapshot({ date: expect.any(Date) }) + expect(dailyResult).toMatchSnapshot({ date: expect.any(String) }) ); expect(results[0].data).toHaveLength(108); @@ -366,7 +366,7 @@ describe('FetchHistoricalSummary', () => { groupBy: 'host', }); esClientMock.msearch.mockResolvedValueOnce(generateEsResponseForRollingSLO(slo)); - const client = new DefaultHistoricalSummaryClient(esClientMock); + const client = new HistoricalSummaryClient(esClientMock); const results = await client.fetch({ list: [ @@ -388,7 +388,7 @@ describe('FetchHistoricalSummary', () => { ).toEqual({ term: { 'slo.instanceId': 'host-abc' } }); results[0].data.forEach((dailyResult) => - expect(dailyResult).toMatchSnapshot({ date: expect.any(Date) }) + expect(dailyResult).toMatchSnapshot({ date: expect.any(String) }) ); expect(results[0].data).toHaveLength(180); }); diff --git a/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.ts b/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.ts index 16d94ddb55574..cdabfb76dc379 100644 --- a/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.ts +++ b/x-pack/solutions/observability/plugins/slo/server/services/historical_summary_client.ts @@ -13,20 +13,19 @@ import { calendarAlignedTimeWindowSchema, DurationUnit, FetchHistoricalSummaryParams, - fetchHistoricalSummaryResponseSchema, + FetchHistoricalSummaryResponse, + HistoricalSummaryResponse, occurrencesBudgetingMethodSchema, rollingTimeWindowSchema, timeslicesBudgetingMethodSchema, toMomentUnitOfTime, } from '@kbn/slo-schema'; import { assertNever } from '@kbn/std'; -import * as t from 'io-ts'; import moment from 'moment'; import { SLI_DESTINATION_INDEX_PATTERN } from '../../common/constants'; import { DateRange, GroupBy, - HistoricalSummary, Objective, SLOId, TimeWindow, @@ -53,16 +52,10 @@ interface DailyAggBucket { }; } -export type HistoricalSummaryResponse = t.TypeOf; - -export interface HistoricalSummaryClient { - fetch(list: FetchHistoricalSummaryParams): Promise; -} - -export class DefaultHistoricalSummaryClient implements HistoricalSummaryClient { +export class HistoricalSummaryClient { constructor(private esClient: ElasticsearchClient) {} - async fetch(params: FetchHistoricalSummaryParams): Promise { + async fetch(params: FetchHistoricalSummaryParams): Promise { const dateRangeBySlo = params.list.reduce< Record >((acc, { sloId, timeWindow, range }) => { @@ -89,7 +82,7 @@ export class DefaultHistoricalSummaryClient implements HistoricalSummaryClient { ] ); - const historicalSummary: HistoricalSummaryResponse = []; + const historicalSummary: FetchHistoricalSummaryResponse = []; if (searches.length === 0) { return historicalSummary; } @@ -169,10 +162,10 @@ export class DefaultHistoricalSummaryClient implements HistoricalSummaryClient { function handleResultForCalendarAlignedAndOccurrences( objective: Objective, buckets: DailyAggBucket[] -): HistoricalSummary[] { +): HistoricalSummaryResponse[] { const initialErrorBudget = 1 - objective.target; - return buckets.map((bucket: DailyAggBucket): HistoricalSummary => { + return buckets.map((bucket: DailyAggBucket) => { const good = bucket.cumulative_good?.value ?? 0; const total = bucket.cumulative_total?.value ?? 0; const sliValue = computeSLI(good, total); @@ -180,7 +173,7 @@ function handleResultForCalendarAlignedAndOccurrences( const errorBudget = toErrorBudget(initialErrorBudget, consumedErrorBudget, true); return { - date: new Date(bucket.key_as_string), + date: bucket.key_as_string, errorBudget, sliValue, status: computeSummaryStatus(objective, sliValue, errorBudget), @@ -192,11 +185,11 @@ function handleResultForCalendarAlignedAndTimeslices( objective: Objective, buckets: DailyAggBucket[], dateRange: { range: DateRange; queryRange: DateRange } -): HistoricalSummary[] { +): HistoricalSummaryResponse[] { const initialErrorBudget = 1 - objective.target; const totalSlices = getSlicesFromDateRange(dateRange.range, objective.timesliceWindow!); - return buckets.map((bucket: DailyAggBucket): HistoricalSummary => { + return buckets.map((bucket: DailyAggBucket) => { const good = bucket.cumulative_good?.value ?? 0; const total = bucket.cumulative_total?.value ?? 0; const sliValue = computeSLI(good, total, totalSlices); @@ -204,7 +197,7 @@ function handleResultForCalendarAlignedAndTimeslices( const errorBudget = toErrorBudget(initialErrorBudget, consumedErrorBudget); return { - date: new Date(bucket.key_as_string), + date: bucket.key_as_string, errorBudget, sliValue, status: computeSummaryStatus(objective, sliValue, errorBudget), @@ -216,7 +209,7 @@ function handleResultForRollingAndOccurrences( objective: Objective, buckets: DailyAggBucket[], dateRange: { range: DateRange; queryRange: DateRange } -): HistoricalSummary[] { +): HistoricalSummaryResponse[] { const initialErrorBudget = 1 - objective.target; return buckets @@ -225,7 +218,7 @@ function handleResultForRollingAndOccurrences( moment(bucket.key_as_string).isSameOrAfter(dateRange.range.from) && moment(bucket.key_as_string).isSameOrBefore(dateRange.range.to) ) - .map((bucket: DailyAggBucket): HistoricalSummary => { + .map((bucket: DailyAggBucket) => { const good = bucket.cumulative_good?.value ?? 0; const total = bucket.cumulative_total?.value ?? 0; @@ -234,7 +227,7 @@ function handleResultForRollingAndOccurrences( const errorBudget = toErrorBudget(initialErrorBudget, consumedErrorBudget); return { - date: new Date(bucket.key_as_string), + date: bucket.key_as_string, errorBudget, sliValue, status: computeSummaryStatus(objective, sliValue, errorBudget), @@ -247,7 +240,7 @@ function handleResultForRollingAndTimeslices( timeWindow: TimeWindow, buckets: DailyAggBucket[], dateRange: { range: DateRange; queryRange: DateRange } -): HistoricalSummary[] { +): HistoricalSummaryResponse[] { const initialErrorBudget = 1 - objective.target; const totalSlices = Math.ceil( @@ -260,7 +253,7 @@ function handleResultForRollingAndTimeslices( moment(bucket.key_as_string).isSameOrAfter(dateRange.range.from) && moment(bucket.key_as_string).isSameOrBefore(dateRange.range.to) ) - .map((bucket: DailyAggBucket): HistoricalSummary => { + .map((bucket: DailyAggBucket) => { const good = bucket.cumulative_good?.value ?? 0; const total = bucket.cumulative_total?.value ?? 0; const sliValue = computeSLI(good, total, totalSlices); @@ -268,7 +261,7 @@ function handleResultForRollingAndTimeslices( const errorBudget = toErrorBudget(initialErrorBudget, consumedErrorBudget); return { - date: new Date(bucket.key_as_string), + date: bucket.key_as_string, errorBudget, sliValue, status: computeSummaryStatus(objective, sliValue, errorBudget), diff --git a/x-pack/solutions/observability/plugins/slo/tsconfig.json b/x-pack/solutions/observability/plugins/slo/tsconfig.json index b7d7642761d5e..95f82ebbea992 100644 --- a/x-pack/solutions/observability/plugins/slo/tsconfig.json +++ b/x-pack/solutions/observability/plugins/slo/tsconfig.json @@ -104,5 +104,6 @@ "@kbn/response-ops-rule-params", "@kbn/core-test-helpers-kbn-server", "@kbn/security-plugin", + "@kbn/server-route-repository-utils", ] }