From 9f7b9dc8485c899ae393be70e01a8ce730a586e7 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 10:38:59 +0200 Subject: [PATCH 01/31] feat: insights --- apps/api/src/app/insights/insights.module.ts | 10 ++++++ apps/api/src/app/insights/usecases/index.ts | 3 ++ .../usage-insights/usage-insights.command.ts | 7 ++++ .../usage-insights/usage-insights.usecase.ts | 36 +++++++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 apps/api/src/app/insights/insights.module.ts create mode 100644 apps/api/src/app/insights/usecases/index.ts create mode 100644 apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts create mode 100644 apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts diff --git a/apps/api/src/app/insights/insights.module.ts b/apps/api/src/app/insights/insights.module.ts new file mode 100644 index 00000000000..1a407a69e19 --- /dev/null +++ b/apps/api/src/app/insights/insights.module.ts @@ -0,0 +1,10 @@ +import { Module } from '@nestjs/common'; +import { USE_CASES } from './usecases'; +import { SharedModule } from '../shared/shared.module'; + +@Module({ + imports: [SharedModule], + providers: [...USE_CASES], + exports: [...USE_CASES], +}) +export class InsightsModule {} diff --git a/apps/api/src/app/insights/usecases/index.ts b/apps/api/src/app/insights/usecases/index.ts new file mode 100644 index 00000000000..4a6a506f294 --- /dev/null +++ b/apps/api/src/app/insights/usecases/index.ts @@ -0,0 +1,3 @@ +import { UsageInsights } from './usage-insights/usage-insights.usecase'; + +export const USE_CASES = [UsageInsights]; diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts new file mode 100644 index 00000000000..e9571a64c67 --- /dev/null +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts @@ -0,0 +1,7 @@ +import { IsString } from 'class-validator'; +import { EnvironmentCommand } from '@novu/application-generic'; + +export class UsageInsightsCommand extends EnvironmentCommand { + @IsString() + organizationId: string; +} diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts new file mode 100644 index 00000000000..9cf874a4091 --- /dev/null +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -0,0 +1,36 @@ +import { Injectable } from '@nestjs/common'; +import { MessageRepository, NotificationRepository } from '@novu/dal'; +import { InstrumentUsecase } from '@novu/application-generic'; + +import { UsageInsightsCommand } from './usage-insights.command'; + +interface IUsageInsightsResponse { + totalNotifications: number; + totalMessages: number; +} + +@Injectable() +export class UsageInsights { + constructor( + private notificationRepository: NotificationRepository, + private messageRepository: MessageRepository + ) {} + + @InstrumentUsecase() + async execute(command: UsageInsightsCommand): Promise { + const query = { + _environmentId: command.environmentId, + _organizationId: command.organizationId, + }; + + const [totalNotifications, totalMessages] = await Promise.all([ + this.notificationRepository.count(query), + this.messageRepository.count(query), + ]); + + return { + totalNotifications, + totalMessages, + }; + } +} From 572866932a2b385f0cf097bb418f917c2881aa6a Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 12:46:03 +0200 Subject: [PATCH 02/31] feat: wip --- apps/api/mixpanel-insights-cache.json | 259 +++++++++++++++ apps/api/src/app.module.ts | 2 + apps/api/src/app/insights/insights.module.ts | 18 +- .../services/insights-initializer.service.ts | 19 ++ .../usage-insights/usage-insights.usecase.ts | 296 ++++++++++++++++-- apps/api/src/config/env.validators.ts | 5 + 6 files changed, 576 insertions(+), 23 deletions(-) create mode 100644 apps/api/mixpanel-insights-cache.json create mode 100644 apps/api/src/app/insights/services/insights-initializer.service.ts diff --git a/apps/api/mixpanel-insights-cache.json b/apps/api/mixpanel-insights-cache.json new file mode 100644 index 00000000000..40665acc73a --- /dev/null +++ b/apps/api/mixpanel-insights-cache.json @@ -0,0 +1,259 @@ +{ + "timestamp": 1733307854851, + "data": { + "headers": ["$event", "$distinct_id", "jobType", "name"], + "computed_at": "2024-12-04T10:24:13.677870+00:00", + "date_range": { + "from_date": "2024-11-25T00:00:00+02:00", + "to_date": "2024-12-04T12:24:12.264173+02:00" + }, + "meta": { + "min_sampling_factor": 1, + "is_segmentation_limit_hit": false, + "report_sections": { + "group": [ + { + "bookmark": { + "dataset": "$mixpanel", + "value": "$distinct_id", + "resourceType": "people", + "search": "", + "dataGroupId": "7400984862319914261", + "propertyType": "string" + } + }, + { + "bookmark": { + "dataset": "$mixpanel", + "value": "jobType", + "resourceType": "events", + "search": "", + "propertyType": "string" + } + }, + { + "bookmark": { + "dataset": "$mixpanel", + "value": "name", + "resourceType": "events", + "search": "", + "propertyType": "string" + } + } + ], + "show": [ + { + "metric_key": "A. Notification Subscriber Event Trigger [Total Events]" + }, + { + "metric_key": "B. Process Workflow Step - [Triggers] [Total Events]" + } + ] + } + }, + "series": { + "A. Notification Subscriber Event Trigger [Total Events]": { + "$overall": { + "2024-11-25T00:00:00+02:00": 161, + "2024-12-02T00:00:00+02:00": 86 + }, + "66bdd7144a759ebff0deb5e2": { + "$overall": { + "2024-11-25T00:00:00+02:00": 161, + "2024-12-02T00:00:00+02:00": 86 + }, + "undefined": { + "$overall": { + "2024-11-25T00:00:00+02:00": 161, + "2024-12-02T00:00:00+02:00": 86 + }, + "incorrect-password": { + "2024-11-25T00:00:00+02:00": 1, + "2024-12-02T00:00:00+02:00": 1 + }, + "FILE_UPLOAD": { + "2024-11-25T00:00:00+02:00": 29, + "2024-12-02T00:00:00+02:00": 4 + }, + "User Welcome Email": { + "2024-11-25T00:00:00+02:00": 3, + "2024-12-02T00:00:00+02:00": 2 + }, + "Schedule Project": { + "2024-11-25T00:00:00+02:00": 124, + "2024-12-02T00:00:00+02:00": 68 + }, + "Client UserAccount verification": { + "2024-11-25T00:00:00+02:00": 3, + "2024-12-02T00:00:00+02:00": 1 + }, + "Account Verification": { + "2024-11-25T00:00:00+02:00": 1, + "2024-12-02T00:00:00+02:00": 10 + } + } + } + }, + "B. Process Workflow Step - [Triggers] [Total Events]": { + "$overall": { + "2024-11-25T00:00:00+02:00": 351, + "2024-12-02T00:00:00+02:00": 176 + }, + "66bdd7144a759ebff0deb5e2": { + "$overall": { + "2024-11-25T00:00:00+02:00": 351, + "2024-12-02T00:00:00+02:00": 176 + }, + "push": { + "$overall": { + "2024-11-25T00:00:00+02:00": 29, + "2024-12-02T00:00:00+02:00": 4 + }, + "undefined": { + "2024-11-25T00:00:00+02:00": 29, + "2024-12-02T00:00:00+02:00": 4 + } + }, + "trigger": { + "$overall": { + "2024-11-25T00:00:00+02:00": 161, + "2024-12-02T00:00:00+02:00": 86 + }, + "undefined": { + "2024-11-25T00:00:00+02:00": 161, + "2024-12-02T00:00:00+02:00": 86 + } + }, + "email": { + "$overall": { + "2024-11-25T00:00:00+02:00": 161, + "2024-12-02T00:00:00+02:00": 86 + }, + "undefined": { + "2024-11-25T00:00:00+02:00": 161, + "2024-12-02T00:00:00+02:00": 86 + } + } + } + } + }, + "time_comparison": { + "date_range": { + "from_date": "2024-10-25T00:00:00+03:00", + "to_date": "2024-11-03T23:59:59.999000+02:00" + }, + "series": { + "A. Notification Subscriber Event Trigger [Total Events]": { + "$overall": { + "2024-10-21T00:00:00+03:00": 46, + "2024-10-28T00:00:00+02:00": 127 + }, + "66bdd7144a759ebff0deb5e2": { + "$overall": { + "2024-10-21T00:00:00+03:00": 46, + "2024-10-28T00:00:00+02:00": 127 + }, + "undefined": { + "$overall": { + "2024-10-21T00:00:00+03:00": 46, + "2024-10-28T00:00:00+02:00": 127 + }, + "incorrect-password": { + "2024-10-21T00:00:00+03:00": 1, + "2024-10-28T00:00:00+02:00": 0 + }, + "User Welcome Email": { + "2024-10-21T00:00:00+03:00": 1, + "2024-10-28T00:00:00+02:00": 2 + }, + "Schedule Project": { + "2024-10-21T00:00:00+03:00": 44, + "2024-10-28T00:00:00+02:00": 111 + }, + "DOWNLOAD_FILES": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 3 + }, + "WEBFORM_SUBMITTED": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 2 + }, + "FILE_UPLOAD": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 1 + }, + "Task Assigned": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 2 + }, + "Client UserAccount verification": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 2 + }, + "WEBFORM_CANCELLED": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 1 + }, + "WEBFORM_CREATED": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 3 + } + } + } + }, + "B. Process Workflow Step - [Triggers] [Total Events]": { + "$overall": { + "2024-10-21T00:00:00+03:00": 92, + "2024-10-28T00:00:00+02:00": 262 + }, + "66bdd7144a759ebff0deb5e2": { + "$overall": { + "2024-10-21T00:00:00+03:00": 92, + "2024-10-28T00:00:00+02:00": 262 + }, + "trigger": { + "$overall": { + "2024-10-21T00:00:00+03:00": 46, + "2024-10-28T00:00:00+02:00": 127 + }, + "undefined": { + "2024-10-21T00:00:00+03:00": 46, + "2024-10-28T00:00:00+02:00": 127 + } + }, + "email": { + "$overall": { + "2024-10-21T00:00:00+03:00": 46, + "2024-10-28T00:00:00+02:00": 127 + }, + "undefined": { + "2024-10-21T00:00:00+03:00": 46, + "2024-10-28T00:00:00+02:00": 127 + } + }, + "in_app": { + "$overall": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 2 + }, + "undefined": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 2 + } + }, + "push": { + "$overall": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 6 + }, + "undefined": { + "2024-10-21T00:00:00+03:00": 0, + "2024-10-28T00:00:00+02:00": 6 + } + } + } + } + } + } + } +} diff --git a/apps/api/src/app.module.ts b/apps/api/src/app.module.ts index 585fbd3626c..e1ff1420fb4 100644 --- a/apps/api/src/app.module.ts +++ b/apps/api/src/app.module.ts @@ -49,6 +49,7 @@ import { WorkflowModule } from './app/workflows-v2/workflow.module'; import { WorkflowModuleV1 } from './app/workflows-v1/workflow-v1.module'; import { EnvironmentsModuleV1 } from './app/environments-v1/environments-v1.module'; import { EnvironmentsModule } from './app/environments-v2/environments.module'; +import { InsightsModule } from './app/insights/insights.module'; const enterpriseImports = (): Array | ForwardReference> => { const modules: Array | ForwardReference> = []; @@ -115,6 +116,7 @@ const baseModules: Array | Forward WorkflowModule, EnvironmentsModule, NovuModule, + InsightsModule, ]; const enterpriseModules = enterpriseImports(); diff --git a/apps/api/src/app/insights/insights.module.ts b/apps/api/src/app/insights/insights.module.ts index 1a407a69e19..2367768fa25 100644 --- a/apps/api/src/app/insights/insights.module.ts +++ b/apps/api/src/app/insights/insights.module.ts @@ -1,10 +1,26 @@ import { Module } from '@nestjs/common'; +import { + OrganizationRepository, + MessageRepository, + NotificationRepository, + CommunityOrganizationRepository, +} from '@novu/dal'; +import { EEOrganizationRepository } from '@novu/ee-auth'; import { USE_CASES } from './usecases'; import { SharedModule } from '../shared/shared.module'; +import { InsightsInitializerService } from './services/insights-initializer.service'; @Module({ imports: [SharedModule], - providers: [...USE_CASES], + providers: [ + ...USE_CASES, + InsightsInitializerService, + OrganizationRepository, + MessageRepository, + NotificationRepository, + EEOrganizationRepository, + CommunityOrganizationRepository, + ], exports: [...USE_CASES], }) export class InsightsModule {} diff --git a/apps/api/src/app/insights/services/insights-initializer.service.ts b/apps/api/src/app/insights/services/insights-initializer.service.ts new file mode 100644 index 00000000000..016d0376d4d --- /dev/null +++ b/apps/api/src/app/insights/services/insights-initializer.service.ts @@ -0,0 +1,19 @@ +import { Injectable, OnApplicationBootstrap, Logger } from '@nestjs/common'; +import { UsageInsights } from '../usecases/usage-insights/usage-insights.usecase'; +import { UsageInsightsCommand } from '../usecases/usage-insights/usage-insights.command'; + +@Injectable() +export class InsightsInitializerService implements OnApplicationBootstrap { + constructor(private usageInsights: UsageInsights) {} + + async onApplicationBootstrap() { + try { + Logger.log('Initializing usage insights...'); + const command = new UsageInsightsCommand(); + await this.usageInsights.execute(command); + Logger.log('Usage insights initialization completed'); + } catch (error) { + Logger.error('Failed to initialize insights:', error); + } + } +} diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 9cf874a4091..8882ceed357 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -1,36 +1,288 @@ -import { Injectable } from '@nestjs/common'; -import { MessageRepository, NotificationRepository } from '@novu/dal'; +import { Injectable, Logger } from '@nestjs/common'; +import { + CommunityOrganizationRepository, + MessageRepository, + NotificationRepository, + OrganizationRepository, +} from '@novu/dal'; import { InstrumentUsecase } from '@novu/application-generic'; +import axios from 'axios'; +import { promises as fs } from 'fs'; +import { join } from 'path'; import { UsageInsightsCommand } from './usage-insights.command'; -interface IUsageInsightsResponse { - totalNotifications: number; - totalMessages: number; +interface IChannelMetrics { + current: number; + previous: number; + change: number; +} + +interface IOrganizationMetrics { + readonly id: string; + readonly name: string; + subscriberNotifications: { + current: number; + previous: number; + change: number; + }; + channelBreakdown: { + [channel: string]: IChannelMetrics; + }; +} + +interface IMetricData { + [date: string]: number; +} + +interface IChannelData { + [channel: string]: IMetricData; + $overall: IMetricData; +} + +type ISeriesData = { + [organizationId: string]: IChannelData; +} & { + $overall: IMetricData; +}; + +interface IMixpanelResponse { + series: { + 'A. Notification Subscriber Event Trigger [Total Events]': ISeriesData; + 'B. Process Workflow Step - [Triggers] [Total Events]': ISeriesData; + }; + workflowStats: { + workflows: { + [name: string]: { + current: { + total: number; + period: string; + }; + previous: { + total: number; + period: string; + }; + change: number; + }; + }; + }; } @Injectable() export class UsageInsights { - constructor( - private notificationRepository: NotificationRepository, - private messageRepository: MessageRepository - ) {} + private readonly CACHE_FILE = join(process.cwd(), 'mixpanel-insights-cache.json'); + private readonly CACHE_TTL = 24 * 60 * 60 * 1000; // 24 hours in milliseconds - @InstrumentUsecase() - async execute(command: UsageInsightsCommand): Promise { - const query = { - _environmentId: command.environmentId, - _organizationId: command.organizationId, - }; + constructor(private organizationRepository: CommunityOrganizationRepository) {} + + private async readCacheFile() { + try { + const fileContent = await fs.readFile(this.CACHE_FILE, 'utf-8'); + const cache = JSON.parse(fileContent); + + if (cache.timestamp && Date.now() - cache.timestamp < this.CACHE_TTL) { + Logger.log('Using cached Mixpanel insights data'); + + return cache.data as IMixpanelResponse; + } - const [totalNotifications, totalMessages] = await Promise.all([ - this.notificationRepository.count(query), - this.messageRepository.count(query), - ]); + Logger.log('Cache expired, fetching fresh data'); + + return null; + } catch (error) { + Logger.log('No cache file found or invalid cache'); + + return null; + } + } + + private async writeCacheFile(data: IMixpanelResponse) { + try { + const cache = { + timestamp: Date.now(), + data, + }; + + await fs.writeFile(this.CACHE_FILE, JSON.stringify(cache, null, 2)); + Logger.log('Mixpanel insights data cached successfully'); + } catch (error) { + Logger.error('Failed to cache Mixpanel insights data:', error); + } + } + + private calculateChange(current: number, previous: number): number { + if (previous === 0) { + return current > 0 ? 100 : 0; + } + + return Number(((current - previous) / previous) * 100); + } + + private async fetchMixpanelInsights() { + const cachedData = await this.readCacheFile(); + if (cachedData) { + return cachedData; + } + + try { + console.log(process.env.MIXPANEL_BASIC_AUTH_TOKEN); + const response = await axios.get('https://mixpanel.com/api/2.0/insights', { + params: { + project_id: '2667883', + bookmark_id: '68515975', + }, + headers: { + Authorization: `Basic ${process.env.MIXPANEL_BASIC_AUTH_TOKEN}`, + 'Content-Type': 'application/json', + }, + }); + + await this.writeCacheFile(response.data); + + return response.data; + } catch (error) { + Logger.log('a', error.response.data); + Logger.error('Error fetching Mixpanel insights:', error); + + return null; + } + } - return { - totalNotifications, - totalMessages, + private createOrganizationMetrics( + orgId: string, + subscriberSeries: ISeriesData, + workflowSeries: ISeriesData + ): IOrganizationMetrics { + const orgMetrics: IOrganizationMetrics = { + id: orgId, + name: '', + subscriberNotifications: { + current: subscriberSeries[orgId]?.$overall?.['2024-12-02T00:00:00+02:00'] || 0, + previous: subscriberSeries[orgId]?.$overall?.['2024-11-25T00:00:00+02:00'] || 0, + change: 0, + }, + channelBreakdown: {}, }; + + // Process channel breakdown from workflowSeries + const orgWorkflowData = workflowSeries[orgId]; + if (orgWorkflowData) { + Object.entries(orgWorkflowData).forEach(([channel, data]) => { + if (channel !== '$overall') { + orgMetrics.channelBreakdown[channel] = { + current: data.$overall?.['2024-12-02T00:00:00+02:00'] || 0, + previous: data.$overall?.['2024-11-25T00:00:00+02:00'] || 0, + change: 0, + }; + } + }); + } + + return orgMetrics; + } + + private async logOrganizationMetrics( + metrics: IOrganizationMetrics, + workflowStats: IMixpanelResponse['workflowStats'] + ) { + try { + const organization = await this.organizationRepository.findById(metrics.id); + if (!organization) { + Logger.warn(`Organization not found: ${metrics.id}`); + + return; + } + + const enrichedMetrics = { + ...metrics, + name: organization.name, + workflowStats: workflowStats.workflows, + }; + + Logger.log(`Organization Metrics: ${JSON.stringify(enrichedMetrics, null, 2)}`); + } catch (error) { + Logger.error(`Error logging organization metrics for ${metrics.id}:`, error); + } + } + + private calculateWorkflowStats(subscriberSeries: ISeriesData): IMixpanelResponse['workflowStats'] { + const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; + const currentPeriod = '2024-12-02T00:00:00+02:00'; + const previousPeriod = '2024-11-25T00:00:00+02:00'; + + // Extract workflow names and stats from the first organization's subscriber events + const firstOrgId = Object.keys(subscriberSeries).find((key) => key !== '$overall'); + if (!firstOrgId) return workflowStats; + + const orgData = subscriberSeries[firstOrgId]?.undefined; + if (!orgData) return workflowStats; + + // Process each workflow from the subscriber events breakdown + Object.entries(orgData) + .filter(([name]) => name !== '$overall') + .forEach(([name, data]) => { + const current = data[currentPeriod] || 0; + const previous = data[previousPeriod] || 0; + + workflowStats.workflows[name] = { + current, + previous, + change: this.calculateChange(current, previous), + }; + }); + + return workflowStats; + } + + @InstrumentUsecase() + async execute(command: UsageInsightsCommand): Promise { + const mixpanelData = await this.fetchMixpanelInsights(); + + if (!mixpanelData?.series) { + Logger.error('No Mixpanel data available'); + + return null; + } + + const subscriberSeries = mixpanelData.series['A. Notification Subscriber Event Trigger [Total Events]']; + const workflowSeries = mixpanelData.series['B. Process Workflow Step - [Triggers] [Total Events]']; + + if (!subscriberSeries || !workflowSeries) { + Logger.error('Required series data not found'); + + return null; + } + + // Calculate workflow statistics + const workflowStats = this.calculateWorkflowStats(subscriberSeries); + mixpanelData.workflowStats = workflowStats; + + // Process each organization's data + for (const [orgId, orgData] of Object.entries(workflowSeries)) { + if (orgId === '$overall') continue; + + const metrics = this.createOrganizationMetrics(orgId, subscriberSeries, workflowSeries); + + // Calculate subscriber notifications change + metrics.subscriberNotifications.change = this.calculateChange( + metrics.subscriberNotifications.current, + metrics.subscriberNotifications.previous + ); + + // Calculate channel breakdown changes + metrics.channelBreakdown = Object.fromEntries( + Object.entries(metrics.channelBreakdown).map(([channel, channelData]) => [ + channel, + { + ...channelData, + change: this.calculateChange(channelData.current, channelData.previous), + }, + ]) + ); + + await this.logOrganizationMetrics(metrics, workflowStats); + } + + return mixpanelData; } } diff --git a/apps/api/src/config/env.validators.ts b/apps/api/src/config/env.validators.ts index 706179b815e..c578e2dd693 100644 --- a/apps/api/src/config/env.validators.ts +++ b/apps/api/src/config/env.validators.ts @@ -98,4 +98,9 @@ export const envValidators = { VERCEL_REDIRECT_URI: url({ default: 'https://dashboard.novu.co/auth/login' }), VERCEL_BASE_URL: url({ default: 'https://api.vercel.com' }), }), + + // Mixpanel validators + MIXPANEL_SERVICE_ACCOUNT_USERNAME: str({ default: '' }), + MIXPANEL_SERVICE_ACCOUNT_SECRET: str({ default: '' }), + MIXPANEL_PROJECT_ID: str({ default: '' }), } satisfies Record>; From 6eb853e30cf6be2f32bacdb8a694588505299cbb Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 13:38:54 +0200 Subject: [PATCH 03/31] fix: hello world --- apps/api/mixpanel-inbox-cache.json | 113 ++++++++++++ .../usage-insights/usage-insights.usecase.ts | 174 +++++++++++++++--- 2 files changed, 258 insertions(+), 29 deletions(-) create mode 100644 apps/api/mixpanel-inbox-cache.json diff --git a/apps/api/mixpanel-inbox-cache.json b/apps/api/mixpanel-inbox-cache.json new file mode 100644 index 00000000000..d676ce4b360 --- /dev/null +++ b/apps/api/mixpanel-inbox-cache.json @@ -0,0 +1,113 @@ +{ + "timestamp": 1733311977381, + "data": { + "headers": ["$event", "$distinct_id"], + "computed_at": "2024-12-04T11:32:56.526066+00:00", + "date_range": { + "from_date": "2024-11-25T00:00:00+02:00", + "to_date": "2024-12-04T13:32:54.570035+02:00" + }, + "meta": { + "min_sampling_factor": 1, + "is_segmentation_limit_hit": false, + "report_sections": { + "group": [ + { + "bookmark": { + "dataGroupId": "7400984862319914261", + "dataset": "$mixpanel", + "propertyType": "string", + "resourceType": "people", + "search": "", + "value": "$distinct_id" + } + } + ], + "show": [ + { + "metric_key": "A. Session Initialized - [Inbox] [Total Events]" + }, + { + "metric_key": "B. Update Preferences - [Inbox] [Total Events]" + }, + { + "metric_key": "C. Mark Notification As - [Inbox] [Total Events]" + }, + { + "metric_key": "D. Update Notification Action - [Inbox] [Total Events]" + } + ] + } + }, + "series": { + "A. Session Initialized - [Inbox] [Total Events]": { + "$overall": { + "2024-11-25T00:00:00+02:00": 1110879, + "2024-12-02T00:00:00+02:00": 350009 + }, + "66bdd7144a759ebff0deb5e2": { + "2024-11-25T00:00:00+02:00": 1110879, + "2024-12-02T00:00:00+02:00": 350009 + } + }, + "B. Update Preferences - [Inbox] [Total Events]": { + "$overall": { + "2024-11-25T00:00:00+02:00": 2, + "2024-12-02T00:00:00+02:00": 0 + }, + "66bdd7144a759ebff0deb5e2": { + "2024-11-25T00:00:00+02:00": 2, + "2024-12-02T00:00:00+02:00": 0 + } + }, + "C. Mark Notification As - [Inbox] [Total Events]": { + "$overall": { + "2024-11-25T00:00:00+02:00": 249, + "2024-12-02T00:00:00+02:00": 74 + }, + "66bdd7144a759ebff0deb5e2": { + "2024-11-25T00:00:00+02:00": 249, + "2024-12-02T00:00:00+02:00": 74 + } + } + }, + "time_comparison": { + "date_range": { + "from_date": "2024-10-25T00:00:00+03:00", + "to_date": "2024-11-03T23:59:59.999000+02:00" + }, + "series": { + "A. Session Initialized - [Inbox] [Total Events]": { + "$overall": { + "2024-10-21T00:00:00+03:00": 227100, + "2024-10-28T00:00:00+02:00": 474209 + }, + "66bdd7144a759ebff0deb5e2": { + "2024-10-21T00:00:00+03:00": 227100, + "2024-10-28T00:00:00+02:00": 474209 + } + }, + "B. Update Preferences - [Inbox] [Total Events]": { + "$overall": { + "2024-10-21T00:00:00+03:00": 6, + "2024-10-28T00:00:00+02:00": 2 + }, + "66bdd7144a759ebff0deb5e2": { + "2024-10-21T00:00:00+03:00": 6, + "2024-10-28T00:00:00+02:00": 2 + } + }, + "C. Mark Notification As - [Inbox] [Total Events]": { + "$overall": { + "2024-10-21T00:00:00+03:00": 94, + "2024-10-28T00:00:00+02:00": 162 + }, + "66bdd7144a759ebff0deb5e2": { + "2024-10-21T00:00:00+03:00": 94, + "2024-10-28T00:00:00+02:00": 162 + } + } + } + } + } +} diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 8882ceed357..d7bc2540951 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -54,36 +54,68 @@ interface IMixpanelResponse { workflowStats: { workflows: { [name: string]: { - current: { - total: number; - period: string; - }; - previous: { - total: number; - period: string; - }; + current: number; + previous: number; change: number; }; }; }; } +interface IInboxResponse { + series: { + 'A. Session Initialized - [Inbox] [Total Events]': ISeriesData; + 'B. Update Preferences - [Inbox] [Total Events]': ISeriesData; + 'C. Mark Notification As - [Inbox] [Total Events]': ISeriesData; + 'D. Update Notification Action - [Inbox] [Total Events]': ISeriesData; + }; +} + +interface IMetricStats { + current: number; + previous: number; + change: number; +} + +interface IInboxMetrics { + sessionInitialized: IMetricStats; + updatePreferences: IMetricStats; + markNotification: IMetricStats; + updateAction: IMetricStats; +} + +interface IUsageInsightsResponse { + series: IMixpanelResponse['series']; + workflowStats: IMixpanelResponse['workflowStats']; + inboxStats: { + byOrganization: { + [organizationId: string]: IInboxMetrics; + }; + overall: IInboxMetrics; + }; +} + +interface ICombinedMetrics extends IOrganizationMetrics { + inboxMetrics?: IInboxMetrics; +} + @Injectable() export class UsageInsights { private readonly CACHE_FILE = join(process.cwd(), 'mixpanel-insights-cache.json'); + private readonly INBOX_CACHE_FILE = join(process.cwd(), 'mixpanel-inbox-cache.json'); private readonly CACHE_TTL = 24 * 60 * 60 * 1000; // 24 hours in milliseconds constructor(private organizationRepository: CommunityOrganizationRepository) {} - private async readCacheFile() { + private async readCacheFile(cacheFile: string) { try { - const fileContent = await fs.readFile(this.CACHE_FILE, 'utf-8'); + const fileContent = await fs.readFile(cacheFile, 'utf-8'); const cache = JSON.parse(fileContent); if (cache.timestamp && Date.now() - cache.timestamp < this.CACHE_TTL) { - Logger.log('Using cached Mixpanel insights data'); + Logger.log(`Using cached Mixpanel data from ${cacheFile}`); - return cache.data as IMixpanelResponse; + return cache.data; } Logger.log('Cache expired, fetching fresh data'); @@ -96,17 +128,17 @@ export class UsageInsights { } } - private async writeCacheFile(data: IMixpanelResponse) { + private async writeCacheFile(data: any, cacheFile: string) { try { const cache = { timestamp: Date.now(), data, }; - await fs.writeFile(this.CACHE_FILE, JSON.stringify(cache, null, 2)); - Logger.log('Mixpanel insights data cached successfully'); + await fs.writeFile(cacheFile, JSON.stringify(cache, null, 2)); + Logger.log(`Mixpanel data cached successfully to ${cacheFile}`); } catch (error) { - Logger.error('Failed to cache Mixpanel insights data:', error); + Logger.error('Failed to cache Mixpanel data:', error); } } @@ -118,14 +150,13 @@ export class UsageInsights { return Number(((current - previous) / previous) * 100); } - private async fetchMixpanelInsights() { - const cachedData = await this.readCacheFile(); + private async fetchMixpanelInsights(): Promise { + const cachedData = await this.readCacheFile(this.CACHE_FILE); if (cachedData) { return cachedData; } try { - console.log(process.env.MIXPANEL_BASIC_AUTH_TOKEN); const response = await axios.get('https://mixpanel.com/api/2.0/insights', { params: { project_id: '2667883', @@ -137,17 +168,78 @@ export class UsageInsights { }, }); - await this.writeCacheFile(response.data); + await this.writeCacheFile(response.data, this.CACHE_FILE); return response.data; } catch (error) { - Logger.log('a', error.response.data); Logger.error('Error fetching Mixpanel insights:', error); return null; } } + private async fetchInboxInsights(): Promise { + const cachedData = await this.readCacheFile(this.INBOX_CACHE_FILE); + if (cachedData) { + return cachedData; + } + + try { + const response = await axios.get('https://mixpanel.com/api/2.0/insights', { + params: { + project_id: '2667883', + bookmark_id: '68521376', + }, + headers: { + Authorization: `Basic ${process.env.MIXPANEL_BASIC_AUTH_TOKEN}`, + 'Content-Type': 'application/json', + }, + }); + + await this.writeCacheFile(response.data, this.INBOX_CACHE_FILE); + + return response.data; + } catch (error) { + Logger.error('Error fetching Inbox insights:', error?.response?.data || error); + + return null; + } + } + + private calculateInboxMetrics(inboxSeries: IInboxResponse['series'], orgId: string): IInboxMetrics { + const getMetricStats = (seriesData: ISeriesData | undefined, orgKey: string): IMetricStats => { + const data = seriesData?.[orgKey]; + if (!data) { + return { + current: 0, + previous: 0, + change: 0, + }; + } + + const current = data['2024-12-02T00:00:00+02:00'] || 0; + const previous = data['2024-11-25T00:00:00+02:00'] || 0; + + return { + current, + previous, + change: this.calculateChange(current, previous), + }; + }; + + // Always return a complete metrics object + return { + sessionInitialized: getMetricStats(inboxSeries['A. Session Initialized - [Inbox] [Total Events]'], orgId), + updatePreferences: getMetricStats(inboxSeries['B. Update Preferences - [Inbox] [Total Events]'], orgId), + markNotification: getMetricStats(inboxSeries['C. Mark Notification As - [Inbox] [Total Events]'], orgId), + updateAction: getMetricStats(inboxSeries['D. Update Notification Action - [Inbox] [Total Events]'], orgId), + }; + } + + private calculateOverallInboxMetrics(inboxSeries: IInboxResponse['series']): IInboxMetrics { + return this.calculateInboxMetrics(inboxSeries, '$overall'); + } + private createOrganizationMetrics( orgId: string, subscriberSeries: ISeriesData, @@ -181,10 +273,7 @@ export class UsageInsights { return orgMetrics; } - private async logOrganizationMetrics( - metrics: IOrganizationMetrics, - workflowStats: IMixpanelResponse['workflowStats'] - ) { + private async logOrganizationMetrics(metrics: ICombinedMetrics, workflowStats: IMixpanelResponse['workflowStats']) { try { const organization = await this.organizationRepository.findById(metrics.id); if (!organization) { @@ -235,8 +324,8 @@ export class UsageInsights { } @InstrumentUsecase() - async execute(command: UsageInsightsCommand): Promise { - const mixpanelData = await this.fetchMixpanelInsights(); + async execute(command: UsageInsightsCommand): Promise { + const [mixpanelData, inboxData] = await Promise.all([this.fetchMixpanelInsights(), this.fetchInboxInsights()]); if (!mixpanelData?.series) { Logger.error('No Mixpanel data available'); @@ -257,11 +346,24 @@ export class UsageInsights { const workflowStats = this.calculateWorkflowStats(subscriberSeries); mixpanelData.workflowStats = workflowStats; + // Initialize inbox stats with default values + const defaultInboxMetrics: IInboxMetrics = { + sessionInitialized: { current: 0, previous: 0, change: 0 }, + updatePreferences: { current: 0, previous: 0, change: 0 }, + markNotification: { current: 0, previous: 0, change: 0 }, + updateAction: { current: 0, previous: 0, change: 0 }, + }; + + const inboxStats: IUsageInsightsResponse['inboxStats'] = { + byOrganization: {}, + overall: inboxData?.series ? this.calculateOverallInboxMetrics(inboxData.series) : defaultInboxMetrics, + }; + // Process each organization's data for (const [orgId, orgData] of Object.entries(workflowSeries)) { if (orgId === '$overall') continue; - const metrics = this.createOrganizationMetrics(orgId, subscriberSeries, workflowSeries); + const metrics = this.createOrganizationMetrics(orgId, subscriberSeries, workflowSeries) as ICombinedMetrics; // Calculate subscriber notifications change metrics.subscriberNotifications.change = this.calculateChange( @@ -280,9 +382,23 @@ export class UsageInsights { ]) ); + // Add inbox metrics if available + if (inboxData?.series) { + const inboxMetrics = this.calculateInboxMetrics(inboxData.series, orgId); + metrics.inboxMetrics = inboxMetrics; + inboxStats.byOrganization[orgId] = inboxMetrics; + } else { + metrics.inboxMetrics = defaultInboxMetrics; + inboxStats.byOrganization[orgId] = defaultInboxMetrics; + } + await this.logOrganizationMetrics(metrics, workflowStats); } - return mixpanelData; + return { + series: mixpanelData.series, + workflowStats: mixpanelData.workflowStats, + inboxStats, + }; } } From 099fea9072e76dfae820bfafeccf8c3990e83fd9 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 14:57:41 +0200 Subject: [PATCH 04/31] fix: email --- apps/api/src/app.module.ts | 4 +- libs/notifications/src/index.ts | 1 + .../src/workflows/usage-insights/email.tsx | 165 ++++++++++++++++++ .../workflows/usage-insights/sample-data.ts | 85 +++++++++ .../src/workflows/usage-insights/types.ts | 34 ++++ .../usage-insights/usage-insights.workflow.ts | 78 +++++++++ 6 files changed, 365 insertions(+), 2 deletions(-) create mode 100644 libs/notifications/src/workflows/usage-insights/email.tsx create mode 100644 libs/notifications/src/workflows/usage-insights/sample-data.ts create mode 100644 libs/notifications/src/workflows/usage-insights/types.ts create mode 100644 libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts diff --git a/apps/api/src/app.module.ts b/apps/api/src/app.module.ts index e1ff1420fb4..30fa4fd2239 100644 --- a/apps/api/src/app.module.ts +++ b/apps/api/src/app.module.ts @@ -9,7 +9,7 @@ import { ForwardReference } from '@nestjs/common/interfaces/modules/forward-refe import { isClerkEnabled } from '@novu/shared'; import { SentryModule } from '@sentry/nestjs/setup'; import { ApiExcludeController } from '@nestjs/swagger'; -import { usageLimitsWorkflow } from '@novu/notifications'; +import { usageInsightsWorkflow, usageLimitsWorkflow } from '@novu/notifications'; import packageJson from '../package.json'; import { SharedModule } from './app/shared/shared.module'; import { UserModule } from './app/user/user.module'; @@ -167,7 +167,7 @@ modules.push( process.env.NOVU_STRICT_AUTHENTICATION_ENABLED === 'true', }), controllerDecorators: [ApiExcludeController()], - workflows: [usageLimitsWorkflow], + workflows: [usageLimitsWorkflow, usageInsightsWorkflow], }) ); diff --git a/libs/notifications/src/index.ts b/libs/notifications/src/index.ts index 118eb95a8c0..27d18970097 100644 --- a/libs/notifications/src/index.ts +++ b/libs/notifications/src/index.ts @@ -1 +1,2 @@ export * from './workflows/usage-limits/usage-limits.workflow'; +export * from './workflows/usage-insights/usage-insights.workflow'; diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx new file mode 100644 index 00000000000..ebe53c97836 --- /dev/null +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -0,0 +1,165 @@ +import React from 'react'; +import { Body, Container, Head, Heading, Html, Preview, Section, Tailwind, Text, Img } from '@react-email/components'; +import { IUsageEmailData } from './types'; + +function MetricCard({ + title, + current, + previous, + change, +}: { + title: string; + current: number; + previous: number; + change: number; +}) { + const isPositive = change > 0; + const changeColor = isPositive ? 'text-emerald-600' : 'text-rose-600'; + + const formatNumber = (num: number) => Math.floor(num).toLocaleString('en-US', { maximumFractionDigits: 0 }); + + return ( +
+
+ {title} + + {isPositive ? '↑' : '↓'} {Math.abs(Math.floor(change))}% + +
+
+ {formatNumber(current)} + Previous: {formatNumber(previous)} +
+
+ ); +} + +function SectionHeader({ title }: { title: string }) { + return ( +
+ {title} +
+ ); +} + +function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBreakdown'] }) { + return ( +
+ +
+ {Object.entries(channels).map(([channel, metrics]) => ( + + ))} +
+
+ ); +} + +function InboxMetrics({ metrics }: { metrics: IUsageEmailData['inboxMetrics'] }) { + return ( +
+ +
+ + + + +
+
+ ); +} + +function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStats'] }) { + return ( +
+ +
+ {Object.entries(workflows).map(([name, metrics]) => ( + + ))} +
+
+ ); +} + +export default function UsageInsightsEmail(props: IUsageEmailData) { + return ( + + + + 📊 Usage Insights for {props.organizationName} - {props.period.current} + + + + +
+ Novu Insights Report + {props.organizationName} +
+ + +
+ + Reporting Period: {props.period.current} + + Compared to: {props.period.previous} + +
+ +
+
+ +
+
+ + + + + +
+ Generated with ❤️ by Novu +
+
+
+ +
+ + ); +} diff --git a/libs/notifications/src/workflows/usage-insights/sample-data.ts b/libs/notifications/src/workflows/usage-insights/sample-data.ts new file mode 100644 index 00000000000..05a6b7fa37f --- /dev/null +++ b/libs/notifications/src/workflows/usage-insights/sample-data.ts @@ -0,0 +1,85 @@ +import { IUsageEmailData } from './types'; + +export const sampleUsageData: IUsageEmailData = { + organizationName: 'dima test org 2', + period: { + current: '2024-01-01', + previous: '2023-01-01', + }, + subscriberNotifications: { + current: 86, + previous: 161, + change: -46.58385093167702, + }, + channelBreakdown: { + push: { + current: 4, + previous: 29, + change: -86.20689655172413, + }, + trigger: { + current: 86, + previous: 161, + change: -46.58385093167702, + }, + email: { + current: 86, + previous: 161, + change: -46.58385093167702, + }, + }, + inboxMetrics: { + sessionInitialized: { + current: 350009, + previous: 1110879, + change: -68.49260810583331, + }, + updatePreferences: { + current: 0, + previous: 2, + change: -100, + }, + markNotification: { + current: 74, + previous: 249, + change: -70.28112449799197, + }, + updateAction: { + current: 0, + previous: 0, + change: 0, + }, + }, + workflowStats: { + 'incorrect-password': { + current: 1, + previous: 1, + change: 0, + }, + FILE_UPLOAD: { + current: 4, + previous: 29, + change: -86.20689655172413, + }, + 'User Welcome Email': { + current: 2, + previous: 3, + change: -33.33333333333333, + }, + 'Schedule Project': { + current: 68, + previous: 124, + change: -45.16129032258064, + }, + 'Client UserAccount verification': { + current: 1, + previous: 3, + change: -66.66666666666666, + }, + 'Account Verification': { + current: 10, + previous: 1, + change: 900, + }, + }, +}; diff --git a/libs/notifications/src/workflows/usage-insights/types.ts b/libs/notifications/src/workflows/usage-insights/types.ts new file mode 100644 index 00000000000..e2a78de3f9a --- /dev/null +++ b/libs/notifications/src/workflows/usage-insights/types.ts @@ -0,0 +1,34 @@ +export interface IChannelMetrics { + current: number; + previous: number; + change: number; +} + +export interface IInboxMetrics { + sessionInitialized: IChannelMetrics; + updatePreferences: IChannelMetrics; + markNotification: IChannelMetrics; + updateAction: IChannelMetrics; +} + +export interface IWorkflowMetric { + current: number; + previous: number; + change: number; +} + +export interface IUsageEmailData { + organizationName: string; + period: { + current: string; + previous: string; + }; + subscriberNotifications: IChannelMetrics; + channelBreakdown: { + [channel: string]: IChannelMetrics; + }; + inboxMetrics: IInboxMetrics; + workflowStats: { + [name: string]: IWorkflowMetric; + }; +} diff --git a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts new file mode 100644 index 00000000000..6cef54874dc --- /dev/null +++ b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts @@ -0,0 +1,78 @@ +import { renderAsync } from '@react-email/components'; +import { workflow } from '@novu/framework'; +import { z } from 'zod'; +import UsageInsightsEmail from './email'; +import { IUsageEmailData } from './types'; +import { sampleUsageData } from './sample-data'; + +async function renderUsageInsightsEmail(payload: IUsageEmailData, controls: any) { + const html = await renderAsync(UsageInsightsEmail(payload)); + + return html; +} + +const channelMetricsSchema = z + .object({ + current: z.number(), + previous: z.number(), + change: z.number(), + }) + .required(); + +export const usageInsightsWorkflow = workflow( + 'usage-insights', + async ({ step, payload }) => { + await step.email( + 'email', + async (controls) => { + return { + subject: controls.subject, + body: await renderUsageInsightsEmail(payload as IUsageEmailData, controls), + }; + }, + { + controlSchema: z.object({ + subject: z.string().default('Your Monthly Usage Insights'), + previewText: z.string().default('Here are your usage insights for {{payload.organizationName}}'), + }), + } + ); + }, + { + name: 'Usage Insights', + payloadSchema: z + .object({ + organizationName: z.string().default(sampleUsageData.organizationName), + period: z + .object({ + current: z.string().default(sampleUsageData.period.current), + previous: z.string().default(sampleUsageData.period.previous), + }) + .required(), + subscriberNotifications: channelMetricsSchema.default(sampleUsageData.subscriberNotifications), + channelBreakdown: z + .object({ + email: channelMetricsSchema.default(sampleUsageData.channelBreakdown.email), + sms: channelMetricsSchema.default(sampleUsageData.channelBreakdown.sms), + push: channelMetricsSchema.default(sampleUsageData.channelBreakdown.push), + }) + .required(), + inboxMetrics: z + .object({ + sessionInitialized: channelMetricsSchema.default(sampleUsageData.inboxMetrics.sessionInitialized), + updatePreferences: channelMetricsSchema.default(sampleUsageData.inboxMetrics.updatePreferences), + markNotification: channelMetricsSchema.default(sampleUsageData.inboxMetrics.markNotification), + updateAction: channelMetricsSchema.default(sampleUsageData.inboxMetrics.updateAction), + }) + .required(), + workflowStats: z + .object({ + 'Welcome Flow': channelMetricsSchema.default(sampleUsageData.workflowStats['Welcome Flow']), + 'Order Confirmation': channelMetricsSchema.default(sampleUsageData.workflowStats['Order Confirmation']), + 'Password Reset': channelMetricsSchema.default(sampleUsageData.workflowStats['Password Reset']), + }) + .required(), + }) + .required(), + } +); From 8fb84e3539ad3d83275c2b2a4928d8ba8e1cffdd Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 15:26:39 +0200 Subject: [PATCH 05/31] fix: email style --- .../src/workflows/usage-insights/email.tsx | 137 ++++++++++-------- 1 file changed, 79 insertions(+), 58 deletions(-) diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index ebe53c97836..d0f798683de 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -1,5 +1,18 @@ import React from 'react'; -import { Body, Container, Head, Heading, Html, Preview, Section, Tailwind, Text, Img } from '@react-email/components'; +import { + Body, + Container, + Head, + Heading, + Html, + Preview, + Section, + Tailwind, + Text, + Img, + Row, + Column, +} from '@react-email/components'; import { IUsageEmailData } from './types'; function MetricCard({ @@ -19,17 +32,23 @@ function MetricCard({ const formatNumber = (num: number) => Math.floor(num).toLocaleString('en-US', { maximumFractionDigits: 0 }); return ( -
-
- {title} - - {isPositive ? '↑' : '↓'} {Math.abs(Math.floor(change))}% - -
-
- {formatNumber(current)} - Previous: {formatNumber(previous)} -
+
+ + + {title} + + + + {isPositive ? '↑' : '↓'} {Math.abs(Math.floor(change))}% + + + + + + {formatNumber(current)} + Previous: {formatNumber(previous)} + +
); } @@ -46,17 +65,13 @@ function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBrea return (
-
+ {Object.entries(channels).map(([channel, metrics]) => ( - + + + ))} -
+
); } @@ -65,32 +80,32 @@ function InboxMetrics({ metrics }: { metrics: IUsageEmailData['inboxMetrics'] }) return (
-
- - - - -
+ + + + + + + + + + +
); } @@ -99,17 +114,13 @@ function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStat return (
-
+ {Object.entries(workflows).map(([name, metrics]) => ( - + + + ))} -
+
); } @@ -124,12 +135,22 @@ export default function UsageInsightsEmail(props: IUsageEmailData) { -
+
+ Novu +
+ +
Novu Insights Report {props.organizationName}
- +
Reporting Period: {props.period.current} From 60a85a34263aeb67579966dd674be2b214738b7a Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 15:42:01 +0200 Subject: [PATCH 06/31] fix: add marketing section --- .../src/workflows/usage-insights/email.tsx | 71 +++++++++++++++---- .../usage-insights/usage-insights.workflow.ts | 56 ++++++++++++++- 2 files changed, 112 insertions(+), 15 deletions(-) diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index d0f798683de..8853e08a650 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -12,6 +12,8 @@ import { Img, Row, Column, + Link, + Hr, } from '@react-email/components'; import { IUsageEmailData } from './types'; @@ -125,7 +127,56 @@ function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStat ); } -export default function UsageInsightsEmail(props: IUsageEmailData) { +interface IMarketingLink { + href: string; + text: string; + emoji: string; +} + +interface IMarketingConfig { + title: string; + links: IMarketingLink[]; + cta: { + text: string; + buttonText: string; + buttonUrl: string; + }; +} + +function MarketingSection({ config }: { config: IMarketingConfig }) { + return ( +
+
+
+ {config.title} +
+ {config.links.map((link, index) => ( + + {link.emoji} + {link.text} + + ))} +
+
+ +
+ {config.cta.text} + + {config.cta.buttonText} + +
+
+ ); +} + +export default function UsageInsightsEmail(props: IUsageEmailData & { marketingConfig: IMarketingConfig }) { return ( @@ -135,18 +186,8 @@ export default function UsageInsightsEmail(props: IUsageEmailData) { -
- Novu -
- -
- Novu Insights Report +
+ Usage Insights Report {props.organizationName}
@@ -174,7 +215,9 @@ export default function UsageInsightsEmail(props: IUsageEmailData) { -
+ + +
Generated with ❤️ by Novu
diff --git a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts index 6cef54874dc..9cfeac412a5 100644 --- a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts +++ b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts @@ -5,8 +5,16 @@ import UsageInsightsEmail from './email'; import { IUsageEmailData } from './types'; import { sampleUsageData } from './sample-data'; +const marketingLinkSchema = z + .object({ + href: z.string(), + text: z.string(), + emoji: z.string(), + }) + .required(); + async function renderUsageInsightsEmail(payload: IUsageEmailData, controls: any) { - const html = await renderAsync(UsageInsightsEmail(payload)); + const html = await renderAsync(UsageInsightsEmail({ ...payload, marketingConfig: controls.marketingConfig })); return html; } @@ -34,6 +42,52 @@ export const usageInsightsWorkflow = workflow( controlSchema: z.object({ subject: z.string().default('Your Monthly Usage Insights'), previewText: z.string().default('Here are your usage insights for {{payload.organizationName}}'), + marketingConfig: z + .object({ + title: z.string().default('Discover More with Novu'), + links: z.array(marketingLinkSchema).default([ + { + href: 'https://docs.novu.co', + text: 'Read our Documentation', + emoji: '📚', + }, + { + href: 'https://discord.novu.co', + text: 'Join our Discord Community', + emoji: '💬', + }, + { + href: 'https://github.com/novuhq/novu', + text: 'Star us on GitHub', + emoji: '⭐', + }, + { + href: 'https://novu.co/blog', + text: 'Check out our Blog', + emoji: '📝', + }, + ]), + cta: z.object({ + text: z.string().default('Ready to take your notifications to the next level?'), + buttonText: z.string().default('Upgrade Your Plan →'), + buttonUrl: z.string().default('https://novu.co/pricing'), + }), + }) + .default({ + cta: { + text: 'Ready to take your notifications to the next level?', + buttonText: 'Upgrade Your Plan →', + buttonUrl: 'https://novu.co/pricing', + }, + links: [ + { + href: 'https://docs.novu.co', + text: 'Read our Documentation', + emoji: '📚', + }, + ], + title: 'Discover More with Novu', + }), }), } ); From a49b6254d93a73b0457f6b2f3ba0a04a51255704 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 15:43:15 +0200 Subject: [PATCH 07/31] fix: upload --- .../usage-insights/usage-insights.workflow.ts | 23 +------------------ 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts index 9cfeac412a5..2ef1058377d 100644 --- a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts +++ b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts @@ -45,28 +45,7 @@ export const usageInsightsWorkflow = workflow( marketingConfig: z .object({ title: z.string().default('Discover More with Novu'), - links: z.array(marketingLinkSchema).default([ - { - href: 'https://docs.novu.co', - text: 'Read our Documentation', - emoji: '📚', - }, - { - href: 'https://discord.novu.co', - text: 'Join our Discord Community', - emoji: '💬', - }, - { - href: 'https://github.com/novuhq/novu', - text: 'Star us on GitHub', - emoji: '⭐', - }, - { - href: 'https://novu.co/blog', - text: 'Check out our Blog', - emoji: '📝', - }, - ]), + links: z.array(marketingLinkSchema), cta: z.object({ text: z.string().default('Ready to take your notifications to the next level?'), buttonText: z.string().default('Upgrade Your Plan →'), From d56c8116113f4caebb3c03ffb5ae0d917f1f158f Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Wed, 4 Dec 2024 15:44:34 +0200 Subject: [PATCH 08/31] fix: logo --- libs/notifications/src/workflows/usage-insights/email.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index 8853e08a650..13d4f1b957d 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -185,6 +185,13 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC + Novu
Usage Insights Report From 747dffd3c69aff27c0228c89f0e4ecaedeaa25d3 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 11:54:09 +0200 Subject: [PATCH 09/31] fix: items --- .source | 2 +- apps/api/mixpanel-inbox-cache.json | 78 +++++---- apps/api/mixpanel-insights-cache.json | 242 ++++++++++++++------------ 3 files changed, 173 insertions(+), 149 deletions(-) diff --git a/.source b/.source index 047015b573f..dfa9f193b6a 160000 --- a/.source +++ b/.source @@ -1 +1 @@ -Subproject commit 047015b573f6767edc0e40628b39e4023dded98f +Subproject commit dfa9f193b6a312a84cc562f68080a526d401bc21 diff --git a/apps/api/mixpanel-inbox-cache.json b/apps/api/mixpanel-inbox-cache.json index d676ce4b360..d7066a6b09b 100644 --- a/apps/api/mixpanel-inbox-cache.json +++ b/apps/api/mixpanel-inbox-cache.json @@ -1,11 +1,11 @@ { - "timestamp": 1733311977381, + "timestamp": 1734861201939, "data": { "headers": ["$event", "$distinct_id"], - "computed_at": "2024-12-04T11:32:56.526066+00:00", + "computed_at": "2024-12-22T09:53:21.563714+00:00", "date_range": { - "from_date": "2024-11-25T00:00:00+02:00", - "to_date": "2024-12-04T13:32:54.570035+02:00" + "from_date": "2024-12-09T00:00:00+02:00", + "to_date": "2024-12-22T11:53:20.351806+02:00" }, "meta": { "min_sampling_factor": 1, @@ -42,69 +42,75 @@ "series": { "A. Session Initialized - [Inbox] [Total Events]": { "$overall": { - "2024-11-25T00:00:00+02:00": 1110879, - "2024-12-02T00:00:00+02:00": 350009 + "2024-12-09T00:00:00+02:00": 1026838, + "2024-12-16T00:00:00+02:00": 838285 }, - "66bdd7144a759ebff0deb5e2": { - "2024-11-25T00:00:00+02:00": 1110879, - "2024-12-02T00:00:00+02:00": 350009 + "66ce471dcf609b1343289560": { + "2024-12-09T00:00:00+02:00": 1026838, + "2024-12-16T00:00:00+02:00": 838285 } }, "B. Update Preferences - [Inbox] [Total Events]": { "$overall": { - "2024-11-25T00:00:00+02:00": 2, - "2024-12-02T00:00:00+02:00": 0 + "2024-12-09T00:00:00+02:00": 0, + "2024-12-16T00:00:00+02:00": 2 }, - "66bdd7144a759ebff0deb5e2": { - "2024-11-25T00:00:00+02:00": 2, - "2024-12-02T00:00:00+02:00": 0 + "66ce471dcf609b1343289560": { + "2024-12-09T00:00:00+02:00": 0, + "2024-12-16T00:00:00+02:00": 2 } }, "C. Mark Notification As - [Inbox] [Total Events]": { "$overall": { - "2024-11-25T00:00:00+02:00": 249, - "2024-12-02T00:00:00+02:00": 74 + "2024-12-09T00:00:00+02:00": 187, + "2024-12-16T00:00:00+02:00": 188 }, - "66bdd7144a759ebff0deb5e2": { - "2024-11-25T00:00:00+02:00": 249, - "2024-12-02T00:00:00+02:00": 74 + "66ce471dcf609b1343289560": { + "2024-12-09T00:00:00+02:00": 187, + "2024-12-16T00:00:00+02:00": 188 } } }, "time_comparison": { "date_range": { - "from_date": "2024-10-25T00:00:00+03:00", - "to_date": "2024-11-03T23:59:59.999000+02:00" + "from_date": "2024-11-09T00:00:00+02:00", + "to_date": "2024-11-24T23:59:59.999000+02:00" }, "series": { "A. Session Initialized - [Inbox] [Total Events]": { "$overall": { - "2024-10-21T00:00:00+03:00": 227100, - "2024-10-28T00:00:00+02:00": 474209 + "2024-11-04T00:00:00+02:00": 171480, + "2024-11-11T00:00:00+02:00": 783641, + "2024-11-18T00:00:00+02:00": 1183519 }, - "66bdd7144a759ebff0deb5e2": { - "2024-10-21T00:00:00+03:00": 227100, - "2024-10-28T00:00:00+02:00": 474209 + "66ce471dcf609b1343289560": { + "2024-11-04T00:00:00+02:00": 171480, + "2024-11-11T00:00:00+02:00": 783641, + "2024-11-18T00:00:00+02:00": 1183519 } }, "B. Update Preferences - [Inbox] [Total Events]": { "$overall": { - "2024-10-21T00:00:00+03:00": 6, - "2024-10-28T00:00:00+02:00": 2 + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 4, + "2024-11-18T00:00:00+02:00": 0 }, - "66bdd7144a759ebff0deb5e2": { - "2024-10-21T00:00:00+03:00": 6, - "2024-10-28T00:00:00+02:00": 2 + "66ce471dcf609b1343289560": { + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 4, + "2024-11-18T00:00:00+02:00": 0 } }, "C. Mark Notification As - [Inbox] [Total Events]": { "$overall": { - "2024-10-21T00:00:00+03:00": 94, - "2024-10-28T00:00:00+02:00": 162 + "2024-11-04T00:00:00+02:00": 46, + "2024-11-11T00:00:00+02:00": 124, + "2024-11-18T00:00:00+02:00": 165 }, - "66bdd7144a759ebff0deb5e2": { - "2024-10-21T00:00:00+03:00": 94, - "2024-10-28T00:00:00+02:00": 162 + "66ce471dcf609b1343289560": { + "2024-11-04T00:00:00+02:00": 46, + "2024-11-11T00:00:00+02:00": 124, + "2024-11-18T00:00:00+02:00": 165 } } } diff --git a/apps/api/mixpanel-insights-cache.json b/apps/api/mixpanel-insights-cache.json index 40665acc73a..d0851c13051 100644 --- a/apps/api/mixpanel-insights-cache.json +++ b/apps/api/mixpanel-insights-cache.json @@ -1,11 +1,11 @@ { - "timestamp": 1733307854851, + "timestamp": 1734861201845, "data": { "headers": ["$event", "$distinct_id", "jobType", "name"], - "computed_at": "2024-12-04T10:24:13.677870+00:00", + "computed_at": "2024-12-22T09:53:21.563333+00:00", "date_range": { - "from_date": "2024-11-25T00:00:00+02:00", - "to_date": "2024-12-04T12:24:12.264173+02:00" + "from_date": "2024-12-09T00:00:00+02:00", + "to_date": "2024-12-22T11:53:19.854264+02:00" }, "meta": { "min_sampling_factor": 1, @@ -54,84 +54,96 @@ "series": { "A. Notification Subscriber Event Trigger [Total Events]": { "$overall": { - "2024-11-25T00:00:00+02:00": 161, - "2024-12-02T00:00:00+02:00": 86 + "2024-12-09T00:00:00+02:00": 227, + "2024-12-16T00:00:00+02:00": 177 }, - "66bdd7144a759ebff0deb5e2": { + "63215ba3a4ca4df9242c24c4": { "$overall": { - "2024-11-25T00:00:00+02:00": 161, - "2024-12-02T00:00:00+02:00": 86 + "2024-12-09T00:00:00+02:00": 227, + "2024-12-16T00:00:00+02:00": 177 }, "undefined": { "$overall": { - "2024-11-25T00:00:00+02:00": 161, - "2024-12-02T00:00:00+02:00": 86 + "2024-12-09T00:00:00+02:00": 227, + "2024-12-16T00:00:00+02:00": 177 }, - "incorrect-password": { - "2024-11-25T00:00:00+02:00": 1, - "2024-12-02T00:00:00+02:00": 1 + "User Welcome Email": { + "2024-12-09T00:00:00+02:00": 5, + "2024-12-16T00:00:00+02:00": 6 }, - "FILE_UPLOAD": { - "2024-11-25T00:00:00+02:00": 29, - "2024-12-02T00:00:00+02:00": 4 + "DOWNLOAD_FILES": { + "2024-12-09T00:00:00+02:00": 1, + "2024-12-16T00:00:00+02:00": 0 }, - "User Welcome Email": { - "2024-11-25T00:00:00+02:00": 3, - "2024-12-02T00:00:00+02:00": 2 + "Client UserAccount verification": { + "2024-12-09T00:00:00+02:00": 4, + "2024-12-16T00:00:00+02:00": 6 + }, + "FILE_UPLOAD": { + "2024-12-09T00:00:00+02:00": 59, + "2024-12-16T00:00:00+02:00": 33 }, "Schedule Project": { - "2024-11-25T00:00:00+02:00": 124, - "2024-12-02T00:00:00+02:00": 68 + "2024-12-09T00:00:00+02:00": 147, + "2024-12-16T00:00:00+02:00": 117 }, - "Client UserAccount verification": { - "2024-11-25T00:00:00+02:00": 3, - "2024-12-02T00:00:00+02:00": 1 + "incorrect-password": { + "2024-12-09T00:00:00+02:00": 3, + "2024-12-16T00:00:00+02:00": 6 }, "Account Verification": { - "2024-11-25T00:00:00+02:00": 1, - "2024-12-02T00:00:00+02:00": 10 + "2024-12-09T00:00:00+02:00": 8, + "2024-12-16T00:00:00+02:00": 5 + }, + "WEBFORM_SUBMITTED": { + "2024-12-09T00:00:00+02:00": 0, + "2024-12-16T00:00:00+02:00": 1 + }, + "WEBFORM_CREATED": { + "2024-12-09T00:00:00+02:00": 0, + "2024-12-16T00:00:00+02:00": 3 } } } }, "B. Process Workflow Step - [Triggers] [Total Events]": { "$overall": { - "2024-11-25T00:00:00+02:00": 351, - "2024-12-02T00:00:00+02:00": 176 + "2024-12-09T00:00:00+02:00": 513, + "2024-12-16T00:00:00+02:00": 390 }, - "66bdd7144a759ebff0deb5e2": { + "63215ba3a4ca4df9242c24c4": { "$overall": { - "2024-11-25T00:00:00+02:00": 351, - "2024-12-02T00:00:00+02:00": 176 + "2024-12-09T00:00:00+02:00": 513, + "2024-12-16T00:00:00+02:00": 390 }, - "push": { + "trigger": { "$overall": { - "2024-11-25T00:00:00+02:00": 29, - "2024-12-02T00:00:00+02:00": 4 + "2024-12-09T00:00:00+02:00": 227, + "2024-12-16T00:00:00+02:00": 177 }, "undefined": { - "2024-11-25T00:00:00+02:00": 29, - "2024-12-02T00:00:00+02:00": 4 + "2024-12-09T00:00:00+02:00": 227, + "2024-12-16T00:00:00+02:00": 177 } }, - "trigger": { + "email": { "$overall": { - "2024-11-25T00:00:00+02:00": 161, - "2024-12-02T00:00:00+02:00": 86 + "2024-12-09T00:00:00+02:00": 227, + "2024-12-16T00:00:00+02:00": 177 }, "undefined": { - "2024-11-25T00:00:00+02:00": 161, - "2024-12-02T00:00:00+02:00": 86 + "2024-12-09T00:00:00+02:00": 227, + "2024-12-16T00:00:00+02:00": 177 } }, - "email": { + "push": { "$overall": { - "2024-11-25T00:00:00+02:00": 161, - "2024-12-02T00:00:00+02:00": 86 + "2024-12-09T00:00:00+02:00": 59, + "2024-12-16T00:00:00+02:00": 36 }, "undefined": { - "2024-11-25T00:00:00+02:00": 161, - "2024-12-02T00:00:00+02:00": 86 + "2024-12-09T00:00:00+02:00": 59, + "2024-12-16T00:00:00+02:00": 36 } } } @@ -139,116 +151,122 @@ }, "time_comparison": { "date_range": { - "from_date": "2024-10-25T00:00:00+03:00", - "to_date": "2024-11-03T23:59:59.999000+02:00" + "from_date": "2024-11-09T00:00:00+02:00", + "to_date": "2024-11-24T23:59:59.999000+02:00" }, "series": { "A. Notification Subscriber Event Trigger [Total Events]": { "$overall": { - "2024-10-21T00:00:00+03:00": 46, - "2024-10-28T00:00:00+02:00": 127 + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 220, + "2024-11-18T00:00:00+02:00": 462 }, - "66bdd7144a759ebff0deb5e2": { + "63215ba3a4ca4df9242c24c4": { "$overall": { - "2024-10-21T00:00:00+03:00": 46, - "2024-10-28T00:00:00+02:00": 127 + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 220, + "2024-11-18T00:00:00+02:00": 462 }, "undefined": { "$overall": { - "2024-10-21T00:00:00+03:00": 46, - "2024-10-28T00:00:00+02:00": 127 + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 220, + "2024-11-18T00:00:00+02:00": 462 }, - "incorrect-password": { - "2024-10-21T00:00:00+03:00": 1, - "2024-10-28T00:00:00+02:00": 0 + "Schedule Project": { + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 134, + "2024-11-18T00:00:00+02:00": 115 }, "User Welcome Email": { - "2024-10-21T00:00:00+03:00": 1, - "2024-10-28T00:00:00+02:00": 2 + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 3, + "2024-11-18T00:00:00+02:00": 14 }, - "Schedule Project": { - "2024-10-21T00:00:00+03:00": 44, - "2024-10-28T00:00:00+02:00": 111 - }, - "DOWNLOAD_FILES": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 3 + "FILE_UPLOAD": { + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 40, + "2024-11-18T00:00:00+02:00": 4 }, - "WEBFORM_SUBMITTED": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 2 + "Reset Password": { + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 3, + "2024-11-18T00:00:00+02:00": 0 }, - "FILE_UPLOAD": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 1 + "TAG_ADDED": { + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 32, + "2024-11-18T00:00:00+02:00": 0 }, - "Task Assigned": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 2 + "incorrect-password": { + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 6, + "2024-11-18T00:00:00+02:00": 2 }, "Client UserAccount verification": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 2 + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 2, + "2024-11-18T00:00:00+02:00": 7 }, - "WEBFORM_CANCELLED": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 1 + "REMIND_INVOICE": { + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 0, + "2024-11-18T00:00:00+02:00": 1 }, - "WEBFORM_CREATED": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 3 + "Account Verification": { + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 0, + "2024-11-18T00:00:00+02:00": 319 } } } }, "B. Process Workflow Step - [Triggers] [Total Events]": { "$overall": { - "2024-10-21T00:00:00+03:00": 92, - "2024-10-28T00:00:00+02:00": 262 + "2024-11-04T00:00:00+02:00": 46, + "2024-11-11T00:00:00+02:00": 480, + "2024-11-18T00:00:00+02:00": 928 }, - "66bdd7144a759ebff0deb5e2": { + "63215ba3a4ca4df9242c24c4": { "$overall": { - "2024-10-21T00:00:00+03:00": 92, - "2024-10-28T00:00:00+02:00": 262 + "2024-11-04T00:00:00+02:00": 46, + "2024-11-11T00:00:00+02:00": 480, + "2024-11-18T00:00:00+02:00": 928 }, "trigger": { "$overall": { - "2024-10-21T00:00:00+03:00": 46, - "2024-10-28T00:00:00+02:00": 127 + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 220, + "2024-11-18T00:00:00+02:00": 462 }, "undefined": { - "2024-10-21T00:00:00+03:00": 46, - "2024-10-28T00:00:00+02:00": 127 + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 220, + "2024-11-18T00:00:00+02:00": 462 } }, "email": { "$overall": { - "2024-10-21T00:00:00+03:00": 46, - "2024-10-28T00:00:00+02:00": 127 - }, - "undefined": { - "2024-10-21T00:00:00+03:00": 46, - "2024-10-28T00:00:00+02:00": 127 - } - }, - "in_app": { - "$overall": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 2 + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 220, + "2024-11-18T00:00:00+02:00": 462 }, "undefined": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 2 + "2024-11-04T00:00:00+02:00": 23, + "2024-11-11T00:00:00+02:00": 220, + "2024-11-18T00:00:00+02:00": 462 } }, "push": { "$overall": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 6 + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 40, + "2024-11-18T00:00:00+02:00": 4 }, "undefined": { - "2024-10-21T00:00:00+03:00": 0, - "2024-10-28T00:00:00+02:00": 6 + "2024-11-04T00:00:00+02:00": 0, + "2024-11-11T00:00:00+02:00": 40, + "2024-11-18T00:00:00+02:00": 4 } } } From 5ee4ad934aaaa77d257993020fbfff8f29d3c7ea Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 12:38:53 +0200 Subject: [PATCH 10/31] fix: workflows --- apps/api/mixpanel-inbox-cache.json | 12 +- apps/api/mixpanel-insights-cache.json | 8 +- .../services/insights-initializer.service.ts | 5 +- .../usage-insights/usage-insights.usecase.ts | 193 ++++++++++++------ libs/notifications/package.json | 2 +- .../src/workflows/usage-insights/email.tsx | 23 ++- .../usage-insights/usage-insights.workflow.ts | 8 +- packages/framework/src/utils/env.utils.ts | 2 +- 8 files changed, 165 insertions(+), 88 deletions(-) diff --git a/apps/api/mixpanel-inbox-cache.json b/apps/api/mixpanel-inbox-cache.json index d7066a6b09b..97e7435cf7c 100644 --- a/apps/api/mixpanel-inbox-cache.json +++ b/apps/api/mixpanel-inbox-cache.json @@ -45,7 +45,7 @@ "2024-12-09T00:00:00+02:00": 1026838, "2024-12-16T00:00:00+02:00": 838285 }, - "66ce471dcf609b1343289560": { + "675fe9bcab6a05bb6dcb7dab": { "2024-12-09T00:00:00+02:00": 1026838, "2024-12-16T00:00:00+02:00": 838285 } @@ -55,7 +55,7 @@ "2024-12-09T00:00:00+02:00": 0, "2024-12-16T00:00:00+02:00": 2 }, - "66ce471dcf609b1343289560": { + "675fe9bcab6a05bb6dcb7dab": { "2024-12-09T00:00:00+02:00": 0, "2024-12-16T00:00:00+02:00": 2 } @@ -65,7 +65,7 @@ "2024-12-09T00:00:00+02:00": 187, "2024-12-16T00:00:00+02:00": 188 }, - "66ce471dcf609b1343289560": { + "675fe9bcab6a05bb6dcb7dab": { "2024-12-09T00:00:00+02:00": 187, "2024-12-16T00:00:00+02:00": 188 } @@ -83,7 +83,7 @@ "2024-11-11T00:00:00+02:00": 783641, "2024-11-18T00:00:00+02:00": 1183519 }, - "66ce471dcf609b1343289560": { + "675fe9bcab6a05bb6dcb7dab": { "2024-11-04T00:00:00+02:00": 171480, "2024-11-11T00:00:00+02:00": 783641, "2024-11-18T00:00:00+02:00": 1183519 @@ -95,7 +95,7 @@ "2024-11-11T00:00:00+02:00": 4, "2024-11-18T00:00:00+02:00": 0 }, - "66ce471dcf609b1343289560": { + "675fe9bcab6a05bb6dcb7dab": { "2024-11-04T00:00:00+02:00": 0, "2024-11-11T00:00:00+02:00": 4, "2024-11-18T00:00:00+02:00": 0 @@ -107,7 +107,7 @@ "2024-11-11T00:00:00+02:00": 124, "2024-11-18T00:00:00+02:00": 165 }, - "66ce471dcf609b1343289560": { + "675fe9bcab6a05bb6dcb7dab": { "2024-11-04T00:00:00+02:00": 46, "2024-11-11T00:00:00+02:00": 124, "2024-11-18T00:00:00+02:00": 165 diff --git a/apps/api/mixpanel-insights-cache.json b/apps/api/mixpanel-insights-cache.json index d0851c13051..c9cfefe139d 100644 --- a/apps/api/mixpanel-insights-cache.json +++ b/apps/api/mixpanel-insights-cache.json @@ -57,7 +57,7 @@ "2024-12-09T00:00:00+02:00": 227, "2024-12-16T00:00:00+02:00": 177 }, - "63215ba3a4ca4df9242c24c4": { + "675fe9bcab6a05bb6dcb7dab": { "$overall": { "2024-12-09T00:00:00+02:00": 227, "2024-12-16T00:00:00+02:00": 177 @@ -111,7 +111,7 @@ "2024-12-09T00:00:00+02:00": 513, "2024-12-16T00:00:00+02:00": 390 }, - "63215ba3a4ca4df9242c24c4": { + "675fe9bcab6a05bb6dcb7dab": { "$overall": { "2024-12-09T00:00:00+02:00": 513, "2024-12-16T00:00:00+02:00": 390 @@ -161,7 +161,7 @@ "2024-11-11T00:00:00+02:00": 220, "2024-11-18T00:00:00+02:00": 462 }, - "63215ba3a4ca4df9242c24c4": { + "675fe9bcab6a05bb6dcb7dab": { "$overall": { "2024-11-04T00:00:00+02:00": 23, "2024-11-11T00:00:00+02:00": 220, @@ -227,7 +227,7 @@ "2024-11-11T00:00:00+02:00": 480, "2024-11-18T00:00:00+02:00": 928 }, - "63215ba3a4ca4df9242c24c4": { + "675fe9bcab6a05bb6dcb7dab": { "$overall": { "2024-11-04T00:00:00+02:00": 46, "2024-11-11T00:00:00+02:00": 480, diff --git a/apps/api/src/app/insights/services/insights-initializer.service.ts b/apps/api/src/app/insights/services/insights-initializer.service.ts index 016d0376d4d..dae1b8e4e0a 100644 --- a/apps/api/src/app/insights/services/insights-initializer.service.ts +++ b/apps/api/src/app/insights/services/insights-initializer.service.ts @@ -10,7 +10,10 @@ export class InsightsInitializerService implements OnApplicationBootstrap { try { Logger.log('Initializing usage insights...'); const command = new UsageInsightsCommand(); - await this.usageInsights.execute(command); + + setTimeout(() => { + this.usageInsights.execute(command); + }, 10000); Logger.log('Usage insights initialization completed'); } catch (error) { Logger.error('Failed to initialize insights:', error); diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index d7bc2540951..83410adafcd 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -1,17 +1,18 @@ import { Injectable, Logger } from '@nestjs/common'; -import { - CommunityOrganizationRepository, - MessageRepository, - NotificationRepository, - OrganizationRepository, -} from '@novu/dal'; +import { CommunityOrganizationRepository } from '@novu/dal'; import { InstrumentUsecase } from '@novu/application-generic'; import axios from 'axios'; import { promises as fs } from 'fs'; import { join } from 'path'; +import { usageInsightsWorkflow } from '@novu/notifications'; import { UsageInsightsCommand } from './usage-insights.command'; +const CURRENT_PERIOD = '2024-12-16T00:00:00+02:00'; +const PREVIOUS_PERIOD = '2024-12-09T00:00:00+02:00'; +const WORKFLOW_CURRENT_PERIOD = '2024-12-16T00:00:00+02:00'; +const WORKFLOW_PREVIOUS_PERIOD = '2024-12-09T00:00:00+02:00'; + interface IChannelMetrics { current: number; previous: number; @@ -105,30 +106,34 @@ export class UsageInsights { private readonly INBOX_CACHE_FILE = join(process.cwd(), 'mixpanel-inbox-cache.json'); private readonly CACHE_TTL = 24 * 60 * 60 * 1000; // 24 hours in milliseconds - constructor(private organizationRepository: CommunityOrganizationRepository) {} + constructor(private organizationRepository: CommunityOrganizationRepository) { + Logger.debug('UsageInsights service initialized'); + } private async readCacheFile(cacheFile: string) { + Logger.debug(`Attempting to read cache file: ${cacheFile}`); try { const fileContent = await fs.readFile(cacheFile, 'utf-8'); const cache = JSON.parse(fileContent); if (cache.timestamp && Date.now() - cache.timestamp < this.CACHE_TTL) { - Logger.log(`Using cached Mixpanel data from ${cacheFile}`); + Logger.debug(`Cache hit: Using data from ${cacheFile}, age: ${(Date.now() - cache.timestamp) / 1000}s`); return cache.data; } - Logger.log('Cache expired, fetching fresh data'); + Logger.debug(`Cache expired for ${cacheFile}, age: ${(Date.now() - cache.timestamp) / 1000}s`); return null; } catch (error) { - Logger.log('No cache file found or invalid cache'); + Logger.debug(`Cache miss: No valid cache found for ${cacheFile}`); return null; } } private async writeCacheFile(data: any, cacheFile: string) { + Logger.debug(`Attempting to write cache file: ${cacheFile}`); try { const cache = { timestamp: Date.now(), @@ -136,27 +141,35 @@ export class UsageInsights { }; await fs.writeFile(cacheFile, JSON.stringify(cache, null, 2)); - Logger.log(`Mixpanel data cached successfully to ${cacheFile}`); + Logger.debug(`Cache write successful: ${cacheFile}`); } catch (error) { - Logger.error('Failed to cache Mixpanel data:', error); + Logger.error(`Cache write failed for ${cacheFile}:`, error); } } private calculateChange(current: number, previous: number): number { + let change: number; + if (previous === 0) { - return current > 0 ? 100 : 0; + change = current > 0 ? 100 : 0; + } else { + change = Number(((current - previous) / previous) * 100); } - return Number(((current - previous) / previous) * 100); + Logger.debug(`Calculating change: current=${current}, previous=${previous}, change=${change}%`); + + return change; } private async fetchMixpanelInsights(): Promise { + Logger.debug('Fetching Mixpanel insights'); const cachedData = await this.readCacheFile(this.CACHE_FILE); if (cachedData) { return cachedData; } try { + Logger.debug('Making Mixpanel API request for insights'); const response = await axios.get('https://mixpanel.com/api/2.0/insights', { params: { project_id: '2667883', @@ -168,23 +181,26 @@ export class UsageInsights { }, }); + Logger.debug('Mixpanel insights fetch successful'); await this.writeCacheFile(response.data, this.CACHE_FILE); return response.data; } catch (error) { - Logger.error('Error fetching Mixpanel insights:', error); + Logger.error('Mixpanel insights fetch failed:', error); return null; } } private async fetchInboxInsights(): Promise { + Logger.debug('Fetching Inbox insights'); const cachedData = await this.readCacheFile(this.INBOX_CACHE_FILE); if (cachedData) { return cachedData; } try { + Logger.debug('Making Mixpanel API request for inbox insights'); const response = await axios.get('https://mixpanel.com/api/2.0/insights', { params: { project_id: '2667883', @@ -196,47 +212,57 @@ export class UsageInsights { }, }); + Logger.debug('Inbox insights fetch successful'); await this.writeCacheFile(response.data, this.INBOX_CACHE_FILE); return response.data; } catch (error) { - Logger.error('Error fetching Inbox insights:', error?.response?.data || error); + Logger.error('Inbox insights fetch failed:', error?.response?.data || error); return null; } } private calculateInboxMetrics(inboxSeries: IInboxResponse['series'], orgId: string): IInboxMetrics { + Logger.debug(`Calculating inbox metrics for organization: ${orgId}`); const getMetricStats = (seriesData: ISeriesData | undefined, orgKey: string): IMetricStats => { - const data = seriesData?.[orgKey]; + if (!seriesData) { + Logger.debug(`No series data available for ${orgKey}`); + + return { current: 0, previous: 0, change: 0 }; + } + + const data = seriesData[orgKey]; if (!data) { - return { - current: 0, - previous: 0, - change: 0, - }; + Logger.debug(`No data available for ${orgKey}`); + + return { current: 0, previous: 0, change: 0 }; } - const current = data['2024-12-02T00:00:00+02:00'] || 0; - const previous = data['2024-11-25T00:00:00+02:00'] || 0; + const current = Number(data[CURRENT_PERIOD] || 0); + const previous = Number(data[PREVIOUS_PERIOD] || 0); + const change = this.calculateChange(current, previous); - return { - current, - previous, - change: this.calculateChange(current, previous), - }; + Logger.debug(`Metric stats for ${orgKey}: current=${current}, previous=${previous}, change=${change}%`); + + return { current, previous, change }; }; - // Always return a complete metrics object - return { + const metrics = { sessionInitialized: getMetricStats(inboxSeries['A. Session Initialized - [Inbox] [Total Events]'], orgId), updatePreferences: getMetricStats(inboxSeries['B. Update Preferences - [Inbox] [Total Events]'], orgId), markNotification: getMetricStats(inboxSeries['C. Mark Notification As - [Inbox] [Total Events]'], orgId), updateAction: getMetricStats(inboxSeries['D. Update Notification Action - [Inbox] [Total Events]'], orgId), }; + + Logger.debug(`Inbox metrics calculated for ${orgId}:`, metrics); + + return metrics; } private calculateOverallInboxMetrics(inboxSeries: IInboxResponse['series']): IInboxMetrics { + Logger.debug('Calculating overall inbox metrics'); + return this.calculateInboxMetrics(inboxSeries, '$overall'); } @@ -245,39 +271,50 @@ export class UsageInsights { subscriberSeries: ISeriesData, workflowSeries: ISeriesData ): IOrganizationMetrics { + Logger.debug(`Creating organization metrics for: ${orgId}`); + const orgMetrics: IOrganizationMetrics = { id: orgId, name: '', subscriberNotifications: { - current: subscriberSeries[orgId]?.$overall?.['2024-12-02T00:00:00+02:00'] || 0, - previous: subscriberSeries[orgId]?.$overall?.['2024-11-25T00:00:00+02:00'] || 0, + current: subscriberSeries[orgId]?.$overall?.[WORKFLOW_CURRENT_PERIOD] || 0, + previous: subscriberSeries[orgId]?.$overall?.[WORKFLOW_PREVIOUS_PERIOD] || 0, change: 0, }, channelBreakdown: {}, }; - // Process channel breakdown from workflowSeries + Logger.debug(`Subscriber notifications for ${orgId}:`, orgMetrics.subscriberNotifications); + const orgWorkflowData = workflowSeries[orgId]; if (orgWorkflowData) { Object.entries(orgWorkflowData).forEach(([channel, data]) => { if (channel !== '$overall') { + const current = data.$overall?.[WORKFLOW_CURRENT_PERIOD] || 0; + const previous = data.$overall?.[WORKFLOW_PREVIOUS_PERIOD] || 0; + orgMetrics.channelBreakdown[channel] = { - current: data.$overall?.['2024-12-02T00:00:00+02:00'] || 0, - previous: data.$overall?.['2024-11-25T00:00:00+02:00'] || 0, + current, + previous, change: 0, }; + + Logger.debug(`Channel metrics for ${orgId}/${channel}: current=${current}, previous=${previous}`); } }); + } else { + Logger.debug(`No workflow data available for organization: ${orgId}`); } return orgMetrics; } private async logOrganizationMetrics(metrics: ICombinedMetrics, workflowStats: IMixpanelResponse['workflowStats']) { + Logger.debug(`Processing metrics for organization: ${metrics.id}`); try { const organization = await this.organizationRepository.findById(metrics.id); if (!organization) { - Logger.warn(`Organization not found: ${metrics.id}`); + Logger.warn(`Organization not found in repository: ${metrics.id}`); return; } @@ -288,36 +325,66 @@ export class UsageInsights { workflowStats: workflowStats.workflows, }; - Logger.log(`Organization Metrics: ${JSON.stringify(enrichedMetrics, null, 2)}`); + Logger.debug(`Enriched metrics for ${organization.name}:`, enrichedMetrics); + + await usageInsightsWorkflow.trigger({ + to: { + subscriberId: '675fe9bcab6a05bb6dcb7dab_11', + email: 'dima@novu.co', + }, + payload: { + period: { + current: CURRENT_PERIOD, + previous: PREVIOUS_PERIOD, + }, + subscriberNotifications: metrics.subscriberNotifications, + channelBreakdown: { + email: metrics.channelBreakdown.email || { current: 0, previous: 0, change: 0 }, + sms: metrics.channelBreakdown.sms || { current: 0, previous: 0, change: 0 }, + push: metrics.channelBreakdown.push || { current: 0, previous: 0, change: 0 }, + }, + inboxMetrics: { + sessionInitialized: metrics.inboxMetrics?.sessionInitialized, + updatePreferences: metrics.inboxMetrics?.updatePreferences, + markNotification: metrics.inboxMetrics?.markNotification, + updateAction: metrics.inboxMetrics?.updateAction, + }, + workflowStats: workflowStats.workflows, + }, + secretKey: process.env.NOVU_INTERNAL_SECRET_KEY, + }); } catch (error) { - Logger.error(`Error logging organization metrics for ${metrics.id}:`, error); + Logger.error(`Failed to process metrics for organization ${metrics.id}:`, error); } } private calculateWorkflowStats(subscriberSeries: ISeriesData): IMixpanelResponse['workflowStats'] { + Logger.debug('Calculating workflow statistics'); const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; - const currentPeriod = '2024-12-02T00:00:00+02:00'; - const previousPeriod = '2024-11-25T00:00:00+02:00'; - // Extract workflow names and stats from the first organization's subscriber events const firstOrgId = Object.keys(subscriberSeries).find((key) => key !== '$overall'); - if (!firstOrgId) return workflowStats; + if (!firstOrgId) { + Logger.debug('No organization data found for workflow stats'); + + return workflowStats; + } const orgData = subscriberSeries[firstOrgId]?.undefined; - if (!orgData) return workflowStats; + if (!orgData) { + Logger.debug(`No workflow data found for organization: ${firstOrgId}`); + + return workflowStats; + } - // Process each workflow from the subscriber events breakdown Object.entries(orgData) .filter(([name]) => name !== '$overall') .forEach(([name, data]) => { - const current = data[currentPeriod] || 0; - const previous = data[previousPeriod] || 0; - - workflowStats.workflows[name] = { - current, - previous, - change: this.calculateChange(current, previous), - }; + const current = data[WORKFLOW_CURRENT_PERIOD] || 0; + const previous = data[WORKFLOW_PREVIOUS_PERIOD] || 0; + const change = this.calculateChange(current, previous); + + workflowStats.workflows[name] = { current, previous, change }; + Logger.debug(`Workflow stats for ${name}: current=${current}, previous=${previous}, change=${change}%`); }); return workflowStats; @@ -325,28 +392,29 @@ export class UsageInsights { @InstrumentUsecase() async execute(command: UsageInsightsCommand): Promise { + Logger.debug('Executing UsageInsights usecase', { command }); + const [mixpanelData, inboxData] = await Promise.all([this.fetchMixpanelInsights(), this.fetchInboxInsights()]); if (!mixpanelData?.series) { - Logger.error('No Mixpanel data available'); + Logger.error('Mixpanel data unavailable or invalid'); return null; } + Logger.debug('Processing Mixpanel and Inbox data'); const subscriberSeries = mixpanelData.series['A. Notification Subscriber Event Trigger [Total Events]']; const workflowSeries = mixpanelData.series['B. Process Workflow Step - [Triggers] [Total Events]']; if (!subscriberSeries || !workflowSeries) { - Logger.error('Required series data not found'); + Logger.error('Required series data missing from Mixpanel response'); return null; } - // Calculate workflow statistics const workflowStats = this.calculateWorkflowStats(subscriberSeries); mixpanelData.workflowStats = workflowStats; - // Initialize inbox stats with default values const defaultInboxMetrics: IInboxMetrics = { sessionInitialized: { current: 0, previous: 0, change: 0 }, updatePreferences: { current: 0, previous: 0, change: 0 }, @@ -354,24 +422,24 @@ export class UsageInsights { updateAction: { current: 0, previous: 0, change: 0 }, }; + Logger.debug('Initializing inbox stats'); const inboxStats: IUsageInsightsResponse['inboxStats'] = { byOrganization: {}, overall: inboxData?.series ? this.calculateOverallInboxMetrics(inboxData.series) : defaultInboxMetrics, }; - // Process each organization's data + Logger.debug('Processing organization data'); for (const [orgId, orgData] of Object.entries(workflowSeries)) { if (orgId === '$overall') continue; + Logger.debug(`Processing metrics for organization: ${orgId}`); const metrics = this.createOrganizationMetrics(orgId, subscriberSeries, workflowSeries) as ICombinedMetrics; - // Calculate subscriber notifications change metrics.subscriberNotifications.change = this.calculateChange( metrics.subscriberNotifications.current, metrics.subscriberNotifications.previous ); - // Calculate channel breakdown changes metrics.channelBreakdown = Object.fromEntries( Object.entries(metrics.channelBreakdown).map(([channel, channelData]) => [ channel, @@ -382,12 +450,13 @@ export class UsageInsights { ]) ); - // Add inbox metrics if available if (inboxData?.series) { + Logger.debug(`Adding inbox metrics for organization: ${orgId}`); const inboxMetrics = this.calculateInboxMetrics(inboxData.series, orgId); metrics.inboxMetrics = inboxMetrics; inboxStats.byOrganization[orgId] = inboxMetrics; } else { + Logger.debug(`Using default inbox metrics for organization: ${orgId}`); metrics.inboxMetrics = defaultInboxMetrics; inboxStats.byOrganization[orgId] = defaultInboxMetrics; } @@ -395,6 +464,8 @@ export class UsageInsights { await this.logOrganizationMetrics(metrics, workflowStats); } + Logger.debug('UsageInsights execution completed successfully'); + return { series: mixpanelData.series, workflowStats: mixpanelData.workflowStats, diff --git a/libs/notifications/package.json b/libs/notifications/package.json index ebf070461f6..2f0d242b1e8 100644 --- a/libs/notifications/package.json +++ b/libs/notifications/package.json @@ -20,7 +20,7 @@ "test:watch": "echo 'Not tests available'", "watch:build": "tsc -p tsconfig.json -w", "reset-hard": "git clean -dfx && git reset --hard && pnpm install", - "start:studio": "novu dev --port 3000 --route /v1/bridge/novu" + "start:studio": "novu dev --port 3000 --route /v1/bridge/novu --dashboard-url http://localhost:4201" }, "dependencies": { "@react-email/components": "^0.0.15", diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index 13d4f1b957d..eab27899271 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -113,16 +113,25 @@ function InboxMetrics({ metrics }: { metrics: IUsageEmailData['inboxMetrics'] }) } function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStats'] }) { + const entries = Object.entries(workflows); + const chunks: Array> = []; + + for (let i = 0; i < entries.length; i += 4) { + chunks.push(entries.slice(i, i + 4)); + } + return (
- - {Object.entries(workflows).map(([name, metrics]) => ( - - - - ))} - + {chunks.map((chunk, index) => ( + + {chunk.map(([name, metrics]) => ( + + + + ))} + + ))}
); } diff --git a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts index 2ef1058377d..38163ec345e 100644 --- a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts +++ b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts @@ -98,13 +98,7 @@ export const usageInsightsWorkflow = workflow( updateAction: channelMetricsSchema.default(sampleUsageData.inboxMetrics.updateAction), }) .required(), - workflowStats: z - .object({ - 'Welcome Flow': channelMetricsSchema.default(sampleUsageData.workflowStats['Welcome Flow']), - 'Order Confirmation': channelMetricsSchema.default(sampleUsageData.workflowStats['Order Confirmation']), - 'Password Reset': channelMetricsSchema.default(sampleUsageData.workflowStats['Password Reset']), - }) - .required(), + workflowStats: z.record(z.string(), channelMetricsSchema).default(sampleUsageData.workflowStats), }) .required(), } diff --git a/packages/framework/src/utils/env.utils.ts b/packages/framework/src/utils/env.utils.ts index ee5b195bf23..701b66923fd 100644 --- a/packages/framework/src/utils/env.utils.ts +++ b/packages/framework/src/utils/env.utils.ts @@ -24,7 +24,7 @@ export const getBridgeUrl = async (): Promise => { // Local environments try { - if (process.env.NODE_ENV === 'development') { + if (process.env.NODE_ENV === 'development' || process.env.NODE_ENV === 'local') { const response = await fetch('http://localhost:2022/.well-known/novu'); const data = await response.json(); From 6d7c8677f83f5f9ca96ccf46d3f009ac51181f76 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 12:55:41 +0200 Subject: [PATCH 11/31] fix: items --- .../src/workflows/usage-insights/email.tsx | 77 ++++++++++++------- 1 file changed, 48 insertions(+), 29 deletions(-) diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index eab27899271..d7a403e3783 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -17,6 +17,16 @@ import { } from '@react-email/components'; import { IUsageEmailData } from './types'; +function formatDate(dateString: string) { + const date = new Date(dateString); + + return date.toLocaleDateString('en-US', { + year: 'numeric', + month: 'long', + day: 'numeric', + }); +} + function MetricCard({ title, current, @@ -34,7 +44,7 @@ function MetricCard({ const formatNumber = (num: number) => Math.floor(num).toLocaleString('en-US', { maximumFractionDigits: 0 }); return ( -
+
{title} @@ -69,7 +79,7 @@ function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBrea {Object.entries(channels).map(([channel, metrics]) => ( - + ))} @@ -113,35 +123,44 @@ function InboxMetrics({ metrics }: { metrics: IUsageEmailData['inboxMetrics'] }) } function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStats'] }) { - const entries = Object.entries(workflows); - const chunks: Array> = []; - - for (let i = 0; i < entries.length; i += 4) { - chunks.push(entries.slice(i, i + 4)); - } + const topWorkflows = Object.entries(workflows) + ?.sort((a, b) => b[1].current - a[1].current) + .slice(0, 6); return (
- - {chunks.map((chunk, index) => ( - - {chunk.map(([name, metrics]) => ( - - - - ))} - - ))} + +
+ {topWorkflows?.map(([name, metrics], index) => { + const isPositive = metrics.change > 0; + const changeColor = isPositive ? 'text-emerald-600' : 'text-rose-600'; + const isLast = index === topWorkflows.length - 1; + + return ( + + + {name} + + {Math.floor(metrics.current).toLocaleString()} notifications sent vs{' '} + {Math.floor(metrics.previous).toLocaleString()} + + + + + {isPositive ? '↑' : '↓'} {Math.abs(Math.floor(metrics.change))}% + + + + ); + })} +
); } -interface IMarketingLink { - href: string; - text: string; - emoji: string; -} - interface IMarketingConfig { title: string; links: IMarketingLink[]; @@ -201,18 +220,18 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC alt="Novu" className="mx-auto my-[32px]" /> - +
Usage Insights Report {props.organizationName}
- +
- Reporting Period: {props.period.current} + Reporting Period: {formatDate(props.period.current)} - Compared to: {props.period.previous} + Compared to: {formatDate(props.period.previous)}
@@ -236,7 +255,7 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC
Generated with ❤️ by Novu
- +
From 63ef9392b01b9afefa02ca7c7e8c5c65afab71d8 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 13:28:18 +0200 Subject: [PATCH 12/31] fix: items --- .../usage-insights/usage-insights.command.ts | 8 +---- .../usage-insights/usage-insights.usecase.ts | 29 +++++++++++++++---- .../src/workflows/usage-insights/email.tsx | 27 ++++++++--------- packages/shared/src/types/feature-flags.ts | 1 + 4 files changed, 40 insertions(+), 25 deletions(-) diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts index e9571a64c67..7ddfb922246 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts @@ -1,7 +1 @@ -import { IsString } from 'class-validator'; -import { EnvironmentCommand } from '@novu/application-generic'; - -export class UsageInsightsCommand extends EnvironmentCommand { - @IsString() - organizationId: string; -} +export class UsageInsightsCommand {} diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 83410adafcd..656497aa8d8 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -1,6 +1,7 @@ import { Injectable, Logger } from '@nestjs/common'; import { CommunityOrganizationRepository } from '@novu/dal'; -import { InstrumentUsecase } from '@novu/application-generic'; +import { InstrumentUsecase, FeatureFlagsService } from '@novu/application-generic'; +import { FeatureFlagsKeysEnum } from '@novu/shared'; import axios from 'axios'; import { promises as fs } from 'fs'; import { join } from 'path'; @@ -106,7 +107,10 @@ export class UsageInsights { private readonly INBOX_CACHE_FILE = join(process.cwd(), 'mixpanel-inbox-cache.json'); private readonly CACHE_TTL = 24 * 60 * 60 * 1000; // 24 hours in milliseconds - constructor(private organizationRepository: CommunityOrganizationRepository) { + constructor( + private organizationRepository: CommunityOrganizationRepository, + private featureFlagsService: FeatureFlagsService + ) { Logger.debug('UsageInsights service initialized'); } @@ -309,7 +313,10 @@ export class UsageInsights { return orgMetrics; } - private async logOrganizationMetrics(metrics: ICombinedMetrics, workflowStats: IMixpanelResponse['workflowStats']) { + private async sendOrganizationNotification( + metrics: ICombinedMetrics, + workflowStats: IMixpanelResponse['workflowStats'] + ) { Logger.debug(`Processing metrics for organization: ${metrics.id}`); try { const organization = await this.organizationRepository.findById(metrics.id); @@ -327,10 +334,22 @@ export class UsageInsights { Logger.debug(`Enriched metrics for ${organization.name}:`, enrichedMetrics); + const isEnabled = await this.featureFlagsService.get(FeatureFlagsKeysEnum.IS_USAGE_INSIGHTS_ENABLED, false, { + environmentId: 'system', + organizationId: organization._id, + userId: 'system', + }); + + if (!isEnabled) { + Logger.log('Skipping notification delivery - usage insights disabled by feature flag', enrichedMetrics); + + return; + } + await usageInsightsWorkflow.trigger({ to: { subscriberId: '675fe9bcab6a05bb6dcb7dab_11', - email: 'dima@novu.co', + email: `dima+testing-${organization._id}@novu.co`, }, payload: { period: { @@ -461,7 +480,7 @@ export class UsageInsights { inboxStats.byOrganization[orgId] = defaultInboxMetrics; } - await this.logOrganizationMetrics(metrics, workflowStats); + await this.sendOrganizationNotification(metrics, workflowStats); } Logger.debug('UsageInsights execution completed successfully'); diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index d7a403e3783..f6759856f58 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -44,18 +44,20 @@ function MetricCard({ const formatNumber = (num: number) => Math.floor(num).toLocaleString('en-US', { maximumFractionDigits: 0 }); return ( -
+
- {title} + + {title} + - + {isPositive ? '↑' : '↓'} {Math.abs(Math.floor(change))}% - + {formatNumber(current)} Previous: {formatNumber(previous)} @@ -79,7 +81,7 @@ function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBrea {Object.entries(channels).map(([channel, metrics]) => ( - + ))} @@ -134,12 +136,11 @@ function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStat {topWorkflows?.map(([name, metrics], index) => { const isPositive = metrics.change > 0; const changeColor = isPositive ? 'text-emerald-600' : 'text-rose-600'; - const isLast = index === topWorkflows.length - 1; return ( {name} @@ -206,10 +207,10 @@ function MarketingSection({ config }: { config: IMarketingConfig }) { export default function UsageInsightsEmail(props: IUsageEmailData & { marketingConfig: IMarketingConfig }) { return ( - + - 📊 Usage Insights for {props.organizationName} - {props.period.current} + 📊 Usage Insights for {props.organizationName} - {formatDate(props.period.current)} @@ -221,13 +222,13 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC className="mx-auto my-[32px]" /> -
+
Usage Insights Report {props.organizationName}
-
+
Reporting Period: {formatDate(props.period.current)} @@ -236,9 +237,9 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC
-
+
Date: Sun, 22 Dec 2024 13:46:56 +0200 Subject: [PATCH 13/31] fix: items --- apps/api/mixpanel-inbox-cache.json | 60 ++-- apps/api/mixpanel-insights-cache.json | 187 ++++-------- .../usage-insights/usage-insights.usecase.ts | 280 +++++++++++++----- .../src/workflows/usage-insights/email.tsx | 4 +- 4 files changed, 299 insertions(+), 232 deletions(-) diff --git a/apps/api/mixpanel-inbox-cache.json b/apps/api/mixpanel-inbox-cache.json index 97e7435cf7c..eaa3286df3d 100644 --- a/apps/api/mixpanel-inbox-cache.json +++ b/apps/api/mixpanel-inbox-cache.json @@ -1,11 +1,11 @@ { - "timestamp": 1734861201939, + "timestamp": 1734867415057, "data": { "headers": ["$event", "$distinct_id"], - "computed_at": "2024-12-22T09:53:21.563714+00:00", + "computed_at": "2024-12-22T11:36:54.577575+00:00", "date_range": { - "from_date": "2024-12-09T00:00:00+02:00", - "to_date": "2024-12-22T11:53:20.351806+02:00" + "from_date": "2024-12-01T00:00:00+02:00", + "to_date": "2024-12-22T13:36:52.876837+02:00" }, "meta": { "min_sampling_factor": 1, @@ -14,12 +14,12 @@ "group": [ { "bookmark": { - "dataGroupId": "7400984862319914261", "dataset": "$mixpanel", - "propertyType": "string", + "value": "$distinct_id", "resourceType": "people", "search": "", - "value": "$distinct_id" + "dataGroupId": "7400984862319914261", + "propertyType": "string" } } ], @@ -42,75 +42,57 @@ "series": { "A. Session Initialized - [Inbox] [Total Events]": { "$overall": { - "2024-12-09T00:00:00+02:00": 1026838, - "2024-12-16T00:00:00+02:00": 838285 + "2024-12-01T00:00:00+02:00": 2916546 }, "675fe9bcab6a05bb6dcb7dab": { - "2024-12-09T00:00:00+02:00": 1026838, - "2024-12-16T00:00:00+02:00": 838285 + "2024-12-01T00:00:00+02:00": 2916546 } }, "B. Update Preferences - [Inbox] [Total Events]": { "$overall": { - "2024-12-09T00:00:00+02:00": 0, - "2024-12-16T00:00:00+02:00": 2 + "2024-12-01T00:00:00+02:00": 2 }, "675fe9bcab6a05bb6dcb7dab": { - "2024-12-09T00:00:00+02:00": 0, - "2024-12-16T00:00:00+02:00": 2 + "2024-12-01T00:00:00+02:00": 2 } }, "C. Mark Notification As - [Inbox] [Total Events]": { "$overall": { - "2024-12-09T00:00:00+02:00": 187, - "2024-12-16T00:00:00+02:00": 188 + "2024-12-01T00:00:00+02:00": 598 }, "675fe9bcab6a05bb6dcb7dab": { - "2024-12-09T00:00:00+02:00": 187, - "2024-12-16T00:00:00+02:00": 188 + "2024-12-01T00:00:00+02:00": 598 } } }, "time_comparison": { "date_range": { - "from_date": "2024-11-09T00:00:00+02:00", - "to_date": "2024-11-24T23:59:59.999000+02:00" + "from_date": "2024-11-01T00:00:00+02:00", + "to_date": "2024-11-30T23:59:59.999000+02:00" }, "series": { "A. Session Initialized - [Inbox] [Total Events]": { "$overall": { - "2024-11-04T00:00:00+02:00": 171480, - "2024-11-11T00:00:00+02:00": 783641, - "2024-11-18T00:00:00+02:00": 1183519 + "2024-11-01T00:00:00+02:00": 3713926 }, "675fe9bcab6a05bb6dcb7dab": { - "2024-11-04T00:00:00+02:00": 171480, - "2024-11-11T00:00:00+02:00": 783641, - "2024-11-18T00:00:00+02:00": 1183519 + "2024-11-01T00:00:00+02:00": 3713926 } }, "B. Update Preferences - [Inbox] [Total Events]": { "$overall": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 4, - "2024-11-18T00:00:00+02:00": 0 + "2024-11-01T00:00:00+02:00": 8 }, "675fe9bcab6a05bb6dcb7dab": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 4, - "2024-11-18T00:00:00+02:00": 0 + "2024-11-01T00:00:00+02:00": 8 } }, "C. Mark Notification As - [Inbox] [Total Events]": { "$overall": { - "2024-11-04T00:00:00+02:00": 46, - "2024-11-11T00:00:00+02:00": 124, - "2024-11-18T00:00:00+02:00": 165 + "2024-11-01T00:00:00+02:00": 721 }, "675fe9bcab6a05bb6dcb7dab": { - "2024-11-04T00:00:00+02:00": 46, - "2024-11-11T00:00:00+02:00": 124, - "2024-11-18T00:00:00+02:00": 165 + "2024-11-01T00:00:00+02:00": 721 } } } diff --git a/apps/api/mixpanel-insights-cache.json b/apps/api/mixpanel-insights-cache.json index c9cfefe139d..4d9e3cfe6eb 100644 --- a/apps/api/mixpanel-insights-cache.json +++ b/apps/api/mixpanel-insights-cache.json @@ -1,11 +1,11 @@ { - "timestamp": 1734861201845, + "timestamp": 1734867415171, "data": { "headers": ["$event", "$distinct_id", "jobType", "name"], - "computed_at": "2024-12-22T09:53:21.563333+00:00", + "computed_at": "2024-12-22T11:36:54.669500+00:00", "date_range": { - "from_date": "2024-12-09T00:00:00+02:00", - "to_date": "2024-12-22T11:53:19.854264+02:00" + "from_date": "2024-12-01T00:00:00+02:00", + "to_date": "2024-12-22T13:36:52.853691+02:00" }, "meta": { "min_sampling_factor": 1, @@ -54,96 +54,79 @@ "series": { "A. Notification Subscriber Event Trigger [Total Events]": { "$overall": { - "2024-12-09T00:00:00+02:00": 227, - "2024-12-16T00:00:00+02:00": 177 + "2024-12-01T00:00:00+02:00": 673 }, "675fe9bcab6a05bb6dcb7dab": { "$overall": { - "2024-12-09T00:00:00+02:00": 227, - "2024-12-16T00:00:00+02:00": 177 + "2024-12-01T00:00:00+02:00": 673 }, "undefined": { "$overall": { - "2024-12-09T00:00:00+02:00": 227, - "2024-12-16T00:00:00+02:00": 177 + "2024-12-01T00:00:00+02:00": 673 }, - "User Welcome Email": { - "2024-12-09T00:00:00+02:00": 5, - "2024-12-16T00:00:00+02:00": 6 + "Client UserAccount verification": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Schedule Project": { + "2024-12-01T00:00:00+02:00": 392 + }, + "Account Verification": { + "2024-12-01T00:00:00+02:00": 27 }, "DOWNLOAD_FILES": { - "2024-12-09T00:00:00+02:00": 1, - "2024-12-16T00:00:00+02:00": 0 + "2024-12-01T00:00:00+02:00": 1 }, - "Client UserAccount verification": { - "2024-12-09T00:00:00+02:00": 4, - "2024-12-16T00:00:00+02:00": 6 + "User Welcome Email": { + "2024-12-01T00:00:00+02:00": 20 }, "FILE_UPLOAD": { - "2024-12-09T00:00:00+02:00": 59, - "2024-12-16T00:00:00+02:00": 33 + "2024-12-01T00:00:00+02:00": 187 }, - "Schedule Project": { - "2024-12-09T00:00:00+02:00": 147, - "2024-12-16T00:00:00+02:00": 117 + "WEBFORM_CREATED": { + "2024-12-01T00:00:00+02:00": 3 }, "incorrect-password": { - "2024-12-09T00:00:00+02:00": 3, - "2024-12-16T00:00:00+02:00": 6 - }, - "Account Verification": { - "2024-12-09T00:00:00+02:00": 8, - "2024-12-16T00:00:00+02:00": 5 + "2024-12-01T00:00:00+02:00": 15 }, "WEBFORM_SUBMITTED": { - "2024-12-09T00:00:00+02:00": 0, - "2024-12-16T00:00:00+02:00": 1 + "2024-12-01T00:00:00+02:00": 1 }, - "WEBFORM_CREATED": { - "2024-12-09T00:00:00+02:00": 0, - "2024-12-16T00:00:00+02:00": 3 + "Reset Password": { + "2024-12-01T00:00:00+02:00": 13 } } } }, "B. Process Workflow Step - [Triggers] [Total Events]": { "$overall": { - "2024-12-09T00:00:00+02:00": 513, - "2024-12-16T00:00:00+02:00": 390 + "2024-12-01T00:00:00+02:00": 1536 }, "675fe9bcab6a05bb6dcb7dab": { "$overall": { - "2024-12-09T00:00:00+02:00": 513, - "2024-12-16T00:00:00+02:00": 390 + "2024-12-01T00:00:00+02:00": 1536 }, - "trigger": { + "email": { "$overall": { - "2024-12-09T00:00:00+02:00": 227, - "2024-12-16T00:00:00+02:00": 177 + "2024-12-01T00:00:00+02:00": 673 }, "undefined": { - "2024-12-09T00:00:00+02:00": 227, - "2024-12-16T00:00:00+02:00": 177 + "2024-12-01T00:00:00+02:00": 673 } }, - "email": { + "push": { "$overall": { - "2024-12-09T00:00:00+02:00": 227, - "2024-12-16T00:00:00+02:00": 177 + "2024-12-01T00:00:00+02:00": 190 }, "undefined": { - "2024-12-09T00:00:00+02:00": 227, - "2024-12-16T00:00:00+02:00": 177 + "2024-12-01T00:00:00+02:00": 190 } }, - "push": { + "trigger": { "$overall": { - "2024-12-09T00:00:00+02:00": 59, - "2024-12-16T00:00:00+02:00": 36 + "2024-12-01T00:00:00+02:00": 673 }, "undefined": { - "2024-12-09T00:00:00+02:00": 59, - "2024-12-16T00:00:00+02:00": 36 + "2024-12-01T00:00:00+02:00": 673 } } } @@ -151,122 +134,82 @@ }, "time_comparison": { "date_range": { - "from_date": "2024-11-09T00:00:00+02:00", - "to_date": "2024-11-24T23:59:59.999000+02:00" + "from_date": "2024-11-01T00:00:00+02:00", + "to_date": "2024-11-30T23:59:59.999000+02:00" }, "series": { "A. Notification Subscriber Event Trigger [Total Events]": { "$overall": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 220, - "2024-11-18T00:00:00+02:00": 462 + "2024-11-01T00:00:00+02:00": 1032 }, "675fe9bcab6a05bb6dcb7dab": { "$overall": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 220, - "2024-11-18T00:00:00+02:00": 462 + "2024-11-01T00:00:00+02:00": 1032 }, "undefined": { "$overall": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 220, - "2024-11-18T00:00:00+02:00": 462 - }, - "Schedule Project": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 134, - "2024-11-18T00:00:00+02:00": 115 + "2024-11-01T00:00:00+02:00": 1032 }, - "User Welcome Email": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 3, - "2024-11-18T00:00:00+02:00": 14 + "REMIND_INVOICE": { + "2024-11-01T00:00:00+02:00": 1 }, "FILE_UPLOAD": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 40, - "2024-11-18T00:00:00+02:00": 4 + "2024-11-01T00:00:00+02:00": 106 + }, + "incorrect-password": { + "2024-11-01T00:00:00+02:00": 16 }, "Reset Password": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 3, - "2024-11-18T00:00:00+02:00": 0 + "2024-11-01T00:00:00+02:00": 5 }, - "TAG_ADDED": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 32, - "2024-11-18T00:00:00+02:00": 0 + "Account Verification": { + "2024-11-01T00:00:00+02:00": 323 }, - "incorrect-password": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 6, - "2024-11-18T00:00:00+02:00": 2 + "User Welcome Email": { + "2024-11-01T00:00:00+02:00": 22 }, "Client UserAccount verification": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 2, - "2024-11-18T00:00:00+02:00": 7 + "2024-11-01T00:00:00+02:00": 13 }, - "REMIND_INVOICE": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 0, - "2024-11-18T00:00:00+02:00": 1 + "Schedule Project": { + "2024-11-01T00:00:00+02:00": 514 }, - "Account Verification": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 0, - "2024-11-18T00:00:00+02:00": 319 + "TAG_ADDED": { + "2024-11-01T00:00:00+02:00": 32 } } } }, "B. Process Workflow Step - [Triggers] [Total Events]": { "$overall": { - "2024-11-04T00:00:00+02:00": 46, - "2024-11-11T00:00:00+02:00": 480, - "2024-11-18T00:00:00+02:00": 928 + "2024-11-01T00:00:00+02:00": 2170 }, "675fe9bcab6a05bb6dcb7dab": { "$overall": { - "2024-11-04T00:00:00+02:00": 46, - "2024-11-11T00:00:00+02:00": 480, - "2024-11-18T00:00:00+02:00": 928 + "2024-11-01T00:00:00+02:00": 2170 }, "trigger": { "$overall": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 220, - "2024-11-18T00:00:00+02:00": 462 + "2024-11-01T00:00:00+02:00": 1032 }, "undefined": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 220, - "2024-11-18T00:00:00+02:00": 462 + "2024-11-01T00:00:00+02:00": 1032 } }, "email": { "$overall": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 220, - "2024-11-18T00:00:00+02:00": 462 + "2024-11-01T00:00:00+02:00": 1032 }, "undefined": { - "2024-11-04T00:00:00+02:00": 23, - "2024-11-11T00:00:00+02:00": 220, - "2024-11-18T00:00:00+02:00": 462 + "2024-11-01T00:00:00+02:00": 1032 } }, "push": { "$overall": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 40, - "2024-11-18T00:00:00+02:00": 4 + "2024-11-01T00:00:00+02:00": 106 }, "undefined": { - "2024-11-04T00:00:00+02:00": 0, - "2024-11-11T00:00:00+02:00": 40, - "2024-11-18T00:00:00+02:00": 4 + "2024-11-01T00:00:00+02:00": 106 } } } diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 656497aa8d8..e38011dae43 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -9,10 +9,12 @@ import { join } from 'path'; import { usageInsightsWorkflow } from '@novu/notifications'; import { UsageInsightsCommand } from './usage-insights.command'; -const CURRENT_PERIOD = '2024-12-16T00:00:00+02:00'; -const PREVIOUS_PERIOD = '2024-12-09T00:00:00+02:00'; -const WORKFLOW_CURRENT_PERIOD = '2024-12-16T00:00:00+02:00'; -const WORKFLOW_PREVIOUS_PERIOD = '2024-12-09T00:00:00+02:00'; +interface IDateRange { + from_date: string; + to_date: string; +} + +const USE_INSIGHTS_CACHE = process.env.USE_INSIGHTS_CACHE === 'true'; interface IChannelMetrics { current: number; @@ -53,6 +55,14 @@ interface IMixpanelResponse { 'A. Notification Subscriber Event Trigger [Total Events]': ISeriesData; 'B. Process Workflow Step - [Triggers] [Total Events]': ISeriesData; }; + date_range: IDateRange; + time_comparison: { + date_range: IDateRange; + series: { + 'A. Notification Subscriber Event Trigger [Total Events]': ISeriesData; + 'B. Process Workflow Step - [Triggers] [Total Events]': ISeriesData; + }; + }; workflowStats: { workflows: { [name: string]: { @@ -71,6 +81,16 @@ interface IInboxResponse { 'C. Mark Notification As - [Inbox] [Total Events]': ISeriesData; 'D. Update Notification Action - [Inbox] [Total Events]': ISeriesData; }; + date_range: IDateRange; + time_comparison: { + date_range: IDateRange; + series: { + 'A. Session Initialized - [Inbox] [Total Events]': ISeriesData; + 'B. Update Preferences - [Inbox] [Total Events]': ISeriesData; + 'C. Mark Notification As - [Inbox] [Total Events]': ISeriesData; + 'D. Update Notification Action - [Inbox] [Total Events]': ISeriesData; + }; + }; } interface IMetricStats { @@ -114,7 +134,36 @@ export class UsageInsights { Logger.debug('UsageInsights service initialized'); } + private roundToStartOfDay(date: string): string { + return `${new Date(date).toISOString().split('T')[0]}T00:00:00+02:00`; + } + + private getSeriesDateRange(currentSeries: ISeriesData, previousSeries: ISeriesData): IDateRange { + const firstOrgId = Object.keys(currentSeries).find((key) => key !== '$overall'); + if (!firstOrgId) { + return { from_date: '', to_date: '' }; + } + + const currentDates = Object.keys(currentSeries[firstOrgId]?.$overall || {}); + const previousDates = Object.keys(previousSeries[firstOrgId]?.$overall || {}); + + if (!currentDates.length || !previousDates.length) { + return { from_date: '', to_date: '' }; + } + + return { + from_date: this.roundToStartOfDay(previousDates[0]), + to_date: this.roundToStartOfDay(currentDates[0]), + }; + } + private async readCacheFile(cacheFile: string) { + if (!USE_INSIGHTS_CACHE) { + Logger.debug('Cache usage is disabled by environment variable'); + + return null; + } + Logger.debug(`Attempting to read cache file: ${cacheFile}`); try { const fileContent = await fs.readFile(cacheFile, 'utf-8'); @@ -137,6 +186,12 @@ export class UsageInsights { } private async writeCacheFile(data: any, cacheFile: string) { + if (!USE_INSIGHTS_CACHE) { + Logger.debug('Cache usage is disabled by environment variable, skipping write'); + + return; + } + Logger.debug(`Attempting to write cache file: ${cacheFile}`); try { const cache = { @@ -227,24 +282,34 @@ export class UsageInsights { } } - private calculateInboxMetrics(inboxSeries: IInboxResponse['series'], orgId: string): IInboxMetrics { + private calculateInboxMetrics( + inboxSeries: IInboxResponse['series'], + inboxTimeComparison: IInboxResponse['time_comparison']['series'], + orgId: string, + dateRange: IDateRange + ): IInboxMetrics { Logger.debug(`Calculating inbox metrics for organization: ${orgId}`); - const getMetricStats = (seriesData: ISeriesData | undefined, orgKey: string): IMetricStats => { - if (!seriesData) { + const getMetricStats = ( + currentSeriesData: ISeriesData | undefined, + previousSeriesData: ISeriesData | undefined, + orgKey: string + ): IMetricStats => { + if (!currentSeriesData || !previousSeriesData) { Logger.debug(`No series data available for ${orgKey}`); return { current: 0, previous: 0, change: 0 }; } - const data = seriesData[orgKey]; - if (!data) { + const currentData = currentSeriesData[orgKey]; + const previousData = previousSeriesData[orgKey]; + if (!currentData || !previousData) { Logger.debug(`No data available for ${orgKey}`); return { current: 0, previous: 0, change: 0 }; } - const current = Number(data[CURRENT_PERIOD] || 0); - const previous = Number(data[PREVIOUS_PERIOD] || 0); + const current = Number(Object.values(currentData)[0] || 0); + const previous = Number(Object.values(previousData)[0] || 0); const change = this.calculateChange(current, previous); Logger.debug(`Metric stats for ${orgKey}: current=${current}, previous=${previous}, change=${change}%`); @@ -252,28 +317,77 @@ export class UsageInsights { return { current, previous, change }; }; - const metrics = { - sessionInitialized: getMetricStats(inboxSeries['A. Session Initialized - [Inbox] [Total Events]'], orgId), - updatePreferences: getMetricStats(inboxSeries['B. Update Preferences - [Inbox] [Total Events]'], orgId), - markNotification: getMetricStats(inboxSeries['C. Mark Notification As - [Inbox] [Total Events]'], orgId), - updateAction: getMetricStats(inboxSeries['D. Update Notification Action - [Inbox] [Total Events]'], orgId), + return { + sessionInitialized: getMetricStats( + inboxSeries['A. Session Initialized - [Inbox] [Total Events]'], + inboxTimeComparison['A. Session Initialized - [Inbox] [Total Events]'], + orgId + ), + updatePreferences: getMetricStats( + inboxSeries['B. Update Preferences - [Inbox] [Total Events]'], + inboxTimeComparison['B. Update Preferences - [Inbox] [Total Events]'], + orgId + ), + markNotification: getMetricStats( + inboxSeries['C. Mark Notification As - [Inbox] [Total Events]'], + inboxTimeComparison['C. Mark Notification As - [Inbox] [Total Events]'], + orgId + ), + updateAction: getMetricStats( + inboxSeries['D. Update Notification Action - [Inbox] [Total Events]'], + inboxTimeComparison['D. Update Notification Action - [Inbox] [Total Events]'], + orgId + ), }; - - Logger.debug(`Inbox metrics calculated for ${orgId}:`, metrics); - - return metrics; } - private calculateOverallInboxMetrics(inboxSeries: IInboxResponse['series']): IInboxMetrics { + private calculateOverallInboxMetrics( + inboxSeries: IInboxResponse['series'], + inboxTimeComparison: IInboxResponse['time_comparison']['series'] + ): IInboxMetrics { Logger.debug('Calculating overall inbox metrics'); - return this.calculateInboxMetrics(inboxSeries, '$overall'); + const getMetricStats = ( + currentSeriesData: ISeriesData | undefined, + previousSeriesData: ISeriesData | undefined + ): IMetricStats => { + if (!currentSeriesData?.$overall || !previousSeriesData?.$overall) { + return { current: 0, previous: 0, change: 0 }; + } + + const current = Number(Object.values(currentSeriesData.$overall)[0] || 0); + const previous = Number(Object.values(previousSeriesData.$overall)[0] || 0); + const change = this.calculateChange(current, previous); + + return { current, previous, change }; + }; + + return { + sessionInitialized: getMetricStats( + inboxSeries['A. Session Initialized - [Inbox] [Total Events]'], + inboxTimeComparison['A. Session Initialized - [Inbox] [Total Events]'] + ), + updatePreferences: getMetricStats( + inboxSeries['B. Update Preferences - [Inbox] [Total Events]'], + inboxTimeComparison['B. Update Preferences - [Inbox] [Total Events]'] + ), + markNotification: getMetricStats( + inboxSeries['C. Mark Notification As - [Inbox] [Total Events]'], + inboxTimeComparison['C. Mark Notification As - [Inbox] [Total Events]'] + ), + updateAction: getMetricStats( + inboxSeries['D. Update Notification Action - [Inbox] [Total Events]'], + inboxTimeComparison['D. Update Notification Action - [Inbox] [Total Events]'] + ), + }; } private createOrganizationMetrics( orgId: string, subscriberSeries: ISeriesData, - workflowSeries: ISeriesData + subscriberTimeComparison: ISeriesData, + workflowSeries: ISeriesData, + workflowTimeComparison: ISeriesData ): IOrganizationMetrics { Logger.debug(`Creating organization metrics for: ${orgId}`); @@ -281,8 +395,8 @@ export class UsageInsights { id: orgId, name: '', subscriberNotifications: { - current: subscriberSeries[orgId]?.$overall?.[WORKFLOW_CURRENT_PERIOD] || 0, - previous: subscriberSeries[orgId]?.$overall?.[WORKFLOW_PREVIOUS_PERIOD] || 0, + current: Number(Object.values(subscriberSeries[orgId]?.$overall || {})[0] || 0), + previous: Number(Object.values(subscriberTimeComparison[orgId]?.$overall || {})[0] || 0), change: 0, }, channelBreakdown: {}, @@ -291,11 +405,12 @@ export class UsageInsights { Logger.debug(`Subscriber notifications for ${orgId}:`, orgMetrics.subscriberNotifications); const orgWorkflowData = workflowSeries[orgId]; - if (orgWorkflowData) { + const orgWorkflowPreviousData = workflowTimeComparison[orgId]; + if (orgWorkflowData && orgWorkflowPreviousData) { Object.entries(orgWorkflowData).forEach(([channel, data]) => { if (channel !== '$overall') { - const current = data.$overall?.[WORKFLOW_CURRENT_PERIOD] || 0; - const previous = data.$overall?.[WORKFLOW_PREVIOUS_PERIOD] || 0; + const current = Number(Object.values(data.$overall || {})[0] || 0); + const previous = Number(Object.values(orgWorkflowPreviousData[channel]?.$overall || {})[0] || 0); orgMetrics.channelBreakdown[channel] = { current, @@ -313,9 +428,46 @@ export class UsageInsights { return orgMetrics; } + private calculateWorkflowStats( + subscriberSeries: ISeriesData, + subscriberTimeComparison: ISeriesData + ): IMixpanelResponse['workflowStats'] { + Logger.debug('Calculating workflow statistics'); + const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; + + const firstOrgId = Object.keys(subscriberSeries).find((key) => key !== '$overall'); + if (!firstOrgId) { + Logger.debug('No organization data found for workflow stats'); + + return workflowStats; + } + + const orgData = subscriberSeries[firstOrgId]?.undefined; + const orgPreviousData = subscriberTimeComparison[firstOrgId]?.undefined; + if (!orgData || !orgPreviousData) { + Logger.debug(`No workflow data found for organization: ${firstOrgId}`); + + return workflowStats; + } + + Object.entries(orgData) + .filter(([name]) => name !== '$overall') + .forEach(([name, data]) => { + const current = Number(Object.values(data)[0] || 0); + const previous = Number(Object.values(orgPreviousData[name] || {})[0] || 0); + const change = this.calculateChange(current, previous); + + workflowStats.workflows[name] = { current, previous, change }; + Logger.debug(`Workflow stats for ${name}: current=${current}, previous=${previous}, change=${change}%`); + }); + + return workflowStats; + } + private async sendOrganizationNotification( metrics: ICombinedMetrics, - workflowStats: IMixpanelResponse['workflowStats'] + workflowStats: IMixpanelResponse['workflowStats'], + dateRange: IDateRange ) { Logger.debug(`Processing metrics for organization: ${metrics.id}`); try { @@ -353,8 +505,8 @@ export class UsageInsights { }, payload: { period: { - current: CURRENT_PERIOD, - previous: PREVIOUS_PERIOD, + current: dateRange.to_date, + previous: dateRange.from_date, }, subscriberNotifications: metrics.subscriberNotifications, channelBreakdown: { @@ -377,38 +529,6 @@ export class UsageInsights { } } - private calculateWorkflowStats(subscriberSeries: ISeriesData): IMixpanelResponse['workflowStats'] { - Logger.debug('Calculating workflow statistics'); - const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; - - const firstOrgId = Object.keys(subscriberSeries).find((key) => key !== '$overall'); - if (!firstOrgId) { - Logger.debug('No organization data found for workflow stats'); - - return workflowStats; - } - - const orgData = subscriberSeries[firstOrgId]?.undefined; - if (!orgData) { - Logger.debug(`No workflow data found for organization: ${firstOrgId}`); - - return workflowStats; - } - - Object.entries(orgData) - .filter(([name]) => name !== '$overall') - .forEach(([name, data]) => { - const current = data[WORKFLOW_CURRENT_PERIOD] || 0; - const previous = data[WORKFLOW_PREVIOUS_PERIOD] || 0; - const change = this.calculateChange(current, previous); - - workflowStats.workflows[name] = { current, previous, change }; - Logger.debug(`Workflow stats for ${name}: current=${current}, previous=${previous}, change=${change}%`); - }); - - return workflowStats; - } - @InstrumentUsecase() async execute(command: UsageInsightsCommand): Promise { Logger.debug('Executing UsageInsights usecase', { command }); @@ -424,14 +544,23 @@ export class UsageInsights { Logger.debug('Processing Mixpanel and Inbox data'); const subscriberSeries = mixpanelData.series['A. Notification Subscriber Event Trigger [Total Events]']; const workflowSeries = mixpanelData.series['B. Process Workflow Step - [Triggers] [Total Events]']; + const subscriberTimeComparison = + mixpanelData.time_comparison.series['A. Notification Subscriber Event Trigger [Total Events]']; + const workflowTimeComparison = + mixpanelData.time_comparison.series['B. Process Workflow Step - [Triggers] [Total Events]']; - if (!subscriberSeries || !workflowSeries) { + if (!subscriberSeries || !workflowSeries || !subscriberTimeComparison || !workflowTimeComparison) { Logger.error('Required series data missing from Mixpanel response'); return null; } - const workflowStats = this.calculateWorkflowStats(subscriberSeries); + const seriesDateRange = { + from_date: mixpanelData.time_comparison.date_range.from_date, + to_date: mixpanelData.date_range.to_date, + }; + + const workflowStats = this.calculateWorkflowStats(subscriberSeries, subscriberTimeComparison); mixpanelData.workflowStats = workflowStats; const defaultInboxMetrics: IInboxMetrics = { @@ -444,7 +573,9 @@ export class UsageInsights { Logger.debug('Initializing inbox stats'); const inboxStats: IUsageInsightsResponse['inboxStats'] = { byOrganization: {}, - overall: inboxData?.series ? this.calculateOverallInboxMetrics(inboxData.series) : defaultInboxMetrics, + overall: inboxData?.series + ? this.calculateOverallInboxMetrics(inboxData.series, inboxData.time_comparison.series) + : defaultInboxMetrics, }; Logger.debug('Processing organization data'); @@ -452,7 +583,13 @@ export class UsageInsights { if (orgId === '$overall') continue; Logger.debug(`Processing metrics for organization: ${orgId}`); - const metrics = this.createOrganizationMetrics(orgId, subscriberSeries, workflowSeries) as ICombinedMetrics; + const metrics = this.createOrganizationMetrics( + orgId, + subscriberSeries, + subscriberTimeComparison, + workflowSeries, + workflowTimeComparison + ) as ICombinedMetrics; metrics.subscriberNotifications.change = this.calculateChange( metrics.subscriberNotifications.current, @@ -471,7 +608,12 @@ export class UsageInsights { if (inboxData?.series) { Logger.debug(`Adding inbox metrics for organization: ${orgId}`); - const inboxMetrics = this.calculateInboxMetrics(inboxData.series, orgId); + const inboxMetrics = this.calculateInboxMetrics( + inboxData.series, + inboxData.time_comparison.series, + orgId, + seriesDateRange + ); metrics.inboxMetrics = inboxMetrics; inboxStats.byOrganization[orgId] = inboxMetrics; } else { @@ -480,7 +622,7 @@ export class UsageInsights { inboxStats.byOrganization[orgId] = defaultInboxMetrics; } - await this.sendOrganizationNotification(metrics, workflowStats); + await this.sendOrganizationNotification(metrics, workflowStats, seriesDateRange); } Logger.debug('UsageInsights execution completed successfully'); diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index f6759856f58..22cabbcc57f 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -51,8 +51,8 @@ function MetricCard({ {title} - - + + {isPositive ? '↑' : '↓'} {Math.abs(Math.floor(change))}% From 0dd5361e5ffd4405fb30bc6112580b6419be226a Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 14:29:09 +0200 Subject: [PATCH 14/31] fix: refactor --- apps/api/src/app/insights/insights.module.ts | 6 + .../services/metrics-calculator.service.ts | 234 ++++++++ .../app/insights/services/mixpanel.service.ts | 125 ++++ .../organization-notification.service.ts | 80 +++ .../insights/types/usage-insights.types.ts | 119 ++++ .../types/usage-insights.types.ts | 119 ++++ .../usage-insights/usage-insights.usecase.ts | 549 +----------------- 7 files changed, 703 insertions(+), 529 deletions(-) create mode 100644 apps/api/src/app/insights/services/metrics-calculator.service.ts create mode 100644 apps/api/src/app/insights/services/mixpanel.service.ts create mode 100644 apps/api/src/app/insights/services/organization-notification.service.ts create mode 100644 apps/api/src/app/insights/types/usage-insights.types.ts create mode 100644 apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts diff --git a/apps/api/src/app/insights/insights.module.ts b/apps/api/src/app/insights/insights.module.ts index 2367768fa25..9e842775087 100644 --- a/apps/api/src/app/insights/insights.module.ts +++ b/apps/api/src/app/insights/insights.module.ts @@ -9,6 +9,9 @@ import { EEOrganizationRepository } from '@novu/ee-auth'; import { USE_CASES } from './usecases'; import { SharedModule } from '../shared/shared.module'; import { InsightsInitializerService } from './services/insights-initializer.service'; +import { MixpanelService } from './services/mixpanel.service'; +import { MetricsCalculatorService } from './services/metrics-calculator.service'; +import { OrganizationNotificationService } from './services/organization-notification.service'; @Module({ imports: [SharedModule], @@ -20,6 +23,9 @@ import { InsightsInitializerService } from './services/insights-initializer.serv NotificationRepository, EEOrganizationRepository, CommunityOrganizationRepository, + MixpanelService, + MetricsCalculatorService, + OrganizationNotificationService, ], exports: [...USE_CASES], }) diff --git a/apps/api/src/app/insights/services/metrics-calculator.service.ts b/apps/api/src/app/insights/services/metrics-calculator.service.ts new file mode 100644 index 00000000000..d889266abf5 --- /dev/null +++ b/apps/api/src/app/insights/services/metrics-calculator.service.ts @@ -0,0 +1,234 @@ +import { Injectable, Logger } from '@nestjs/common'; +import { startOfDay, formatISO } from 'date-fns'; +import { + IDateRange, + ISeriesData, + IInboxResponse, + IInboxMetrics, + IOrganizationMetrics, + IMixpanelResponse, + IMetricStats, + MixpanelSeriesNameEnum, +} from '../types/usage-insights.types'; + +@Injectable() +export class MetricsCalculatorService { + private roundToStartOfDay(date: string): string { + return formatISO(startOfDay(new Date(date))); + } + + calculateChange(current: number, previous: number): number { + let change: number; + + if (previous === 0) { + change = current > 0 ? 100 : 0; + } else { + change = Number(((current - previous) / previous) * 100); + } + + Logger.debug(`Calculating change: current=${current}, previous=${previous}, change=${change}%`); + + return change; + } + + getSeriesDateRange(currentSeries: ISeriesData, previousSeries: ISeriesData): IDateRange { + const firstOrgId = Object.keys(currentSeries).find((key) => key !== '$overall'); + if (!firstOrgId) { + return { from_date: '', to_date: '' }; + } + + const currentDates = Object.keys(currentSeries[firstOrgId]?.$overall || {}); + const previousDates = Object.keys(previousSeries[firstOrgId]?.$overall || {}); + + if (!currentDates.length || !previousDates.length) { + return { from_date: '', to_date: '' }; + } + + return { + from_date: this.roundToStartOfDay(previousDates[0]), + to_date: this.roundToStartOfDay(currentDates[0]), + }; + } + + calculateInboxMetrics( + inboxSeries: IInboxResponse['series'], + inboxTimeComparison: IInboxResponse['time_comparison']['series'], + orgId: string, + dateRange: IDateRange + ): IInboxMetrics { + Logger.debug(`Calculating inbox metrics for organization: ${orgId}`); + const getMetricStats = ( + currentSeriesData: ISeriesData | undefined, + previousSeriesData: ISeriesData | undefined, + orgKey: string + ): IMetricStats => { + if (!currentSeriesData || !previousSeriesData) { + Logger.debug(`No series data available for ${orgKey}`); + + return { current: 0, previous: 0, change: 0 }; + } + + const currentData = currentSeriesData[orgKey]; + const previousData = previousSeriesData[orgKey]; + if (!currentData || !previousData) { + Logger.debug(`No data available for ${orgKey}`); + + return { current: 0, previous: 0, change: 0 }; + } + + const current = Number(Object.values(currentData)[0] || 0); + const previous = Number(Object.values(previousData)[0] || 0); + const change = this.calculateChange(current, previous); + + Logger.debug(`Metric stats for ${orgKey}: current=${current}, previous=${previous}, change=${change}%`); + + return { current, previous, change }; + }; + + return { + sessionInitialized: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED], + orgId + ), + updatePreferences: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES], + orgId + ), + markNotification: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION], + orgId + ), + updateAction: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION], + orgId + ), + }; + } + + calculateOverallInboxMetrics( + inboxSeries: IInboxResponse['series'], + inboxTimeComparison: IInboxResponse['time_comparison']['series'] + ): IInboxMetrics { + Logger.debug('Calculating overall inbox metrics'); + + const getMetricStats = ( + currentSeriesData: ISeriesData | undefined, + previousSeriesData: ISeriesData | undefined + ): IMetricStats => { + if (!currentSeriesData?.$overall || !previousSeriesData?.$overall) { + return { current: 0, previous: 0, change: 0 }; + } + + const current = Number(Object.values(currentSeriesData.$overall)[0] || 0); + const previous = Number(Object.values(previousSeriesData.$overall)[0] || 0); + const change = this.calculateChange(current, previous); + + return { current, previous, change }; + }; + + return { + sessionInitialized: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED] + ), + updatePreferences: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES] + ), + markNotification: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION] + ), + updateAction: getMetricStats( + inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION] + ), + }; + } + + createOrganizationMetrics( + orgId: string, + subscriberSeries: ISeriesData, + subscriberTimeComparison: ISeriesData, + workflowSeries: ISeriesData, + workflowTimeComparison: ISeriesData + ): IOrganizationMetrics { + Logger.debug(`Creating organization metrics for: ${orgId}`); + + const orgMetrics: IOrganizationMetrics = { + id: orgId, + name: '', + subscriberNotifications: { + current: Number(Object.values(subscriberSeries[orgId]?.$overall || {})[0] || 0), + previous: Number(Object.values(subscriberTimeComparison[orgId]?.$overall || {})[0] || 0), + change: 0, + }, + channelBreakdown: {}, + }; + + Logger.debug(`Subscriber notifications for ${orgId}:`, orgMetrics.subscriberNotifications); + + const orgWorkflowData = workflowSeries[orgId]; + const orgWorkflowPreviousData = workflowTimeComparison[orgId]; + if (orgWorkflowData && orgWorkflowPreviousData) { + Object.entries(orgWorkflowData).forEach(([channel, data]) => { + if (channel !== '$overall') { + const current = Number(Object.values(data.$overall || {})[0] || 0); + const previous = Number(Object.values(orgWorkflowPreviousData[channel]?.$overall || {})[0] || 0); + + orgMetrics.channelBreakdown[channel] = { + current, + previous, + change: 0, + }; + + Logger.debug(`Channel metrics for ${orgId}/${channel}: current=${current}, previous=${previous}`); + } + }); + } else { + Logger.debug(`No workflow data available for organization: ${orgId}`); + } + + return orgMetrics; + } + + calculateWorkflowStats( + subscriberSeries: ISeriesData, + subscriberTimeComparison: ISeriesData + ): IMixpanelResponse['workflowStats'] { + Logger.debug('Calculating workflow statistics'); + const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; + + const firstOrgId = Object.keys(subscriberSeries).find((key) => key !== '$overall'); + if (!firstOrgId) { + Logger.debug('No organization data found for workflow stats'); + + return workflowStats; + } + + const orgData = subscriberSeries[firstOrgId]?.undefined; + const orgPreviousData = subscriberTimeComparison[firstOrgId]?.undefined; + if (!orgData || !orgPreviousData) { + Logger.debug(`No workflow data found for organization: ${firstOrgId}`); + + return workflowStats; + } + + Object.entries(orgData) + .filter(([name]) => name !== '$overall') + .forEach(([name, data]) => { + const current = Number(Object.values(data)[0] || 0); + const previous = Number(Object.values(orgPreviousData[name] || {})[0] || 0); + const change = this.calculateChange(current, previous); + + workflowStats.workflows[name] = { current, previous, change }; + Logger.debug(`Workflow stats for ${name}: current=${current}, previous=${previous}, change=${change}%`); + }); + + return workflowStats; + } +} diff --git a/apps/api/src/app/insights/services/mixpanel.service.ts b/apps/api/src/app/insights/services/mixpanel.service.ts new file mode 100644 index 00000000000..1cc1ac14f04 --- /dev/null +++ b/apps/api/src/app/insights/services/mixpanel.service.ts @@ -0,0 +1,125 @@ +import { Injectable, Logger } from '@nestjs/common'; +import axios from 'axios'; +import { promises as fs } from 'fs'; +import { join } from 'path'; +import { IMixpanelResponse, IInboxResponse } from '../usecases/usage-insights/types/usage-insights.types'; + +const USE_INSIGHTS_CACHE = process.env.USE_INSIGHTS_CACHE === 'true'; + +@Injectable() +export class MixpanelService { + private readonly CACHE_FILE = join(process.cwd(), 'mixpanel-insights-cache.json'); + private readonly INBOX_CACHE_FILE = join(process.cwd(), 'mixpanel-inbox-cache.json'); + private readonly CACHE_TTL = 24 * 60 * 60 * 1000; // 24 hours in milliseconds + + private async readCacheFile(cacheFile: string) { + if (!USE_INSIGHTS_CACHE) { + Logger.debug('Cache usage is disabled by environment variable'); + + return null; + } + + Logger.debug(`Attempting to read cache file: ${cacheFile}`); + try { + const fileContent = await fs.readFile(cacheFile, 'utf-8'); + const cache = JSON.parse(fileContent); + + if (cache.timestamp && Date.now() - cache.timestamp < this.CACHE_TTL) { + Logger.debug(`Cache hit: Using data from ${cacheFile}, age: ${(Date.now() - cache.timestamp) / 1000}s`); + + return cache.data; + } + + Logger.debug(`Cache expired for ${cacheFile}, age: ${(Date.now() - cache.timestamp) / 1000}s`); + + return null; + } catch (error) { + Logger.debug(`Cache miss: No valid cache found for ${cacheFile}`); + + return null; + } + } + + private async writeCacheFile(data: any, cacheFile: string) { + if (!USE_INSIGHTS_CACHE) { + Logger.debug('Cache usage is disabled by environment variable, skipping write'); + + return; + } + + Logger.debug(`Attempting to write cache file: ${cacheFile}`); + try { + const cache = { + timestamp: Date.now(), + data, + }; + + await fs.writeFile(cacheFile, JSON.stringify(cache, null, 2)); + Logger.debug(`Cache write successful: ${cacheFile}`); + } catch (error) { + Logger.error(`Cache write failed for ${cacheFile}:`, error); + } + } + + async fetchMixpanelInsights(): Promise { + Logger.debug('Fetching Mixpanel insights'); + const cachedData = await this.readCacheFile(this.CACHE_FILE); + if (cachedData) { + return cachedData; + } + + try { + Logger.debug('Making Mixpanel API request for insights'); + const response = await axios.get('https://mixpanel.com/api/2.0/insights', { + params: { + project_id: '2667883', + bookmark_id: '68515975', + }, + headers: { + Authorization: `Basic ${process.env.MIXPANEL_BASIC_AUTH_TOKEN}`, + 'Content-Type': 'application/json', + }, + }); + + Logger.debug('Mixpanel insights fetch successful'); + await this.writeCacheFile(response.data, this.CACHE_FILE); + + return response.data; + } catch (error) { + Logger.error('Mixpanel insights fetch failed:', error); + + return null; + } + } + + async fetchInboxInsights(): Promise { + Logger.debug('Fetching Inbox insights'); + const cachedData = await this.readCacheFile(this.INBOX_CACHE_FILE); + if (cachedData) { + return cachedData; + } + + try { + Logger.debug('Making Mixpanel API request for inbox insights'); + const response = await axios.get('https://mixpanel.com/api/2.0/insights', { + params: { + project_id: '2667883', + bookmark_id: '68521376', + }, + headers: { + Authorization: `Basic ${process.env.MIXPANEL_BASIC_AUTH_TOKEN}`, + 'Content-Type': 'application/json', + }, + }); + + Logger.debug('Inbox insights fetch successful'); + await this.writeCacheFile(response.data, this.INBOX_CACHE_FILE); + + return response.data; + } catch (error) { + Logger.error('Inbox insights fetch failed:', error?.response?.data || error); + + return null; + } + } +} diff --git a/apps/api/src/app/insights/services/organization-notification.service.ts b/apps/api/src/app/insights/services/organization-notification.service.ts new file mode 100644 index 00000000000..869f7d88dd6 --- /dev/null +++ b/apps/api/src/app/insights/services/organization-notification.service.ts @@ -0,0 +1,80 @@ +import { Injectable, Logger } from '@nestjs/common'; +import { CommunityOrganizationRepository } from '@novu/dal'; +import { FeatureFlagsService } from '@novu/application-generic'; +import { FeatureFlagsKeysEnum } from '@novu/shared'; +import { usageInsightsWorkflow } from '@novu/notifications'; + +import { IDateRange, ICombinedMetrics, IMixpanelResponse } from '../usecases/usage-insights/types/usage-insights.types'; + +@Injectable() +export class OrganizationNotificationService { + constructor( + private organizationRepository: CommunityOrganizationRepository, + private featureFlagsService: FeatureFlagsService + ) {} + + async sendOrganizationNotification( + metrics: ICombinedMetrics, + workflowStats: IMixpanelResponse['workflowStats'], + dateRange: IDateRange + ) { + Logger.debug(`Processing metrics for organization: ${metrics.id}`); + try { + const organization = await this.organizationRepository.findById(metrics.id); + if (!organization) { + Logger.warn(`Organization not found in repository: ${metrics.id}`); + + return; + } + + const enrichedMetrics = { + ...metrics, + name: organization.name, + workflowStats: workflowStats.workflows, + }; + + Logger.debug(`Enriched metrics for ${organization.name}:`, enrichedMetrics); + + const isEnabled = await this.featureFlagsService.get(FeatureFlagsKeysEnum.IS_USAGE_INSIGHTS_ENABLED, false, { + environmentId: 'system', + organizationId: organization._id, + userId: 'system', + }); + + if (!isEnabled) { + Logger.log('Skipping notification delivery - usage insights disabled by feature flag', enrichedMetrics); + + return; + } + + await usageInsightsWorkflow.trigger({ + to: { + subscriberId: '675fe9bcab6a05bb6dcb7dab_11', + email: `george+testing-${organization._id}@novu.co`, + }, + payload: { + period: { + current: dateRange.to_date, + previous: dateRange.from_date, + }, + subscriberNotifications: metrics.subscriberNotifications, + channelBreakdown: { + email: metrics.channelBreakdown.email || { current: 0, previous: 0, change: 0 }, + sms: metrics.channelBreakdown.sms || { current: 0, previous: 0, change: 0 }, + push: metrics.channelBreakdown.push || { current: 0, previous: 0, change: 0 }, + }, + inboxMetrics: { + sessionInitialized: metrics.inboxMetrics?.sessionInitialized, + updatePreferences: metrics.inboxMetrics?.updatePreferences, + markNotification: metrics.inboxMetrics?.markNotification, + updateAction: metrics.inboxMetrics?.updateAction, + }, + workflowStats: workflowStats.workflows, + }, + secretKey: process.env.NOVU_INTERNAL_SECRET_KEY, + }); + } catch (error) { + Logger.error(`Failed to process metrics for organization ${metrics.id}:`, error); + } + } +} diff --git a/apps/api/src/app/insights/types/usage-insights.types.ts b/apps/api/src/app/insights/types/usage-insights.types.ts new file mode 100644 index 00000000000..14bf258199f --- /dev/null +++ b/apps/api/src/app/insights/types/usage-insights.types.ts @@ -0,0 +1,119 @@ +export enum MixpanelSeriesNameEnum { + NOTIFICATION_SUBSCRIBER_EVENT = 'A. Notification Subscriber Event Trigger [Total Events]', + PROCESS_WORKFLOW_STEP = 'B. Process Workflow Step - [Triggers] [Total Events]', + INBOX_SESSION_INITIALIZED = 'A. Session Initialized - [Inbox] [Total Events]', + INBOX_UPDATE_PREFERENCES = 'B. Update Preferences - [Inbox] [Total Events]', + INBOX_MARK_NOTIFICATION = 'C. Mark Notification As - [Inbox] [Total Events]', + INBOX_UPDATE_ACTION = 'D. Update Notification Action - [Inbox] [Total Events]', +} + +export interface IDateRange { + from_date: string; + to_date: string; +} + +export interface IChannelMetrics { + current: number; + previous: number; + change: number; +} + +export interface IOrganizationMetrics { + readonly id: string; + readonly name: string; + subscriberNotifications: { + current: number; + previous: number; + change: number; + }; + channelBreakdown: { + [channel: string]: IChannelMetrics; + }; + inboxMetrics?: IInboxMetrics; +} + +export interface IMetricData { + [date: string]: number; +} + +export interface IChannelData { + [channel: string]: IMetricData; + $overall: IMetricData; +} + +export type ISeriesData = { + [organizationId: string]: IChannelData; +} & { + $overall: IMetricData; +}; + +export interface IMixpanelResponse { + series: { + [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; + [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; + }; + date_range: IDateRange; + time_comparison: { + date_range: IDateRange; + series: { + [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; + [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; + }; + }; + workflowStats: { + workflows: { + [name: string]: { + current: number; + previous: number; + change: number; + }; + }; + }; +} + +export interface IInboxResponse { + series: { + [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; + }; + date_range: IDateRange; + time_comparison: { + date_range: IDateRange; + series: { + [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; + }; + }; +} + +export interface IMetricStats { + current: number; + previous: number; + change: number; +} + +export interface IInboxMetrics { + sessionInitialized: IMetricStats; + updatePreferences: IMetricStats; + markNotification: IMetricStats; + updateAction: IMetricStats; +} + +export interface IUsageInsightsResponse { + series: IMixpanelResponse['series']; + workflowStats: IMixpanelResponse['workflowStats']; + inboxStats: { + byOrganization: { + [organizationId: string]: IInboxMetrics; + }; + overall: IInboxMetrics; + }; +} + +export interface ICombinedMetrics extends IOrganizationMetrics { + inboxMetrics?: IInboxMetrics; +} diff --git a/apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts b/apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts new file mode 100644 index 00000000000..14bf258199f --- /dev/null +++ b/apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts @@ -0,0 +1,119 @@ +export enum MixpanelSeriesNameEnum { + NOTIFICATION_SUBSCRIBER_EVENT = 'A. Notification Subscriber Event Trigger [Total Events]', + PROCESS_WORKFLOW_STEP = 'B. Process Workflow Step - [Triggers] [Total Events]', + INBOX_SESSION_INITIALIZED = 'A. Session Initialized - [Inbox] [Total Events]', + INBOX_UPDATE_PREFERENCES = 'B. Update Preferences - [Inbox] [Total Events]', + INBOX_MARK_NOTIFICATION = 'C. Mark Notification As - [Inbox] [Total Events]', + INBOX_UPDATE_ACTION = 'D. Update Notification Action - [Inbox] [Total Events]', +} + +export interface IDateRange { + from_date: string; + to_date: string; +} + +export interface IChannelMetrics { + current: number; + previous: number; + change: number; +} + +export interface IOrganizationMetrics { + readonly id: string; + readonly name: string; + subscriberNotifications: { + current: number; + previous: number; + change: number; + }; + channelBreakdown: { + [channel: string]: IChannelMetrics; + }; + inboxMetrics?: IInboxMetrics; +} + +export interface IMetricData { + [date: string]: number; +} + +export interface IChannelData { + [channel: string]: IMetricData; + $overall: IMetricData; +} + +export type ISeriesData = { + [organizationId: string]: IChannelData; +} & { + $overall: IMetricData; +}; + +export interface IMixpanelResponse { + series: { + [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; + [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; + }; + date_range: IDateRange; + time_comparison: { + date_range: IDateRange; + series: { + [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; + [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; + }; + }; + workflowStats: { + workflows: { + [name: string]: { + current: number; + previous: number; + change: number; + }; + }; + }; +} + +export interface IInboxResponse { + series: { + [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; + }; + date_range: IDateRange; + time_comparison: { + date_range: IDateRange; + series: { + [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; + [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; + }; + }; +} + +export interface IMetricStats { + current: number; + previous: number; + change: number; +} + +export interface IInboxMetrics { + sessionInitialized: IMetricStats; + updatePreferences: IMetricStats; + markNotification: IMetricStats; + updateAction: IMetricStats; +} + +export interface IUsageInsightsResponse { + series: IMixpanelResponse['series']; + workflowStats: IMixpanelResponse['workflowStats']; + inboxStats: { + byOrganization: { + [organizationId: string]: IInboxMetrics; + }; + overall: IInboxMetrics; + }; +} + +export interface ICombinedMetrics extends IOrganizationMetrics { + inboxMetrics?: IInboxMetrics; +} diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index e38011dae43..66e5543f7a0 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -1,539 +1,30 @@ import { Injectable, Logger } from '@nestjs/common'; -import { CommunityOrganizationRepository } from '@novu/dal'; -import { InstrumentUsecase, FeatureFlagsService } from '@novu/application-generic'; -import { FeatureFlagsKeysEnum } from '@novu/shared'; -import axios from 'axios'; -import { promises as fs } from 'fs'; -import { join } from 'path'; +import { InstrumentUsecase } from '@novu/application-generic'; -import { usageInsightsWorkflow } from '@novu/notifications'; +import { IUsageInsightsResponse, IInboxMetrics } from './types/usage-insights.types'; +import { MixpanelService } from '../../services/mixpanel.service'; +import { MetricsCalculatorService } from '../../services/metrics-calculator.service'; +import { OrganizationNotificationService } from '../../services/organization-notification.service'; import { UsageInsightsCommand } from './usage-insights.command'; -interface IDateRange { - from_date: string; - to_date: string; -} - -const USE_INSIGHTS_CACHE = process.env.USE_INSIGHTS_CACHE === 'true'; - -interface IChannelMetrics { - current: number; - previous: number; - change: number; -} - -interface IOrganizationMetrics { - readonly id: string; - readonly name: string; - subscriberNotifications: { - current: number; - previous: number; - change: number; - }; - channelBreakdown: { - [channel: string]: IChannelMetrics; - }; -} - -interface IMetricData { - [date: string]: number; -} - -interface IChannelData { - [channel: string]: IMetricData; - $overall: IMetricData; -} - -type ISeriesData = { - [organizationId: string]: IChannelData; -} & { - $overall: IMetricData; -}; - -interface IMixpanelResponse { - series: { - 'A. Notification Subscriber Event Trigger [Total Events]': ISeriesData; - 'B. Process Workflow Step - [Triggers] [Total Events]': ISeriesData; - }; - date_range: IDateRange; - time_comparison: { - date_range: IDateRange; - series: { - 'A. Notification Subscriber Event Trigger [Total Events]': ISeriesData; - 'B. Process Workflow Step - [Triggers] [Total Events]': ISeriesData; - }; - }; - workflowStats: { - workflows: { - [name: string]: { - current: number; - previous: number; - change: number; - }; - }; - }; -} - -interface IInboxResponse { - series: { - 'A. Session Initialized - [Inbox] [Total Events]': ISeriesData; - 'B. Update Preferences - [Inbox] [Total Events]': ISeriesData; - 'C. Mark Notification As - [Inbox] [Total Events]': ISeriesData; - 'D. Update Notification Action - [Inbox] [Total Events]': ISeriesData; - }; - date_range: IDateRange; - time_comparison: { - date_range: IDateRange; - series: { - 'A. Session Initialized - [Inbox] [Total Events]': ISeriesData; - 'B. Update Preferences - [Inbox] [Total Events]': ISeriesData; - 'C. Mark Notification As - [Inbox] [Total Events]': ISeriesData; - 'D. Update Notification Action - [Inbox] [Total Events]': ISeriesData; - }; - }; -} - -interface IMetricStats { - current: number; - previous: number; - change: number; -} - -interface IInboxMetrics { - sessionInitialized: IMetricStats; - updatePreferences: IMetricStats; - markNotification: IMetricStats; - updateAction: IMetricStats; -} - -interface IUsageInsightsResponse { - series: IMixpanelResponse['series']; - workflowStats: IMixpanelResponse['workflowStats']; - inboxStats: { - byOrganization: { - [organizationId: string]: IInboxMetrics; - }; - overall: IInboxMetrics; - }; -} - -interface ICombinedMetrics extends IOrganizationMetrics { - inboxMetrics?: IInboxMetrics; -} - @Injectable() export class UsageInsights { - private readonly CACHE_FILE = join(process.cwd(), 'mixpanel-insights-cache.json'); - private readonly INBOX_CACHE_FILE = join(process.cwd(), 'mixpanel-inbox-cache.json'); - private readonly CACHE_TTL = 24 * 60 * 60 * 1000; // 24 hours in milliseconds - constructor( - private organizationRepository: CommunityOrganizationRepository, - private featureFlagsService: FeatureFlagsService + private mixpanelService: MixpanelService, + private metricsCalculator: MetricsCalculatorService, + private organizationNotification: OrganizationNotificationService ) { Logger.debug('UsageInsights service initialized'); } - private roundToStartOfDay(date: string): string { - return `${new Date(date).toISOString().split('T')[0]}T00:00:00+02:00`; - } - - private getSeriesDateRange(currentSeries: ISeriesData, previousSeries: ISeriesData): IDateRange { - const firstOrgId = Object.keys(currentSeries).find((key) => key !== '$overall'); - if (!firstOrgId) { - return { from_date: '', to_date: '' }; - } - - const currentDates = Object.keys(currentSeries[firstOrgId]?.$overall || {}); - const previousDates = Object.keys(previousSeries[firstOrgId]?.$overall || {}); - - if (!currentDates.length || !previousDates.length) { - return { from_date: '', to_date: '' }; - } - - return { - from_date: this.roundToStartOfDay(previousDates[0]), - to_date: this.roundToStartOfDay(currentDates[0]), - }; - } - - private async readCacheFile(cacheFile: string) { - if (!USE_INSIGHTS_CACHE) { - Logger.debug('Cache usage is disabled by environment variable'); - - return null; - } - - Logger.debug(`Attempting to read cache file: ${cacheFile}`); - try { - const fileContent = await fs.readFile(cacheFile, 'utf-8'); - const cache = JSON.parse(fileContent); - - if (cache.timestamp && Date.now() - cache.timestamp < this.CACHE_TTL) { - Logger.debug(`Cache hit: Using data from ${cacheFile}, age: ${(Date.now() - cache.timestamp) / 1000}s`); - - return cache.data; - } - - Logger.debug(`Cache expired for ${cacheFile}, age: ${(Date.now() - cache.timestamp) / 1000}s`); - - return null; - } catch (error) { - Logger.debug(`Cache miss: No valid cache found for ${cacheFile}`); - - return null; - } - } - - private async writeCacheFile(data: any, cacheFile: string) { - if (!USE_INSIGHTS_CACHE) { - Logger.debug('Cache usage is disabled by environment variable, skipping write'); - - return; - } - - Logger.debug(`Attempting to write cache file: ${cacheFile}`); - try { - const cache = { - timestamp: Date.now(), - data, - }; - - await fs.writeFile(cacheFile, JSON.stringify(cache, null, 2)); - Logger.debug(`Cache write successful: ${cacheFile}`); - } catch (error) { - Logger.error(`Cache write failed for ${cacheFile}:`, error); - } - } - - private calculateChange(current: number, previous: number): number { - let change: number; - - if (previous === 0) { - change = current > 0 ? 100 : 0; - } else { - change = Number(((current - previous) / previous) * 100); - } - - Logger.debug(`Calculating change: current=${current}, previous=${previous}, change=${change}%`); - - return change; - } - - private async fetchMixpanelInsights(): Promise { - Logger.debug('Fetching Mixpanel insights'); - const cachedData = await this.readCacheFile(this.CACHE_FILE); - if (cachedData) { - return cachedData; - } - - try { - Logger.debug('Making Mixpanel API request for insights'); - const response = await axios.get('https://mixpanel.com/api/2.0/insights', { - params: { - project_id: '2667883', - bookmark_id: '68515975', - }, - headers: { - Authorization: `Basic ${process.env.MIXPANEL_BASIC_AUTH_TOKEN}`, - 'Content-Type': 'application/json', - }, - }); - - Logger.debug('Mixpanel insights fetch successful'); - await this.writeCacheFile(response.data, this.CACHE_FILE); - - return response.data; - } catch (error) { - Logger.error('Mixpanel insights fetch failed:', error); - - return null; - } - } - - private async fetchInboxInsights(): Promise { - Logger.debug('Fetching Inbox insights'); - const cachedData = await this.readCacheFile(this.INBOX_CACHE_FILE); - if (cachedData) { - return cachedData; - } - - try { - Logger.debug('Making Mixpanel API request for inbox insights'); - const response = await axios.get('https://mixpanel.com/api/2.0/insights', { - params: { - project_id: '2667883', - bookmark_id: '68521376', - }, - headers: { - Authorization: `Basic ${process.env.MIXPANEL_BASIC_AUTH_TOKEN}`, - 'Content-Type': 'application/json', - }, - }); - - Logger.debug('Inbox insights fetch successful'); - await this.writeCacheFile(response.data, this.INBOX_CACHE_FILE); - - return response.data; - } catch (error) { - Logger.error('Inbox insights fetch failed:', error?.response?.data || error); - - return null; - } - } - - private calculateInboxMetrics( - inboxSeries: IInboxResponse['series'], - inboxTimeComparison: IInboxResponse['time_comparison']['series'], - orgId: string, - dateRange: IDateRange - ): IInboxMetrics { - Logger.debug(`Calculating inbox metrics for organization: ${orgId}`); - const getMetricStats = ( - currentSeriesData: ISeriesData | undefined, - previousSeriesData: ISeriesData | undefined, - orgKey: string - ): IMetricStats => { - if (!currentSeriesData || !previousSeriesData) { - Logger.debug(`No series data available for ${orgKey}`); - - return { current: 0, previous: 0, change: 0 }; - } - - const currentData = currentSeriesData[orgKey]; - const previousData = previousSeriesData[orgKey]; - if (!currentData || !previousData) { - Logger.debug(`No data available for ${orgKey}`); - - return { current: 0, previous: 0, change: 0 }; - } - - const current = Number(Object.values(currentData)[0] || 0); - const previous = Number(Object.values(previousData)[0] || 0); - const change = this.calculateChange(current, previous); - - Logger.debug(`Metric stats for ${orgKey}: current=${current}, previous=${previous}, change=${change}%`); - - return { current, previous, change }; - }; - - return { - sessionInitialized: getMetricStats( - inboxSeries['A. Session Initialized - [Inbox] [Total Events]'], - inboxTimeComparison['A. Session Initialized - [Inbox] [Total Events]'], - orgId - ), - updatePreferences: getMetricStats( - inboxSeries['B. Update Preferences - [Inbox] [Total Events]'], - inboxTimeComparison['B. Update Preferences - [Inbox] [Total Events]'], - orgId - ), - markNotification: getMetricStats( - inboxSeries['C. Mark Notification As - [Inbox] [Total Events]'], - inboxTimeComparison['C. Mark Notification As - [Inbox] [Total Events]'], - orgId - ), - updateAction: getMetricStats( - inboxSeries['D. Update Notification Action - [Inbox] [Total Events]'], - inboxTimeComparison['D. Update Notification Action - [Inbox] [Total Events]'], - orgId - ), - }; - } - - private calculateOverallInboxMetrics( - inboxSeries: IInboxResponse['series'], - inboxTimeComparison: IInboxResponse['time_comparison']['series'] - ): IInboxMetrics { - Logger.debug('Calculating overall inbox metrics'); - - const getMetricStats = ( - currentSeriesData: ISeriesData | undefined, - previousSeriesData: ISeriesData | undefined - ): IMetricStats => { - if (!currentSeriesData?.$overall || !previousSeriesData?.$overall) { - return { current: 0, previous: 0, change: 0 }; - } - - const current = Number(Object.values(currentSeriesData.$overall)[0] || 0); - const previous = Number(Object.values(previousSeriesData.$overall)[0] || 0); - const change = this.calculateChange(current, previous); - - return { current, previous, change }; - }; - - return { - sessionInitialized: getMetricStats( - inboxSeries['A. Session Initialized - [Inbox] [Total Events]'], - inboxTimeComparison['A. Session Initialized - [Inbox] [Total Events]'] - ), - updatePreferences: getMetricStats( - inboxSeries['B. Update Preferences - [Inbox] [Total Events]'], - inboxTimeComparison['B. Update Preferences - [Inbox] [Total Events]'] - ), - markNotification: getMetricStats( - inboxSeries['C. Mark Notification As - [Inbox] [Total Events]'], - inboxTimeComparison['C. Mark Notification As - [Inbox] [Total Events]'] - ), - updateAction: getMetricStats( - inboxSeries['D. Update Notification Action - [Inbox] [Total Events]'], - inboxTimeComparison['D. Update Notification Action - [Inbox] [Total Events]'] - ), - }; - } - - private createOrganizationMetrics( - orgId: string, - subscriberSeries: ISeriesData, - subscriberTimeComparison: ISeriesData, - workflowSeries: ISeriesData, - workflowTimeComparison: ISeriesData - ): IOrganizationMetrics { - Logger.debug(`Creating organization metrics for: ${orgId}`); - - const orgMetrics: IOrganizationMetrics = { - id: orgId, - name: '', - subscriberNotifications: { - current: Number(Object.values(subscriberSeries[orgId]?.$overall || {})[0] || 0), - previous: Number(Object.values(subscriberTimeComparison[orgId]?.$overall || {})[0] || 0), - change: 0, - }, - channelBreakdown: {}, - }; - - Logger.debug(`Subscriber notifications for ${orgId}:`, orgMetrics.subscriberNotifications); - - const orgWorkflowData = workflowSeries[orgId]; - const orgWorkflowPreviousData = workflowTimeComparison[orgId]; - if (orgWorkflowData && orgWorkflowPreviousData) { - Object.entries(orgWorkflowData).forEach(([channel, data]) => { - if (channel !== '$overall') { - const current = Number(Object.values(data.$overall || {})[0] || 0); - const previous = Number(Object.values(orgWorkflowPreviousData[channel]?.$overall || {})[0] || 0); - - orgMetrics.channelBreakdown[channel] = { - current, - previous, - change: 0, - }; - - Logger.debug(`Channel metrics for ${orgId}/${channel}: current=${current}, previous=${previous}`); - } - }); - } else { - Logger.debug(`No workflow data available for organization: ${orgId}`); - } - - return orgMetrics; - } - - private calculateWorkflowStats( - subscriberSeries: ISeriesData, - subscriberTimeComparison: ISeriesData - ): IMixpanelResponse['workflowStats'] { - Logger.debug('Calculating workflow statistics'); - const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; - - const firstOrgId = Object.keys(subscriberSeries).find((key) => key !== '$overall'); - if (!firstOrgId) { - Logger.debug('No organization data found for workflow stats'); - - return workflowStats; - } - - const orgData = subscriberSeries[firstOrgId]?.undefined; - const orgPreviousData = subscriberTimeComparison[firstOrgId]?.undefined; - if (!orgData || !orgPreviousData) { - Logger.debug(`No workflow data found for organization: ${firstOrgId}`); - - return workflowStats; - } - - Object.entries(orgData) - .filter(([name]) => name !== '$overall') - .forEach(([name, data]) => { - const current = Number(Object.values(data)[0] || 0); - const previous = Number(Object.values(orgPreviousData[name] || {})[0] || 0); - const change = this.calculateChange(current, previous); - - workflowStats.workflows[name] = { current, previous, change }; - Logger.debug(`Workflow stats for ${name}: current=${current}, previous=${previous}, change=${change}%`); - }); - - return workflowStats; - } - - private async sendOrganizationNotification( - metrics: ICombinedMetrics, - workflowStats: IMixpanelResponse['workflowStats'], - dateRange: IDateRange - ) { - Logger.debug(`Processing metrics for organization: ${metrics.id}`); - try { - const organization = await this.organizationRepository.findById(metrics.id); - if (!organization) { - Logger.warn(`Organization not found in repository: ${metrics.id}`); - - return; - } - - const enrichedMetrics = { - ...metrics, - name: organization.name, - workflowStats: workflowStats.workflows, - }; - - Logger.debug(`Enriched metrics for ${organization.name}:`, enrichedMetrics); - - const isEnabled = await this.featureFlagsService.get(FeatureFlagsKeysEnum.IS_USAGE_INSIGHTS_ENABLED, false, { - environmentId: 'system', - organizationId: organization._id, - userId: 'system', - }); - - if (!isEnabled) { - Logger.log('Skipping notification delivery - usage insights disabled by feature flag', enrichedMetrics); - - return; - } - - await usageInsightsWorkflow.trigger({ - to: { - subscriberId: '675fe9bcab6a05bb6dcb7dab_11', - email: `dima+testing-${organization._id}@novu.co`, - }, - payload: { - period: { - current: dateRange.to_date, - previous: dateRange.from_date, - }, - subscriberNotifications: metrics.subscriberNotifications, - channelBreakdown: { - email: metrics.channelBreakdown.email || { current: 0, previous: 0, change: 0 }, - sms: metrics.channelBreakdown.sms || { current: 0, previous: 0, change: 0 }, - push: metrics.channelBreakdown.push || { current: 0, previous: 0, change: 0 }, - }, - inboxMetrics: { - sessionInitialized: metrics.inboxMetrics?.sessionInitialized, - updatePreferences: metrics.inboxMetrics?.updatePreferences, - markNotification: metrics.inboxMetrics?.markNotification, - updateAction: metrics.inboxMetrics?.updateAction, - }, - workflowStats: workflowStats.workflows, - }, - secretKey: process.env.NOVU_INTERNAL_SECRET_KEY, - }); - } catch (error) { - Logger.error(`Failed to process metrics for organization ${metrics.id}:`, error); - } - } - @InstrumentUsecase() async execute(command: UsageInsightsCommand): Promise { Logger.debug('Executing UsageInsights usecase', { command }); - const [mixpanelData, inboxData] = await Promise.all([this.fetchMixpanelInsights(), this.fetchInboxInsights()]); + const [mixpanelData, inboxData] = await Promise.all([ + this.mixpanelService.fetchMixpanelInsights(), + this.mixpanelService.fetchInboxInsights(), + ]); if (!mixpanelData?.series) { Logger.error('Mixpanel data unavailable or invalid'); @@ -560,7 +51,7 @@ export class UsageInsights { to_date: mixpanelData.date_range.to_date, }; - const workflowStats = this.calculateWorkflowStats(subscriberSeries, subscriberTimeComparison); + const workflowStats = this.metricsCalculator.calculateWorkflowStats(subscriberSeries, subscriberTimeComparison); mixpanelData.workflowStats = workflowStats; const defaultInboxMetrics: IInboxMetrics = { @@ -574,7 +65,7 @@ export class UsageInsights { const inboxStats: IUsageInsightsResponse['inboxStats'] = { byOrganization: {}, overall: inboxData?.series - ? this.calculateOverallInboxMetrics(inboxData.series, inboxData.time_comparison.series) + ? this.metricsCalculator.calculateOverallInboxMetrics(inboxData.series, inboxData.time_comparison.series) : defaultInboxMetrics, }; @@ -583,15 +74,15 @@ export class UsageInsights { if (orgId === '$overall') continue; Logger.debug(`Processing metrics for organization: ${orgId}`); - const metrics = this.createOrganizationMetrics( + const metrics = this.metricsCalculator.createOrganizationMetrics( orgId, subscriberSeries, subscriberTimeComparison, workflowSeries, workflowTimeComparison - ) as ICombinedMetrics; + ); - metrics.subscriberNotifications.change = this.calculateChange( + metrics.subscriberNotifications.change = this.metricsCalculator.calculateChange( metrics.subscriberNotifications.current, metrics.subscriberNotifications.previous ); @@ -601,14 +92,14 @@ export class UsageInsights { channel, { ...channelData, - change: this.calculateChange(channelData.current, channelData.previous), + change: this.metricsCalculator.calculateChange(channelData.current, channelData.previous), }, ]) ); if (inboxData?.series) { Logger.debug(`Adding inbox metrics for organization: ${orgId}`); - const inboxMetrics = this.calculateInboxMetrics( + const inboxMetrics = this.metricsCalculator.calculateInboxMetrics( inboxData.series, inboxData.time_comparison.series, orgId, @@ -622,7 +113,7 @@ export class UsageInsights { inboxStats.byOrganization[orgId] = defaultInboxMetrics; } - await this.sendOrganizationNotification(metrics, workflowStats, seriesDateRange); + await this.organizationNotification.sendOrganizationNotification(metrics, workflowStats, seriesDateRange); } Logger.debug('UsageInsights execution completed successfully'); From 9570eff4b554421bdad83c02a9c7ebcae05f1b7b Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 14:48:48 +0200 Subject: [PATCH 15/31] fix: review --- .../organization-notification.service.ts | 3 +- .../types/usage-insights.types.ts | 119 ------------------ .../src/workflows/usage-insights/email.tsx | 47 +++++-- 3 files changed, 39 insertions(+), 130 deletions(-) delete mode 100644 apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts diff --git a/apps/api/src/app/insights/services/organization-notification.service.ts b/apps/api/src/app/insights/services/organization-notification.service.ts index 869f7d88dd6..1d2854cd88d 100644 --- a/apps/api/src/app/insights/services/organization-notification.service.ts +++ b/apps/api/src/app/insights/services/organization-notification.service.ts @@ -21,6 +21,7 @@ export class OrganizationNotificationService { Logger.debug(`Processing metrics for organization: ${metrics.id}`); try { const organization = await this.organizationRepository.findById(metrics.id); + if (!organization) { Logger.warn(`Organization not found in repository: ${metrics.id}`); @@ -50,7 +51,7 @@ export class OrganizationNotificationService { await usageInsightsWorkflow.trigger({ to: { subscriberId: '675fe9bcab6a05bb6dcb7dab_11', - email: `george+testing-${organization._id}@novu.co`, + email: `dima+testing-${organization._id}@novu.co`, }, payload: { period: { diff --git a/apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts b/apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts deleted file mode 100644 index 14bf258199f..00000000000 --- a/apps/api/src/app/insights/usecases/usage-insights/types/usage-insights.types.ts +++ /dev/null @@ -1,119 +0,0 @@ -export enum MixpanelSeriesNameEnum { - NOTIFICATION_SUBSCRIBER_EVENT = 'A. Notification Subscriber Event Trigger [Total Events]', - PROCESS_WORKFLOW_STEP = 'B. Process Workflow Step - [Triggers] [Total Events]', - INBOX_SESSION_INITIALIZED = 'A. Session Initialized - [Inbox] [Total Events]', - INBOX_UPDATE_PREFERENCES = 'B. Update Preferences - [Inbox] [Total Events]', - INBOX_MARK_NOTIFICATION = 'C. Mark Notification As - [Inbox] [Total Events]', - INBOX_UPDATE_ACTION = 'D. Update Notification Action - [Inbox] [Total Events]', -} - -export interface IDateRange { - from_date: string; - to_date: string; -} - -export interface IChannelMetrics { - current: number; - previous: number; - change: number; -} - -export interface IOrganizationMetrics { - readonly id: string; - readonly name: string; - subscriberNotifications: { - current: number; - previous: number; - change: number; - }; - channelBreakdown: { - [channel: string]: IChannelMetrics; - }; - inboxMetrics?: IInboxMetrics; -} - -export interface IMetricData { - [date: string]: number; -} - -export interface IChannelData { - [channel: string]: IMetricData; - $overall: IMetricData; -} - -export type ISeriesData = { - [organizationId: string]: IChannelData; -} & { - $overall: IMetricData; -}; - -export interface IMixpanelResponse { - series: { - [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; - [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; - }; - date_range: IDateRange; - time_comparison: { - date_range: IDateRange; - series: { - [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; - [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; - }; - }; - workflowStats: { - workflows: { - [name: string]: { - current: number; - previous: number; - change: number; - }; - }; - }; -} - -export interface IInboxResponse { - series: { - [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; - }; - date_range: IDateRange; - time_comparison: { - date_range: IDateRange; - series: { - [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; - }; - }; -} - -export interface IMetricStats { - current: number; - previous: number; - change: number; -} - -export interface IInboxMetrics { - sessionInitialized: IMetricStats; - updatePreferences: IMetricStats; - markNotification: IMetricStats; - updateAction: IMetricStats; -} - -export interface IUsageInsightsResponse { - series: IMixpanelResponse['series']; - workflowStats: IMixpanelResponse['workflowStats']; - inboxStats: { - byOrganization: { - [organizationId: string]: IInboxMetrics; - }; - overall: IInboxMetrics; - }; -} - -export interface ICombinedMetrics extends IOrganizationMetrics { - inboxMetrics?: IInboxMetrics; -} diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index 22cabbcc57f..231c6b3e01b 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -37,6 +37,7 @@ function MetricCard({ current: number; previous: number; change: number; + padding?: string; }) { const isPositive = change > 0; const changeColor = isPositive ? 'text-emerald-600' : 'text-rose-600'; @@ -44,7 +45,7 @@ function MetricCard({ const formatNumber = (num: number) => Math.floor(num).toLocaleString('en-US', { maximumFractionDigits: 0 }); return ( -
+
@@ -80,11 +81,30 @@ function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBrea
- {Object.entries(channels).map(([channel, metrics]) => ( - - - - ))} + + + + + + + + +
); @@ -95,7 +115,7 @@ function InboxMetrics({ metrics }: { metrics: IUsageEmailData['inboxMetrics'] })
- + - + { const isPositive = metrics.change > 0; const changeColor = isPositive ? 'text-emerald-600' : 'text-rose-600'; + const isLast = index === topWorkflows.length - 1; return ( {name} @@ -164,7 +187,11 @@ function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStat interface IMarketingConfig { title: string; - links: IMarketingLink[]; + links: { + text: string; + href: string; + emoji: string; + }[]; cta: { text: string; buttonText: string; From 2be2bf10927f9458a116715c1f19d0bc50bc1f31 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 14:51:59 +0200 Subject: [PATCH 16/31] fix: items --- .../notifications/src/workflows/usage-insights/email.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index 231c6b3e01b..34259a4fb7a 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -43,6 +43,7 @@ function MetricCard({ const changeColor = isPositive ? 'text-emerald-600' : 'text-rose-600'; const formatNumber = (num: number) => Math.floor(num).toLocaleString('en-US', { maximumFractionDigits: 0 }); + const formattedChange = Math.abs(Math.floor(change)); return (
@@ -53,9 +54,11 @@ function MetricCard({ - - {isPositive ? '↑' : '↓'} {Math.abs(Math.floor(change))}% - + {formattedChange !== 0 ? ( + + {isPositive ? '↑' : '↓'} {formattedChange}% + + ) : null} From 5464b960e52cf2be06c4c7e9439458c75681c336 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 14:59:20 +0200 Subject: [PATCH 17/31] fix: items --- apps/api/mixpanel-inbox-cache.json | 22 ++--- apps/api/mixpanel-insights-cache.json | 92 +++++++++---------- .../organization-notification.service.ts | 2 +- 3 files changed, 58 insertions(+), 58 deletions(-) diff --git a/apps/api/mixpanel-inbox-cache.json b/apps/api/mixpanel-inbox-cache.json index eaa3286df3d..594110ecbf7 100644 --- a/apps/api/mixpanel-inbox-cache.json +++ b/apps/api/mixpanel-inbox-cache.json @@ -1,11 +1,11 @@ { - "timestamp": 1734867415057, + "timestamp": 1734872166312, "data": { "headers": ["$event", "$distinct_id"], - "computed_at": "2024-12-22T11:36:54.577575+00:00", + "computed_at": "2024-12-22T12:56:06.095573+00:00", "date_range": { "from_date": "2024-12-01T00:00:00+02:00", - "to_date": "2024-12-22T13:36:52.876837+02:00" + "to_date": "2024-12-22T14:56:04.402362+02:00" }, "meta": { "min_sampling_factor": 1, @@ -42,17 +42,17 @@ "series": { "A. Session Initialized - [Inbox] [Total Events]": { "$overall": { - "2024-12-01T00:00:00+02:00": 2916546 + "2024-12-01T00:00:00+02:00": 2920457 }, - "675fe9bcab6a05bb6dcb7dab": { - "2024-12-01T00:00:00+02:00": 2916546 + "66ce471dcf609b1343289560": { + "2024-12-01T00:00:00+02:00": 2920457 } }, "B. Update Preferences - [Inbox] [Total Events]": { "$overall": { "2024-12-01T00:00:00+02:00": 2 }, - "675fe9bcab6a05bb6dcb7dab": { + "66ce471dcf609b1343289560": { "2024-12-01T00:00:00+02:00": 2 } }, @@ -60,7 +60,7 @@ "$overall": { "2024-12-01T00:00:00+02:00": 598 }, - "675fe9bcab6a05bb6dcb7dab": { + "66ce471dcf609b1343289560": { "2024-12-01T00:00:00+02:00": 598 } } @@ -75,7 +75,7 @@ "$overall": { "2024-11-01T00:00:00+02:00": 3713926 }, - "675fe9bcab6a05bb6dcb7dab": { + "66ce471dcf609b1343289560": { "2024-11-01T00:00:00+02:00": 3713926 } }, @@ -83,7 +83,7 @@ "$overall": { "2024-11-01T00:00:00+02:00": 8 }, - "675fe9bcab6a05bb6dcb7dab": { + "66ce471dcf609b1343289560": { "2024-11-01T00:00:00+02:00": 8 } }, @@ -91,7 +91,7 @@ "$overall": { "2024-11-01T00:00:00+02:00": 721 }, - "675fe9bcab6a05bb6dcb7dab": { + "66ce471dcf609b1343289560": { "2024-11-01T00:00:00+02:00": 721 } } diff --git a/apps/api/mixpanel-insights-cache.json b/apps/api/mixpanel-insights-cache.json index 4d9e3cfe6eb..07ae1789c3c 100644 --- a/apps/api/mixpanel-insights-cache.json +++ b/apps/api/mixpanel-insights-cache.json @@ -1,11 +1,11 @@ { - "timestamp": 1734867415171, + "timestamp": 1734872166408, "data": { "headers": ["$event", "$distinct_id", "jobType", "name"], - "computed_at": "2024-12-22T11:36:54.669500+00:00", + "computed_at": "2024-12-22T12:56:06.102557+00:00", "date_range": { "from_date": "2024-12-01T00:00:00+02:00", - "to_date": "2024-12-22T13:36:52.853691+02:00" + "to_date": "2024-12-22T14:56:04.529509+02:00" }, "meta": { "min_sampling_factor": 1, @@ -56,7 +56,7 @@ "$overall": { "2024-12-01T00:00:00+02:00": 673 }, - "675fe9bcab6a05bb6dcb7dab": { + "63215ba3a4ca4df9242c24c4": { "$overall": { "2024-12-01T00:00:00+02:00": 673 }, @@ -64,35 +64,35 @@ "$overall": { "2024-12-01T00:00:00+02:00": 673 }, - "Client UserAccount verification": { - "2024-12-01T00:00:00+02:00": 14 + "Reset Password": { + "2024-12-01T00:00:00+02:00": 13 }, - "Schedule Project": { - "2024-12-01T00:00:00+02:00": 392 + "User Welcome Email": { + "2024-12-01T00:00:00+02:00": 20 }, - "Account Verification": { - "2024-12-01T00:00:00+02:00": 27 + "Client UserAccount verification": { + "2024-12-01T00:00:00+02:00": 14 }, "DOWNLOAD_FILES": { "2024-12-01T00:00:00+02:00": 1 }, - "User Welcome Email": { - "2024-12-01T00:00:00+02:00": 20 - }, - "FILE_UPLOAD": { - "2024-12-01T00:00:00+02:00": 187 - }, "WEBFORM_CREATED": { "2024-12-01T00:00:00+02:00": 3 }, "incorrect-password": { "2024-12-01T00:00:00+02:00": 15 }, + "FILE_UPLOAD": { + "2024-12-01T00:00:00+02:00": 187 + }, + "Account Verification": { + "2024-12-01T00:00:00+02:00": 27 + }, "WEBFORM_SUBMITTED": { "2024-12-01T00:00:00+02:00": 1 }, - "Reset Password": { - "2024-12-01T00:00:00+02:00": 13 + "Schedule Project": { + "2024-12-01T00:00:00+02:00": 392 } } } @@ -101,27 +101,27 @@ "$overall": { "2024-12-01T00:00:00+02:00": 1536 }, - "675fe9bcab6a05bb6dcb7dab": { + "63215ba3a4ca4df9242c24c4": { "$overall": { "2024-12-01T00:00:00+02:00": 1536 }, - "email": { + "push": { "$overall": { - "2024-12-01T00:00:00+02:00": 673 + "2024-12-01T00:00:00+02:00": 190 }, "undefined": { - "2024-12-01T00:00:00+02:00": 673 + "2024-12-01T00:00:00+02:00": 190 } }, - "push": { + "trigger": { "$overall": { - "2024-12-01T00:00:00+02:00": 190 + "2024-12-01T00:00:00+02:00": 673 }, "undefined": { - "2024-12-01T00:00:00+02:00": 190 + "2024-12-01T00:00:00+02:00": 673 } }, - "trigger": { + "email": { "$overall": { "2024-12-01T00:00:00+02:00": 673 }, @@ -142,7 +142,7 @@ "$overall": { "2024-11-01T00:00:00+02:00": 1032 }, - "675fe9bcab6a05bb6dcb7dab": { + "63215ba3a4ca4df9242c24c4": { "$overall": { "2024-11-01T00:00:00+02:00": 1032 }, @@ -150,32 +150,32 @@ "$overall": { "2024-11-01T00:00:00+02:00": 1032 }, - "REMIND_INVOICE": { - "2024-11-01T00:00:00+02:00": 1 - }, - "FILE_UPLOAD": { - "2024-11-01T00:00:00+02:00": 106 - }, "incorrect-password": { "2024-11-01T00:00:00+02:00": 16 }, "Reset Password": { "2024-11-01T00:00:00+02:00": 5 }, + "Client UserAccount verification": { + "2024-11-01T00:00:00+02:00": 13 + }, + "TAG_ADDED": { + "2024-11-01T00:00:00+02:00": 32 + }, "Account Verification": { "2024-11-01T00:00:00+02:00": 323 }, "User Welcome Email": { "2024-11-01T00:00:00+02:00": 22 }, - "Client UserAccount verification": { - "2024-11-01T00:00:00+02:00": 13 - }, "Schedule Project": { "2024-11-01T00:00:00+02:00": 514 }, - "TAG_ADDED": { - "2024-11-01T00:00:00+02:00": 32 + "FILE_UPLOAD": { + "2024-11-01T00:00:00+02:00": 106 + }, + "REMIND_INVOICE": { + "2024-11-01T00:00:00+02:00": 1 } } } @@ -184,11 +184,11 @@ "$overall": { "2024-11-01T00:00:00+02:00": 2170 }, - "675fe9bcab6a05bb6dcb7dab": { + "63215ba3a4ca4df9242c24c4": { "$overall": { "2024-11-01T00:00:00+02:00": 2170 }, - "trigger": { + "email": { "$overall": { "2024-11-01T00:00:00+02:00": 1032 }, @@ -196,20 +196,20 @@ "2024-11-01T00:00:00+02:00": 1032 } }, - "email": { + "push": { "$overall": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 106 }, "undefined": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 106 } }, - "push": { + "trigger": { "$overall": { - "2024-11-01T00:00:00+02:00": 106 + "2024-11-01T00:00:00+02:00": 1032 }, "undefined": { - "2024-11-01T00:00:00+02:00": 106 + "2024-11-01T00:00:00+02:00": 1032 } } } diff --git a/apps/api/src/app/insights/services/organization-notification.service.ts b/apps/api/src/app/insights/services/organization-notification.service.ts index 1d2854cd88d..6081671889c 100644 --- a/apps/api/src/app/insights/services/organization-notification.service.ts +++ b/apps/api/src/app/insights/services/organization-notification.service.ts @@ -20,7 +20,7 @@ export class OrganizationNotificationService { ) { Logger.debug(`Processing metrics for organization: ${metrics.id}`); try { - const organization = await this.organizationRepository.findById(metrics.id); + const organization = await this.organizationRepository.findById('675fe9bcab6a05bb6dcb7dab'); if (!organization) { Logger.warn(`Organization not found in repository: ${metrics.id}`); From 29457498aceff4f1e550b915185c0b0a62d85340 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 17:04:33 +0200 Subject: [PATCH 18/31] fix: bugs --- apps/api/mixpanel-inbox-cache.json | 1116 +- apps/api/mixpanel-insights-cache.json | 48868 +++++++++++++++- .../services/metrics-calculator.service.ts | 78 +- .../app/insights/services/mixpanel.service.ts | 1 + .../organization-notification.service.ts | 3 + .../usage-insights/usage-insights.usecase.ts | 56 +- .../src/workflows/usage-insights/email.tsx | 19 +- .../usage-insights/usage-insights.workflow.ts | 27 +- 8 files changed, 49970 insertions(+), 198 deletions(-) diff --git a/apps/api/mixpanel-inbox-cache.json b/apps/api/mixpanel-inbox-cache.json index 594110ecbf7..7430e14403d 100644 --- a/apps/api/mixpanel-inbox-cache.json +++ b/apps/api/mixpanel-inbox-cache.json @@ -1,11 +1,11 @@ { - "timestamp": 1734872166312, + "timestamp": 1734873088570, "data": { "headers": ["$event", "$distinct_id"], - "computed_at": "2024-12-22T12:56:06.095573+00:00", + "computed_at": "2024-12-22T13:11:28.263347+00:00", "date_range": { "from_date": "2024-12-01T00:00:00+02:00", - "to_date": "2024-12-22T14:56:04.402362+02:00" + "to_date": "2024-12-22T15:11:26.246838+02:00" }, "meta": { "min_sampling_factor": 1, @@ -42,26 +42,601 @@ "series": { "A. Session Initialized - [Inbox] [Total Events]": { "$overall": { - "2024-12-01T00:00:00+02:00": 2920457 + "2024-12-01T00:00:00+02:00": 4153206 + }, + "62cd681212f9e10011655a35": { + "2024-12-01T00:00:00+02:00": 7 + }, + "6758633bd0bc5c5859e4d0b0": { + "2024-12-01T00:00:00+02:00": 1326 + }, + "6408f2f0dd5f589fe2ca61b4": { + "2024-12-01T00:00:00+02:00": 1884 + }, + "66b3c633abc563f5ee1c4ffa": { + "2024-12-01T00:00:00+02:00": 11212 + }, + "662a58724b6cd9280bf5139d": { + "2024-12-01T00:00:00+02:00": 192 + }, + "67463a802c32fe389fa61341": { + "2024-12-01T00:00:00+02:00": 3401 + }, + "63fbb0118920eed9471fa1b2": { + "2024-12-01T00:00:00+02:00": 60 + }, + "6671df91f4a238f107fe9f56": { + "2024-12-01T00:00:00+02:00": 859 + }, + "66f19c98cf609b134304a0f6": { + "2024-12-01T00:00:00+02:00": 32475 + }, + "6644fabbfbadc9d325d90248": { + "2024-12-01T00:00:00+02:00": 49364 + }, + "67475e932c32fe389fa51052": { + "2024-12-01T00:00:00+02:00": 45414 + }, + "6759b8ec6b43e4625123293e": { + "2024-12-01T00:00:00+02:00": 1966 + }, + "66362cc66c5885a3257940bb": { + "2024-12-01T00:00:00+02:00": 234 + }, + "66a0f9f7f502999ed8453644": { + "2024-12-01T00:00:00+02:00": 4954 + }, + "6742dd7d1bb91e63d914a510": { + "2024-12-01T00:00:00+02:00": 1365 + }, + "674586592c32fe389f95879e": { + "2024-12-01T00:00:00+02:00": 1760 }, "66ce471dcf609b1343289560": { - "2024-12-01T00:00:00+02:00": 2920457 + "2024-12-01T00:00:00+02:00": 2921510 + }, + "66b35706aa4218d126bbbf49": { + "2024-12-01T00:00:00+02:00": 29948 + }, + "650002893cc619d36e43a166": { + "2024-12-01T00:00:00+02:00": 17334 + }, + "662f0d0e843a6a8496596159": { + "2024-12-01T00:00:00+02:00": 15824 + }, + "671dcbd5fb21db27364e8179": { + "2024-12-01T00:00:00+02:00": 26281 + }, + "63320239ee1316a5c87e38d1": { + "2024-12-01T00:00:00+02:00": 3836 + }, + "658e6a3b0ad62708782a93bf": { + "2024-12-01T00:00:00+02:00": 116 + }, + "64e46fc009b229a7c5c1735c": { + "2024-12-01T00:00:00+02:00": 296758 + }, + "67235ab730d1c099604bf849": { + "2024-12-01T00:00:00+02:00": 8187 + }, + "659d3b40f58e905eca1793b0": { + "2024-12-01T00:00:00+02:00": 1063 + }, + "665f34e28e2550325700cda9": { + "2024-12-01T00:00:00+02:00": 1667 + }, + "6643b1e7fbadc9d325959e25": { + "2024-12-01T00:00:00+02:00": 5842 + }, + "67212578d50b4e9ff9a6cc1f": { + "2024-12-01T00:00:00+02:00": 2951 + }, + "67444c602c32fe389fd89f54": { + "2024-12-01T00:00:00+02:00": 214 + }, + "668d398684227ca750502c57": { + "2024-12-01T00:00:00+02:00": 23549 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-12-01T00:00:00+02:00": 462910 + }, + "66f0dd46cf609b13436885f5": { + "2024-12-01T00:00:00+02:00": 832 + }, + "64fb853287135ffdc3b410ec": { + "2024-12-01T00:00:00+02:00": 25534 + }, + "66b36aa7aa4218d12678f006": { + "2024-12-01T00:00:00+02:00": 21 + }, + "641c3bb95d9af70da93f09a9": { + "2024-12-01T00:00:00+02:00": 218 + }, + "67219003d36466abaeb1f995": { + "2024-12-01T00:00:00+02:00": 466 + }, + "642552b70136cef86a79373c": { + "2024-12-01T00:00:00+02:00": 4532 + }, + "671bba5a0ab03d946718eb3b": { + "2024-12-01T00:00:00+02:00": 6868 + }, + "66a5008b076eb7c94c1adb92": { + "2024-12-01T00:00:00+02:00": 1343 + }, + "66cf1c1bcf609b134337b496": { + "2024-12-01T00:00:00+02:00": 754 + }, + "67063d37ba6a0580bfccc7e3": { + "2024-12-01T00:00:00+02:00": 1 + }, + "657752b62682a8ccf9887a7c": { + "2024-12-01T00:00:00+02:00": 447 + }, + "66fa9de25d6b8aa393727348": { + "2024-12-01T00:00:00+02:00": 1529 + }, + "66fd558bcf609b1343268e49": { + "2024-12-01T00:00:00+02:00": 4762 + }, + "6322333a2d7b721933bd8cf6": { + "2024-12-01T00:00:00+02:00": 89052 + }, + "6734a5a33b50565012d8dce0": { + "2024-12-01T00:00:00+02:00": 2121 + }, + "66a79f82dfafba8038bc3399": { + "2024-12-01T00:00:00+02:00": 3 + }, + "66fc55c5cf609b13433a677d": { + "2024-12-01T00:00:00+02:00": 4462 + }, + "671faf6b285bc655d85f6e65": { + "2024-12-01T00:00:00+02:00": 729 + }, + "65cb7ceb619fe4f9cf882165": { + "2024-12-01T00:00:00+02:00": 1059 + }, + "671f768afb21db27362e8d5f": { + "2024-12-01T00:00:00+02:00": 22529 + }, + "669ba0033c94be87b123b8c5": { + "2024-12-01T00:00:00+02:00": 917 + }, + "66d9e408cf609b134331065f": { + "2024-12-01T00:00:00+02:00": 7062 + }, + "652ea963fa315318e7925510": { + "2024-12-01T00:00:00+02:00": 187 + }, + "650b644a42707458fe431762": { + "2024-12-01T00:00:00+02:00": 584 + }, + "6721fd6e30d1c09960214146": { + "2024-12-01T00:00:00+02:00": 786 + }, + "63fe730e5787050c5df466a9": { + "2024-12-01T00:00:00+02:00": 1935 + }, + "674e32b62c32fe389f0ea40a": { + "2024-12-01T00:00:00+02:00": 10 } }, "B. Update Preferences - [Inbox] [Total Events]": { "$overall": { + "2024-12-01T00:00:00+02:00": 3849158 + }, + "6641cac9c4df36a9648c8dd5": { + "2024-12-01T00:00:00+02:00": 2 + }, + "62cd681212f9e10011655a35": { + "2024-12-01T00:00:00+02:00": 560 + }, + "63215ba3a4ca4df9242c24c4": { + "2024-12-01T00:00:00+02:00": 34 + }, + "6439210da97b5d90d4874f30": { + "2024-12-01T00:00:00+02:00": 264 + }, + "63cea3496779056a3f2fff8d": { + "2024-12-01T00:00:00+02:00": 71 + }, + "66ac042fb11ac224eaf4f23a": { + "2024-12-01T00:00:00+02:00": 43 + }, + "65129c6a87135ffdc368e7a3": { + "2024-12-01T00:00:00+02:00": 14 + }, + "662f0d0e843a6a8496596159": { + "2024-12-01T00:00:00+02:00": 3 + }, + "650d24f8f39b9230da78520b": { + "2024-12-01T00:00:00+02:00": 2 + }, + "662a58724b6cd9280bf5139d": { + "2024-12-01T00:00:00+02:00": 8 + }, + "63fbb0118920eed9471fa1b2": { + "2024-12-01T00:00:00+02:00": 6 + }, + "64f09213faeddba41e0137d9": { + "2024-12-01T00:00:00+02:00": 88 + }, + "652ea963fa315318e7925510": { + "2024-12-01T00:00:00+02:00": 12 + }, + "66621bc53a586fac83886829": { "2024-12-01T00:00:00+02:00": 2 }, + "6453755860f1803b3a3fba83": { + "2024-12-01T00:00:00+02:00": 8 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-12-01T00:00:00+02:00": 182 + }, + "646f26388b0b51ed1734729b": { + "2024-12-01T00:00:00+02:00": 192 + }, + "643e8d58b6a53d8ae70721c2": { + "2024-12-01T00:00:00+02:00": 9 + }, + "657752b62682a8ccf9887a7c": { + "2024-12-01T00:00:00+02:00": 63 + }, + "65eb2863bd6a1b3de8913c21": { + "2024-12-01T00:00:00+02:00": 2 + }, + "67235ab730d1c099604bf849": { + "2024-12-01T00:00:00+02:00": 12 + }, + "64135799799e3c974d3f6426": { + "2024-12-01T00:00:00+02:00": 393 + }, + "64011cb9841d0bacae01f6ff": { + "2024-12-01T00:00:00+02:00": 1 + }, "66ce471dcf609b1343289560": { "2024-12-01T00:00:00+02:00": 2 + }, + "660c351dbfb1f0d56f7a6fcc": { + "2024-12-01T00:00:00+02:00": 10 + }, + "66f0dd46cf609b13436885f5": { + "2024-12-01T00:00:00+02:00": 10 + }, + "643682a035c8dd9a2c46ac2b": { + "2024-12-01T00:00:00+02:00": 2 + }, + "650af582c016453d5bdfb209": { + "2024-12-01T00:00:00+02:00": 7 + }, + "66d9e408cf609b134331065f": { + "2024-12-01T00:00:00+02:00": 9 + }, + "630cb844fafbba9bf010f186": { + "2024-12-01T00:00:00+02:00": 125 + }, + "651c209f8816295152811079": { + "2024-12-01T00:00:00+02:00": 18 + }, + "6639eeff0c0215ee78621015": { + "2024-12-01T00:00:00+02:00": 2 + }, + "6400caeef591ea2e090f6040": { + "2024-12-01T00:00:00+02:00": 64613 + }, + "643d4f7130bdc004e35b8b0e": { + "2024-12-01T00:00:00+02:00": 4 + }, + "651fa9f835fbd6284965127c": { + "2024-12-01T00:00:00+02:00": 2 + }, + "651aea5133924ee69071720d": { + "2024-12-01T00:00:00+02:00": 4 + }, + "64e793a5dd99c21f1ef1ddcb": { + "2024-12-01T00:00:00+02:00": 8 + }, + "653f9eeac93cc0129acf4bcb": { + "2024-12-01T00:00:00+02:00": 3773039 + }, + "655cccfb8c7cd7ff32031773": { + "2024-12-01T00:00:00+02:00": 19 + }, + "650002893cc619d36e43a166": { + "2024-12-01T00:00:00+02:00": 2 + }, + "6759b8ec6b43e4625123293e": { + "2024-12-01T00:00:00+02:00": 2596 + }, + "63b3f614749085d8f285703a": { + "2024-12-01T00:00:00+02:00": 5 + }, + "66b35706aa4218d126bbbf49": { + "2024-12-01T00:00:00+02:00": 5 + }, + "642d9001c6b53aa5dd5124f5": { + "2024-12-01T00:00:00+02:00": 5 + }, + "66f19c98cf609b134304a0f6": { + "2024-12-01T00:00:00+02:00": 8 + }, + "65fbe3a58453b14f2f670e14": { + "2024-12-01T00:00:00+02:00": 5 + }, + "64477125ac1c08f04edc14aa": { + "2024-12-01T00:00:00+02:00": 20 + }, + "668d398684227ca750502c57": { + "2024-12-01T00:00:00+02:00": 14 + }, + "6508ba6e7722fc74ea9637ec": { + "2024-12-01T00:00:00+02:00": 10 + }, + "64e3554548249e7e76aeffc3": { + "2024-12-01T00:00:00+02:00": 4 + }, + "667afbe4231acc7b876e0a8a": { + "2024-12-01T00:00:00+02:00": 11 + }, + "6670ed6e78b0832675c76f6a": { + "2024-12-01T00:00:00+02:00": 4 + }, + "64e4824819860000717aecb9": { + "2024-12-01T00:00:00+02:00": 218 + }, + "64eda93c14b8a3ace6f4c5e9": { + "2024-12-01T00:00:00+02:00": 34 + }, + "6463ebef60f1803b3a6fbf6b": { + "2024-12-01T00:00:00+02:00": 15 + }, + "6540cb89c086274eec8fb0b1": { + "2024-12-01T00:00:00+02:00": 171 + }, + "65fd55c44f991166e7a7335e": { + "2024-12-01T00:00:00+02:00": 4444 + }, + "660b31f5b551758561fb037c": { + "2024-12-01T00:00:00+02:00": 99 + }, + "6644fabbfbadc9d325d90248": { + "2024-12-01T00:00:00+02:00": 16 + }, + "6525396bae3f3225a9475db0": { + "2024-12-01T00:00:00+02:00": 271 + }, + "6663404493a6b815ffefb2f0": { + "2024-12-01T00:00:00+02:00": 447 + }, + "63a32b86bee1d5aed72d7f15": { + "2024-12-01T00:00:00+02:00": 6 + }, + "665f80fe8e255032572549f2": { + "2024-12-01T00:00:00+02:00": 2 + }, + "65ceaef2535ad490c942a13c": { + "2024-12-01T00:00:00+02:00": 333 + }, + "650c474042707458fe59f367": { + "2024-12-01T00:00:00+02:00": 3 + }, + "6337ca88ee1316a5c8a9009e": { + "2024-12-01T00:00:00+02:00": 374 + }, + "64469b1b4919b8d7cbf845ef": { + "2024-12-01T00:00:00+02:00": 55 + }, + "651eff411df1b46454f4c05a": { + "2024-12-01T00:00:00+02:00": 5 + }, + "651fca9cb03ff038cef1c54f": { + "2024-12-01T00:00:00+02:00": 64 + }, + "67475e932c32fe389fa51052": { + "2024-12-01T00:00:00+02:00": 1 + }, + "671bba5a0ab03d946718eb3b": { + "2024-12-01T00:00:00+02:00": 37 + }, + "6572fd669788e6811d7b4d64": { + "2024-12-01T00:00:00+02:00": 3 + }, + "63a059f5bee1d5aed7e4d95c": { + "2024-12-01T00:00:00+02:00": 12 + }, + "67444c602c32fe389fd89f54": { + "2024-12-01T00:00:00+02:00": 8 + }, + "66cf1c1bcf609b134337b496": { + "2024-12-01T00:00:00+02:00": 6 } }, "C. Mark Notification As - [Inbox] [Total Events]": { "$overall": { - "2024-12-01T00:00:00+02:00": 598 + "2024-12-01T00:00:00+02:00": 11724 + }, + "6322333a2d7b721933bd8cf6": { + "2024-12-01T00:00:00+02:00": 154 + }, + "674586592c32fe389f95879e": { + "2024-12-01T00:00:00+02:00": 6 + }, + "67444c602c32fe389fd89f54": { + "2024-12-01T00:00:00+02:00": 2 + }, + "6742dd7d1bb91e63d914a510": { + "2024-12-01T00:00:00+02:00": 37 + }, + "66a5008b076eb7c94c1adb92": { + "2024-12-01T00:00:00+02:00": 30 + }, + "6644fabbfbadc9d325d90248": { + "2024-12-01T00:00:00+02:00": 98 + }, + "6671df91f4a238f107fe9f56": { + "2024-12-01T00:00:00+02:00": 3 + }, + "66b3c633abc563f5ee1c4ffa": { + "2024-12-01T00:00:00+02:00": 2 + }, + "66fa9de25d6b8aa393727348": { + "2024-12-01T00:00:00+02:00": 117 + }, + "662a58724b6cd9280bf5139d": { + "2024-12-01T00:00:00+02:00": 15 }, "66ce471dcf609b1343289560": { - "2024-12-01T00:00:00+02:00": 598 + "2024-12-01T00:00:00+02:00": 599 + }, + "63fbb0118920eed9471fa1b2": { + "2024-12-01T00:00:00+02:00": 63 + }, + "67463a802c32fe389fa61341": { + "2024-12-01T00:00:00+02:00": 18 + }, + "662f0d0e843a6a8496596159": { + "2024-12-01T00:00:00+02:00": 85 + }, + "66fd558bcf609b1343268e49": { + "2024-12-01T00:00:00+02:00": 3 + }, + "66f19c98cf609b134304a0f6": { + "2024-12-01T00:00:00+02:00": 64 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-12-01T00:00:00+02:00": 4 + }, + "6643b1e7fbadc9d325959e25": { + "2024-12-01T00:00:00+02:00": 19 + }, + "66d9e408cf609b134331065f": { + "2024-12-01T00:00:00+02:00": 14 + }, + "66b35706aa4218d126bbbf49": { + "2024-12-01T00:00:00+02:00": 40 + }, + "668d398684227ca750502c57": { + "2024-12-01T00:00:00+02:00": 366 + }, + "66a0f9f7f502999ed8453644": { + "2024-12-01T00:00:00+02:00": 56 + }, + "658e6a3b0ad62708782a93bf": { + "2024-12-01T00:00:00+02:00": 7 + }, + "657752b62682a8ccf9887a7c": { + "2024-12-01T00:00:00+02:00": 99 + }, + "67475e932c32fe389fa51052": { + "2024-12-01T00:00:00+02:00": 77 + }, + "665f34e28e2550325700cda9": { + "2024-12-01T00:00:00+02:00": 826 + }, + "64e46fc009b229a7c5c1735c": { + "2024-12-01T00:00:00+02:00": 3097 + }, + "671faf6b285bc655d85f6e65": { + "2024-12-01T00:00:00+02:00": 5 + }, + "64fb853287135ffdc3b410ec": { + "2024-12-01T00:00:00+02:00": 4545 + }, + "650b644a42707458fe431762": { + "2024-12-01T00:00:00+02:00": 2 + }, + "66cf1c1bcf609b134337b496": { + "2024-12-01T00:00:00+02:00": 183 + }, + "6758633bd0bc5c5859e4d0b0": { + "2024-12-01T00:00:00+02:00": 15 + }, + "67212578d50b4e9ff9a6cc1f": { + "2024-12-01T00:00:00+02:00": 55 + }, + "6734a5a33b50565012d8dce0": { + "2024-12-01T00:00:00+02:00": 39 + }, + "6721fd6e30d1c09960214146": { + "2024-12-01T00:00:00+02:00": 72 + }, + "642552b70136cef86a79373c": { + "2024-12-01T00:00:00+02:00": 4 + }, + "671bba5a0ab03d946718eb3b": { + "2024-12-01T00:00:00+02:00": 674 + }, + "67235ab730d1c099604bf849": { + "2024-12-01T00:00:00+02:00": 39 + }, + "63320239ee1316a5c87e38d1": { + "2024-12-01T00:00:00+02:00": 1 + }, + "650002893cc619d36e43a166": { + "2024-12-01T00:00:00+02:00": 112 + }, + "67219003d36466abaeb1f995": { + "2024-12-01T00:00:00+02:00": 50 + }, + "66f0dd46cf609b13436885f5": { + "2024-12-01T00:00:00+02:00": 23 + }, + "652ea963fa315318e7925510": { + "2024-12-01T00:00:00+02:00": 4 + } + }, + "D. Update Notification Action - [Inbox] [Total Events]": { + "$overall": { + "2024-12-01T00:00:00+02:00": 664 + }, + "650b644a42707458fe431762": { + "2024-12-01T00:00:00+02:00": 4 + }, + "66b35706aa4218d126bbbf49": { + "2024-12-01T00:00:00+02:00": 1 + }, + "6734a5a33b50565012d8dce0": { + "2024-12-01T00:00:00+02:00": 2 + }, + "6408f2f0dd5f589fe2ca61b4": { + "2024-12-01T00:00:00+02:00": 3 + }, + "671f768afb21db27362e8d5f": { + "2024-12-01T00:00:00+02:00": 492 + }, + "66fa9de25d6b8aa393727348": { + "2024-12-01T00:00:00+02:00": 10 + }, + "66cf1c1bcf609b134337b496": { + "2024-12-01T00:00:00+02:00": 31 + }, + "662a58724b6cd9280bf5139d": { + "2024-12-01T00:00:00+02:00": 4 + }, + "66b3c633abc563f5ee1c4ffa": { + "2024-12-01T00:00:00+02:00": 6 + }, + "6742dd7d1bb91e63d914a510": { + "2024-12-01T00:00:00+02:00": 13 + }, + "6322333a2d7b721933bd8cf6": { + "2024-12-01T00:00:00+02:00": 33 + }, + "671faf6b285bc655d85f6e65": { + "2024-12-01T00:00:00+02:00": 5 + }, + "66a0f9f7f502999ed8453644": { + "2024-12-01T00:00:00+02:00": 2 + }, + "665f34e28e2550325700cda9": { + "2024-12-01T00:00:00+02:00": 10 + }, + "662f0d0e843a6a8496596159": { + "2024-12-01T00:00:00+02:00": 38 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-12-01T00:00:00+02:00": 10 } } }, @@ -73,26 +648,547 @@ "series": { "A. Session Initialized - [Inbox] [Total Events]": { "$overall": { - "2024-11-01T00:00:00+02:00": 3713926 + "2024-11-01T00:00:00+02:00": 4856982 + }, + "66d9e408cf609b134331065f": { + "2024-11-01T00:00:00+02:00": 13744 + }, + "659d3b40f58e905eca1793b0": { + "2024-11-01T00:00:00+02:00": 350 + }, + "67219003d36466abaeb1f995": { + "2024-11-01T00:00:00+02:00": 1100 + }, + "66cde6ffcf609b13433bff6b": { + "2024-11-01T00:00:00+02:00": 44 + }, + "669ba0033c94be87b123b8c5": { + "2024-11-01T00:00:00+02:00": 1095 + }, + "6742dd7d1bb91e63d914a510": { + "2024-11-01T00:00:00+02:00": 119 + }, + "67444c602c32fe389fd89f54": { + "2024-11-01T00:00:00+02:00": 564 + }, + "6322333a2d7b721933bd8cf6": { + "2024-11-01T00:00:00+02:00": 56073 + }, + "66b3c633abc563f5ee1c4ffa": { + "2024-11-01T00:00:00+02:00": 16026 + }, + "671faf6b285bc655d85f6e65": { + "2024-11-01T00:00:00+02:00": 721 + }, + "642552b70136cef86a79373c": { + "2024-11-01T00:00:00+02:00": 5894 + }, + "66f19c98cf609b134304a0f6": { + "2024-11-01T00:00:00+02:00": 59068 + }, + "662f0d0e843a6a8496596159": { + "2024-11-01T00:00:00+02:00": 21879 + }, + "67235ab730d1c099604bf849": { + "2024-11-01T00:00:00+02:00": 9581 + }, + "671bba5a0ab03d946718eb3b": { + "2024-11-01T00:00:00+02:00": 763 + }, + "66b35706aa4218d126bbbf49": { + "2024-11-01T00:00:00+02:00": 30581 }, "66ce471dcf609b1343289560": { "2024-11-01T00:00:00+02:00": 3713926 + }, + "63320239ee1316a5c87e38d1": { + "2024-11-01T00:00:00+02:00": 7006 + }, + "65cb7ceb619fe4f9cf882165": { + "2024-11-01T00:00:00+02:00": 4640 + }, + "66cf1c1bcf609b134337b496": { + "2024-11-01T00:00:00+02:00": 1091 + }, + "66fa9de25d6b8aa393727348": { + "2024-11-01T00:00:00+02:00": 2045 + }, + "671dcbd5fb21db27364e8179": { + "2024-11-01T00:00:00+02:00": 14509 + }, + "674586592c32fe389f95879e": { + "2024-11-01T00:00:00+02:00": 828 + }, + "67463a802c32fe389fa61341": { + "2024-11-01T00:00:00+02:00": 35 + }, + "66f0dd46cf609b13436885f5": { + "2024-11-01T00:00:00+02:00": 312 + }, + "671b580c7cf00cbadbb9b0c3": { + "2024-11-01T00:00:00+02:00": 1547 + }, + "64e46fc009b229a7c5c1735c": { + "2024-11-01T00:00:00+02:00": 607389 + }, + "66cedf34cf609b134361bfa7": { + "2024-11-01T00:00:00+02:00": 15 + }, + "63fe730e5787050c5df466a9": { + "2024-11-01T00:00:00+02:00": 3005 + }, + "66fc55c5cf609b13433a677d": { + "2024-11-01T00:00:00+02:00": 5532 + }, + "6721fd6e30d1c09960214146": { + "2024-11-01T00:00:00+02:00": 2880 + }, + "65df17f92b39eba95ab6ae95": { + "2024-11-01T00:00:00+02:00": 1 + }, + "66a5008b076eb7c94c1adb92": { + "2024-11-01T00:00:00+02:00": 20 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-11-01T00:00:00+02:00": 102225 + }, + "66fd558bcf609b1343268e49": { + "2024-11-01T00:00:00+02:00": 4745 + }, + "6671df91f4a238f107fe9f56": { + "2024-11-01T00:00:00+02:00": 730 + }, + "67475e932c32fe389fa51052": { + "2024-11-01T00:00:00+02:00": 71 + }, + "665f34e28e2550325700cda9": { + "2024-11-01T00:00:00+02:00": 119 + }, + "650002893cc619d36e43a166": { + "2024-11-01T00:00:00+02:00": 6830 + }, + "6408f2f0dd5f589fe2ca61b4": { + "2024-11-01T00:00:00+02:00": 1471 + }, + "641c3bb95d9af70da93f09a9": { + "2024-11-01T00:00:00+02:00": 285 + }, + "66a0f9f7f502999ed8453644": { + "2024-11-01T00:00:00+02:00": 8299 + }, + "671f768afb21db27362e8d5f": { + "2024-11-01T00:00:00+02:00": 14195 + }, + "6643b1e7fbadc9d325959e25": { + "2024-11-01T00:00:00+02:00": 12322 + }, + "67212578d50b4e9ff9a6cc1f": { + "2024-11-01T00:00:00+02:00": 8521 + }, + "6644fabbfbadc9d325d90248": { + "2024-11-01T00:00:00+02:00": 67886 + }, + "652ea963fa315318e7925510": { + "2024-11-01T00:00:00+02:00": 73 + }, + "668d398684227ca750502c57": { + "2024-11-01T00:00:00+02:00": 7330 + }, + "650b644a42707458fe431762": { + "2024-11-01T00:00:00+02:00": 1268 + }, + "66b9e7e99c11077f0298542c": { + "2024-11-01T00:00:00+02:00": 8 + }, + "64fb853287135ffdc3b410ec": { + "2024-11-01T00:00:00+02:00": 38221 } }, "B. Update Preferences - [Inbox] [Total Events]": { "$overall": { - "2024-11-01T00:00:00+02:00": 8 + "2024-11-01T00:00:00+02:00": 2742068 + }, + "64c7be962df653eabd0a53dd": { + "2024-11-01T00:00:00+02:00": 15 + }, + "646f26388b0b51ed1734729b": { + "2024-11-01T00:00:00+02:00": 48 + }, + "64477125ac1c08f04edc14aa": { + "2024-11-01T00:00:00+02:00": 6 + }, + "6508ba6e7722fc74ea9637ec": { + "2024-11-01T00:00:00+02:00": 3 + }, + "657752b62682a8ccf9887a7c": { + "2024-11-01T00:00:00+02:00": 2 + }, + "650c474042707458fe59f367": { + "2024-11-01T00:00:00+02:00": 11 + }, + "6516702d73891288fc1ca032": { + "2024-11-01T00:00:00+02:00": 2 + }, + "643d4f7130bdc004e35b8b0e": { + "2024-11-01T00:00:00+02:00": 5 + }, + "66fa9de25d6b8aa393727348": { + "2024-11-01T00:00:00+02:00": 4 + }, + "67235ab730d1c099604bf849": { + "2024-11-01T00:00:00+02:00": 1 }, "66ce471dcf609b1343289560": { "2024-11-01T00:00:00+02:00": 8 + }, + "6400caeef591ea2e090f6040": { + "2024-11-01T00:00:00+02:00": 45872 + }, + "653f9eeac93cc0129acf4bcb": { + "2024-11-01T00:00:00+02:00": 2689412 + }, + "660c351dbfb1f0d56f7a6fcc": { + "2024-11-01T00:00:00+02:00": 10 + }, + "6463ebef60f1803b3a6fbf6b": { + "2024-11-01T00:00:00+02:00": 2 + }, + "63a32b86bee1d5aed72d7f15": { + "2024-11-01T00:00:00+02:00": 6 + }, + "66d9e408cf609b134331065f": { + "2024-11-01T00:00:00+02:00": 86 + }, + "64fb853287135ffdc3b410ec": { + "2024-11-01T00:00:00+02:00": 6 + }, + "671bba5a0ab03d946718eb3b": { + "2024-11-01T00:00:00+02:00": 8 + }, + "643e8d58b6a53d8ae70721c2": { + "2024-11-01T00:00:00+02:00": 2 + }, + "63cea3496779056a3f2fff8d": { + "2024-11-01T00:00:00+02:00": 140 + }, + "630cb844fafbba9bf010f186": { + "2024-11-01T00:00:00+02:00": 3 + }, + "651fa9f835fbd6284965127c": { + "2024-11-01T00:00:00+02:00": 4 + }, + "6670ed6e78b0832675c76f6a": { + "2024-11-01T00:00:00+02:00": 7 + }, + "65ceaef2535ad490c942a13c": { + "2024-11-01T00:00:00+02:00": 85 + }, + "66362cc66c5885a3257940bb": { + "2024-11-01T00:00:00+02:00": 2 + }, + "63cf21de42cfbce360219228": { + "2024-11-01T00:00:00+02:00": 1 + }, + "65439145e3bcee0f76a5a368": { + "2024-11-01T00:00:00+02:00": 1 + }, + "6525396bae3f3225a9475db0": { + "2024-11-01T00:00:00+02:00": 139 + }, + "64df0f4ea9172aa4b7052247": { + "2024-11-01T00:00:00+02:00": 1 + }, + "66ac042fb11ac224eaf4f23a": { + "2024-11-01T00:00:00+02:00": 30 + }, + "64341d3fd766fd13ee96b6a1": { + "2024-11-01T00:00:00+02:00": 3 + }, + "63b3f614749085d8f285703a": { + "2024-11-01T00:00:00+02:00": 21 + }, + "64f09213faeddba41e0137d9": { + "2024-11-01T00:00:00+02:00": 4 + }, + "66b3c633abc563f5ee1c4ffa": { + "2024-11-01T00:00:00+02:00": 7 + }, + "64135799799e3c974d3f6426": { + "2024-11-01T00:00:00+02:00": 304 + }, + "6572fd669788e6811d7b4d64": { + "2024-11-01T00:00:00+02:00": 11 + }, + "662a58724b6cd9280bf5139d": { + "2024-11-01T00:00:00+02:00": 19 + }, + "67219003d36466abaeb1f995": { + "2024-11-01T00:00:00+02:00": 6 + }, + "6540cb89c086274eec8fb0b1": { + "2024-11-01T00:00:00+02:00": 158 + }, + "66621bc53a586fac83886829": { + "2024-11-01T00:00:00+02:00": 4 + }, + "667abaa4218289a1c466b985": { + "2024-11-01T00:00:00+02:00": 4 + }, + "650002893cc619d36e43a166": { + "2024-11-01T00:00:00+02:00": 14 + }, + "62cd681212f9e10011655a35": { + "2024-11-01T00:00:00+02:00": 416 + }, + "67444c602c32fe389fd89f54": { + "2024-11-01T00:00:00+02:00": 2 + }, + "62fa8155227ab843d407b3f5": { + "2024-11-01T00:00:00+02:00": 2 + }, + "6644fabbfbadc9d325d90248": { + "2024-11-01T00:00:00+02:00": 16 + }, + "63362369e2a2de81df9b0573": { + "2024-11-01T00:00:00+02:00": 8 + }, + "6453755860f1803b3a3fba83": { + "2024-11-01T00:00:00+02:00": 3 + }, + "66cf1c1bcf609b134337b496": { + "2024-11-01T00:00:00+02:00": 29 + }, + "64011cb9841d0bacae01f6ff": { + "2024-11-01T00:00:00+02:00": 1 + }, + "662f0d0e843a6a8496596159": { + "2024-11-01T00:00:00+02:00": 29 + }, + "651d2708e1b82d64b37fb064": { + "2024-11-01T00:00:00+02:00": 2 + }, + "6578cf542c7e267bc3e3897a": { + "2024-11-01T00:00:00+02:00": 2 + }, + "66b997fe9c11077f0257d94e": { + "2024-11-01T00:00:00+02:00": 4 + }, + "6439210da97b5d90d4874f30": { + "2024-11-01T00:00:00+02:00": 136 + }, + "65fd55c44f991166e7a7335e": { + "2024-11-01T00:00:00+02:00": 3366 + }, + "64d10e4220f4008b5df1e37a": { + "2024-11-01T00:00:00+02:00": 1 + }, + "667afbe4231acc7b876e0a8a": { + "2024-11-01T00:00:00+02:00": 10 + }, + "6337ca88ee1316a5c8a9009e": { + "2024-11-01T00:00:00+02:00": 444 + }, + "64eda93c14b8a3ace6f4c5e9": { + "2024-11-01T00:00:00+02:00": 9 + }, + "64469b1b4919b8d7cbf845ef": { + "2024-11-01T00:00:00+02:00": 10 + }, + "668d398684227ca750502c57": { + "2024-11-01T00:00:00+02:00": 2 + }, + "64e4824819860000717aecb9": { + "2024-11-01T00:00:00+02:00": 271 + }, + "642d9001c6b53aa5dd5124f5": { + "2024-11-01T00:00:00+02:00": 2 + }, + "651c209f8816295152811079": { + "2024-11-01T00:00:00+02:00": 11 + }, + "6663404493a6b815ffefb2f0": { + "2024-11-01T00:00:00+02:00": 380 + }, + "652ea963fa315318e7925510": { + "2024-11-01T00:00:00+02:00": 122 + }, + "671bcf830ab03d9467221e9b": { + "2024-11-01T00:00:00+02:00": 5 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-11-01T00:00:00+02:00": 183 + }, + "660b31f5b551758561fb037c": { + "2024-11-01T00:00:00+02:00": 91 + }, + "6322333a2d7b721933bd8cf6": { + "2024-11-01T00:00:00+02:00": 26 + }, + "65fbe3a58453b14f2f670e14": { + "2024-11-01T00:00:00+02:00": 7 + }, + "650b644a42707458fe431762": { + "2024-11-01T00:00:00+02:00": 1 } }, "C. Mark Notification As - [Inbox] [Total Events]": { "$overall": { - "2024-11-01T00:00:00+02:00": 721 + "2024-11-01T00:00:00+02:00": 15126 + }, + "66cf1c1bcf609b134337b496": { + "2024-11-01T00:00:00+02:00": 223 + }, + "66b3c633abc563f5ee1c4ffa": { + "2024-11-01T00:00:00+02:00": 11 + }, + "67444c602c32fe389fd89f54": { + "2024-11-01T00:00:00+02:00": 460 + }, + "6408f2f0dd5f589fe2ca61b4": { + "2024-11-01T00:00:00+02:00": 11 + }, + "65cb7ceb619fe4f9cf882165": { + "2024-11-01T00:00:00+02:00": 49 + }, + "669ba0033c94be87b123b8c5": { + "2024-11-01T00:00:00+02:00": 87 }, "66ce471dcf609b1343289560": { "2024-11-01T00:00:00+02:00": 721 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-11-01T00:00:00+02:00": 11 + }, + "665f34e28e2550325700cda9": { + "2024-11-01T00:00:00+02:00": 13 + }, + "66f19c98cf609b134304a0f6": { + "2024-11-01T00:00:00+02:00": 204 + }, + "650002893cc619d36e43a166": { + "2024-11-01T00:00:00+02:00": 84 + }, + "6322333a2d7b721933bd8cf6": { + "2024-11-01T00:00:00+02:00": 123 + }, + "6643b1e7fbadc9d325959e25": { + "2024-11-01T00:00:00+02:00": 105 + }, + "662f0d0e843a6a8496596159": { + "2024-11-01T00:00:00+02:00": 23 + }, + "67475e932c32fe389fa51052": { + "2024-11-01T00:00:00+02:00": 10 + }, + "66a0f9f7f502999ed8453644": { + "2024-11-01T00:00:00+02:00": 32 + }, + "668d398684227ca750502c57": { + "2024-11-01T00:00:00+02:00": 61 + }, + "6742dd7d1bb91e63d914a510": { + "2024-11-01T00:00:00+02:00": 5 + }, + "652ea963fa315318e7925510": { + "2024-11-01T00:00:00+02:00": 4 + }, + "6721fd6e30d1c09960214146": { + "2024-11-01T00:00:00+02:00": 406 + }, + "6671df91f4a238f107fe9f56": { + "2024-11-01T00:00:00+02:00": 1 + }, + "66fd558bcf609b1343268e49": { + "2024-11-01T00:00:00+02:00": 128 + }, + "671bba5a0ab03d946718eb3b": { + "2024-11-01T00:00:00+02:00": 183 + }, + "66d9e408cf609b134331065f": { + "2024-11-01T00:00:00+02:00": 25 + }, + "671b580c7cf00cbadbb9b0c3": { + "2024-11-01T00:00:00+02:00": 30 + }, + "66b35706aa4218d126bbbf49": { + "2024-11-01T00:00:00+02:00": 2 + }, + "650b644a42707458fe431762": { + "2024-11-01T00:00:00+02:00": 38 + }, + "6644fabbfbadc9d325d90248": { + "2024-11-01T00:00:00+02:00": 50 + }, + "66f0dd46cf609b13436885f5": { + "2024-11-01T00:00:00+02:00": 16 + }, + "64e46fc009b229a7c5c1735c": { + "2024-11-01T00:00:00+02:00": 10030 + }, + "64fb853287135ffdc3b410ec": { + "2024-11-01T00:00:00+02:00": 1601 + }, + "66fa9de25d6b8aa393727348": { + "2024-11-01T00:00:00+02:00": 19 + }, + "63320239ee1316a5c87e38d1": { + "2024-11-01T00:00:00+02:00": 8 + }, + "67219003d36466abaeb1f995": { + "2024-11-01T00:00:00+02:00": 103 + }, + "671faf6b285bc655d85f6e65": { + "2024-11-01T00:00:00+02:00": 20 + }, + "67212578d50b4e9ff9a6cc1f": { + "2024-11-01T00:00:00+02:00": 37 + }, + "67235ab730d1c099604bf849": { + "2024-11-01T00:00:00+02:00": 192 + } + }, + "D. Update Notification Action - [Inbox] [Total Events]": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1285 + }, + "6408f2f0dd5f589fe2ca61b4": { + "2024-11-01T00:00:00+02:00": 19 + }, + "671faf6b285bc655d85f6e65": { + "2024-11-01T00:00:00+02:00": 17 + }, + "66cf1c1bcf609b134337b496": { + "2024-11-01T00:00:00+02:00": 48 + }, + "662f0d0e843a6a8496596159": { + "2024-11-01T00:00:00+02:00": 14 + }, + "64fb853287135ffdc3b410ec": { + "2024-11-01T00:00:00+02:00": 119 + }, + "671f768afb21db27362e8d5f": { + "2024-11-01T00:00:00+02:00": 734 + }, + "66fa9de25d6b8aa393727348": { + "2024-11-01T00:00:00+02:00": 175 + }, + "66b3c633abc563f5ee1c4ffa": { + "2024-11-01T00:00:00+02:00": 2 + }, + "650b644a42707458fe431762": { + "2024-11-01T00:00:00+02:00": 121 + }, + "66a0f9f7f502999ed8453644": { + "2024-11-01T00:00:00+02:00": 5 + }, + "64654f8125b1fb30f26b3ce3": { + "2024-11-01T00:00:00+02:00": 3 + }, + "67444c602c32fe389fd89f54": { + "2024-11-01T00:00:00+02:00": 3 + }, + "6322333a2d7b721933bd8cf6": { + "2024-11-01T00:00:00+02:00": 25 } } } diff --git a/apps/api/mixpanel-insights-cache.json b/apps/api/mixpanel-insights-cache.json index 07ae1789c3c..a9ba3421a19 100644 --- a/apps/api/mixpanel-insights-cache.json +++ b/apps/api/mixpanel-insights-cache.json @@ -1,15 +1,15 @@ { - "timestamp": 1734872166408, + "timestamp": 1734873102299, "data": { "headers": ["$event", "$distinct_id", "jobType", "name"], - "computed_at": "2024-12-22T12:56:06.102557+00:00", + "computed_at": "2024-12-22T13:11:30.732341+00:00", "date_range": { "from_date": "2024-12-01T00:00:00+02:00", - "to_date": "2024-12-22T14:56:04.529509+02:00" + "to_date": "2024-12-22T15:11:26.390837+02:00" }, "meta": { "min_sampling_factor": 1, - "is_segmentation_limit_hit": false, + "is_segmentation_limit_hit": true, "report_sections": { "group": [ { @@ -54,162 +54,48828 @@ "series": { "A. Notification Subscriber Event Trigger [Total Events]": { "$overall": { - "2024-12-01T00:00:00+02:00": 673 + "2024-12-01T00:00:00+02:00": 19699275 }, - "63215ba3a4ca4df9242c24c4": { + "62b8aeda9bbe840018528c47": { "$overall": { - "2024-12-01T00:00:00+02:00": 673 + "2024-12-01T00:00:00+02:00": 525 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 525 + }, + "New User": { + "2024-12-01T00:00:00+02:00": 42 + }, + "Activity Baseline Update": { + "2024-12-01T00:00:00+02:00": 98 + }, + "Activity Create": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Activity Update": { + "2024-12-01T00:00:00+02:00": 343 + }, + "Activity Baseline Create": { + "2024-12-01T00:00:00+02:00": 21 + } + } + }, + "6421cf785876c8840c441642": { + "$overall": { + "2024-12-01T00:00:00+02:00": 275 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 275 + }, + "Verify email": { + "2024-12-01T00:00:00+02:00": 89 + }, + "Email verified/Welcome": { + "2024-12-01T00:00:00+02:00": 50 + }, + "distance-alert": { + "2024-12-01T00:00:00+02:00": 36 + }, + "price-alert": { + "2024-12-01T00:00:00+02:00": 100 + } + } + }, + "6408f2f0dd5f589fe2ca61b4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1871 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1871 + }, + "Notificação proposta unique gerada": { + "2024-12-01T00:00:00+02:00": 12 + }, + "A sua jornada começa agora": { + "2024-12-01T00:00:00+02:00": 12 + }, + "O2T8 Código de Acesso - Aurora": { + "2024-12-01T00:00:00+02:00": 285 + }, + "Fluxo notificacao novo Lead in App Gestor": { + "2024-12-01T00:00:00+02:00": 856 + }, + "O1T1 Cadastro de colaboradores - Aurora": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Sininho assinatura auditoria concluída (médico)": { + "2024-12-01T00:00:00+02:00": 13 + }, + "Notifica médico - Assinatura auditoria concluída": { + "2024-12-01T00:00:00+02:00": 46 + }, + "O3T2 Enviar Documentação - Aurora": { + "2024-12-01T00:00:00+02:00": 76 + }, + "CARUARU - Email de Boas Vindas": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Teste Workflow 24h": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Assinar Contrato - Aurora": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Email novo lead adicionado": { + "2024-12-01T00:00:00+02:00": 489 + } + } + }, + "6627ff494ad60adb146eca32": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2030 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2030 + }, + "Invitación Nuevo Asesor": { + "2024-12-01T00:00:00+02:00": 33 + }, + "Nuevo lead": { + "2024-12-01T00:00:00+02:00": 444 + }, + "Login": { + "2024-12-01T00:00:00+02:00": 267 + }, + "Visita solicitada": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Broker Asignado a Cliente": { + "2024-12-01T00:00:00+02:00": 444 + }, + "Bienvenida Asesor": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Edición de propiedad": { + "2024-12-01T00:00:00+02:00": 392 + }, + "Nuevo inicio de sesión": { + "2024-12-01T00:00:00+02:00": 411 + } + } + }, + "656dbe9f27f644ad0ecba9ae": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "qlan-push": { + "2024-12-01T00:00:00+02:00": 915 + } + } + }, + "65aad6098e557ef0afa191c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1420 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1420 + }, + "RTUT General": { + "2024-12-01T00:00:00+02:00": 1405 + }, + "One-Time-Code": { + "2024-12-01T00:00:00+02:00": 15 + } + } + }, + "66319137a95d2d5be0cffdd5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1438 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1438 + }, + "New Feature Launch": { + "2024-12-01T00:00:00+02:00": 1438 + } + } + }, + "66ea0719cf609b1343a50a19": { + "$overall": { + "2024-12-01T00:00:00+02:00": 306 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 306 + }, + "awaiting_sign_offs": { + "2024-12-01T00:00:00+02:00": 8 + }, + "private_viewing_reminder": { + "2024-12-01T00:00:00+02:00": 95 + }, + "rental_application_shortlisted": { + "2024-12-01T00:00:00+02:00": 12 + }, + "rental_application_accepted": { + "2024-12-01T00:00:00+02:00": 9 + }, + "rental_application_unsuccessful": { + "2024-12-01T00:00:00+02:00": 40 + }, + "credit_check_completed": { + "2024-12-01T00:00:00+02:00": 7 + }, + "new_tenancy_request_property_manager_variant": { + "2024-12-01T00:00:00+02:00": 9 + }, + "open_home_reminder": { + "2024-12-01T00:00:00+02:00": 93 + }, + "share_with_owner": { + "2024-12-01T00:00:00+02:00": 4 + }, + "send_request_to_supplier": { + "2024-12-01T00:00:00+02:00": 7 + }, + "new_enquiry_message": { + "2024-12-01T00:00:00+02:00": 7 + }, + "close_reminder": { + "2024-12-01T00:00:00+02:00": 5 + } + } + }, + "65ceaef2535ad490c942a13c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30382 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30382 + }, + "New Asset Creation": { + "2024-12-01T00:00:00+02:00": 857 + }, + "Asset Risk Score Decreased": { + "2024-12-01T00:00:00+02:00": 133 + }, + "Asset Risk Score Increased": { + "2024-12-01T00:00:00+02:00": 184 + }, + "New message in Security Experts": { + "2024-12-01T00:00:00+02:00": 153 + }, + "New Vulnerability Identified": { + "2024-12-01T00:00:00+02:00": 9197 + }, + "Fixed Vulnerability": { + "2024-12-01T00:00:00+02:00": 19858 + } + } + }, + "634d5b1a27d50dea0bbfa3bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12087 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12087 + }, + "Ticket state changed": { + "2024-12-01T00:00:00+02:00": 3228 + }, + "Ticket assigned changed": { + "2024-12-01T00:00:00+02:00": 974 + }, + "Ticket commenté": { + "2024-12-01T00:00:00+02:00": 7720 + }, + "File added to ticket": { + "2024-12-01T00:00:00+02:00": 165 + } + } + }, + "64f09213faeddba41e0137d9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 634 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 634 + }, + "Course Enrollment Invitation": { + "2024-12-01T00:00:00+02:00": 123 + }, + "Learner Query Response Notification": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Notification to Inform Referrer": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Learner reallocate course": { + "2024-12-01T00:00:00+02:00": 51 + }, + "Activation Reminder": { + "2024-12-01T00:00:00+02:00": 93 + }, + "Welcome email": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Profile completion reminder": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Testing API call": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Email Verification": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Learner Cancellation Outcome": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Learner self enrolled - No account": { + "2024-12-01T00:00:00+02:00": 56 + }, + "Class rebooking": { + "2024-12-01T00:00:00+02:00": 26 + }, + "Staff Cancellation Enrolment Notification to Learner": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Referral Email": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Setup Password": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Enrolment form submitted": { + "2024-12-01T00:00:00+02:00": 19 + }, + "Learner Cancellation Request": { + "2024-12-01T00:00:00+02:00": 13 + }, + "Query": { + "2024-12-01T00:00:00+02:00": 30 + }, + "Notification to Learner (has account) referred by Referrer": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Notification to Learner (has account) added in admin portal": { + "2024-12-01T00:00:00+02:00": 43 + } + } + }, + "6502d39087135ffdc35caf67": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16808 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16808 + }, + "user-add": { + "2024-12-01T00:00:00+02:00": 8 + }, + "events-dynamo-trigger": { + "2024-12-01T00:00:00+02:00": 6864 + }, + "events-changed-status": { + "2024-12-01T00:00:00+02:00": 9936 + } + } + }, + "651add0cb03ff038cedc7448": { + "$overall": { + "2024-12-01T00:00:00+02:00": 258508 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 258508 + }, + "quota-alert-pec": { + "2024-12-01T00:00:00+02:00": 5 + }, + "quota-alert": { + "2024-12-01T00:00:00+02:00": 68 + }, + "new-message": { + "2024-12-01T00:00:00+02:00": 258434 + } + } + }, + "668fa1064111ae088df8ecd3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 356 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 356 + }, + "empa-workflow": { + "2024-12-01T00:00:00+02:00": 356 + } + } + }, + "669187bb9efb8372ce7c6483": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1117 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1117 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1117 + } + } + }, + "63f586fd589ed09e95f0010f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 747 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 747 + }, + "Notificaciones Sistema Abre.cloud": { + "2024-12-01T00:00:00+02:00": 747 + } + } + }, + "6361ae479e04bb11b51b9401": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2232 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2232 + }, + "Patient Reminder": { + "2024-12-01T00:00:00+02:00": 91 + }, + "Organisation admin to complete": { + "2024-12-01T00:00:00+02:00": 1768 + }, + "Patient Invite": { + "2024-12-01T00:00:00+02:00": 57 + }, + "send-pdf": { + "2024-12-01T00:00:00+02:00": 90 + }, + "Referral update": { + "2024-12-01T00:00:00+02:00": 166 + }, + "Practitioner to complete stage": { + "2024-12-01T00:00:00+02:00": 60 + } + } + }, + "660c351dbfb1f0d56f7a6fcc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 424 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 424 + }, + "requestlist-actorsaddedtoitem-v1": { + "2024-12-01T00:00:00+02:00": 14 + }, + "requestlist-duedatereminders-v1": { + "2024-12-01T00:00:00+02:00": 410 + } + } + }, + "666c096bb3464b7775094768": { + "$overall": { + "2024-12-01T00:00:00+02:00": 814 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 814 + }, + "initiative-updates": { + "2024-12-01T00:00:00+02:00": 644 + }, + "task-updates": { + "2024-12-01T00:00:00+02:00": 62 + }, + "kpi-updates": { + "2024-12-01T00:00:00+02:00": 12 + }, + "kpi-target-updates": { + "2024-12-01T00:00:00+02:00": 58 + }, + "praise-updates": { + "2024-12-01T00:00:00+02:00": 13 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 25 + } + } + }, + "6439d814d3f2f7f8eb014099": { + "$overall": { + "2024-12-01T00:00:00+02:00": 282 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 282 + }, + "invitation created (unregistered)": { + "2024-12-01T00:00:00+02:00": 162 + }, + "invitation created (registered)": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Reset password": { + "2024-12-01T00:00:00+02:00": 13 + }, + "subscription canceled": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Confirmation instructions": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Invitation accepted": { + "2024-12-01T00:00:00+02:00": 22 + } + } + }, + "65f086bfeb4977909f034ec2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 860 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 860 + }, + "Candidate Viewed": { + "2024-12-01T00:00:00+02:00": 554 + }, + "Candidate Submission": { + "2024-12-01T00:00:00+02:00": 134 + }, + "Candidate Submission Status -> Offer": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Candidate Submission Status -> Interview": { + "2024-12-01T00:00:00+02:00": 114 + }, + "Multiple Candidate Submission": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Candidate Submission Status -> Rejected": { + "2024-12-01T00:00:00+02:00": 22 + }, + "Create Note": { + "2024-12-01T00:00:00+02:00": 8 + } + } + }, + "657752b62682a8ccf9887a7c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 149114 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 149114 + }, + "Shared Item": { + "2024-12-01T00:00:00+02:00": 24 + }, + "Email-test": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Deleted Marked Exhibit": { + "2024-12-01T00:00:00+02:00": 74 + }, + "Annotation Sessions": { + "2024-12-01T00:00:00+02:00": 2036 + }, + "Sample Email": { + "2024-12-01T00:00:00+02:00": 43 + }, + "Sample SMS": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Documents Requested": { + "2024-12-01T00:00:00+02:00": 90 + }, + "Refresh Files": { + "2024-12-01T00:00:00+02:00": 1082 + }, + "Introduced Marked Exhibit": { + "2024-12-01T00:00:00+02:00": 140404 + }, + "Exhibit Clawbacks": { + "2024-12-01T00:00:00+02:00": 5226 + }, + "MyVeritext": { + "2024-12-01T00:00:00+02:00": 28 + }, + "Document Request Concluded": { + "2024-12-01T00:00:00+02:00": 81 + } + } + }, + "641c3bb95d9af70da93f09a9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1342 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1342 + }, + "trip-booked": { + "2024-12-01T00:00:00+02:00": 99 + }, + "trip-operational-note": { + "2024-12-01T00:00:00+02:00": 58 + }, + "trip-eta-update": { + "2024-12-01T00:00:00+02:00": 91 + }, + "trip-cancelled": { + "2024-12-01T00:00:00+02:00": 6 + }, + "trip-completed": { + "2024-12-01T00:00:00+02:00": 178 + }, + "trip-driver-assessment": { + "2024-12-01T00:00:00+02:00": 351 + }, + "trip-driver-update": { + "2024-12-01T00:00:00+02:00": 556 + } + } + }, + "644c1877631887e5f006a54f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1191 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1191 + }, + "Bergsify - MAS": { + "2024-12-01T00:00:00+02:00": 1191 + } + } + }, + "664c96c0e6f72af294ae867a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "Sign Contract": { + "2024-12-01T00:00:00+02:00": 191 + }, + "Subscription": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Order Completed": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Independent Request Acceptance": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Add On": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Associate Disconnection": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Place Order": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Share Order": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Independent Request Rejection": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Independent Association Request": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Order Closed": { + "2024-12-01T00:00:00+02:00": 5 + } + } + }, + "6436e7094f087a109c0322a7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6340 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6340 + }, + "Database Create": { + "2024-12-01T00:00:00+02:00": 4578 + }, + "Database Hibernate": { + "2024-12-01T00:00:00+02:00": 71 + }, + "Database ResumeHibernatedCluster": { + "2024-12-01T00:00:00+02:00": 65 + }, + "Database Created: Vector": { + "2024-12-01T00:00:00+02:00": 491 + }, + "Database Created: Serverless": { + "2024-12-01T00:00:00+02:00": 1135 + } + } + }, + "645863ebd6925ea19b7d2456": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2286 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2286 + }, + "Workflow Notification": { + "2024-12-01T00:00:00+02:00": 2286 + } + } + }, + "65af6ad4f58e905ecab29441": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2266879 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2266879 + }, + "Ohsogo Pegasus FCM": { + "2024-12-01T00:00:00+02:00": 2266879 + } + } + }, + "669559c51c484e3d9a0e1839": { + "$overall": { + "2024-12-01T00:00:00+02:00": 265 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 265 + }, + "send-push-notification-using-fcm": { + "2024-12-01T00:00:00+02:00": 265 + } + } + }, + "65113f461a7614493dc5a9f0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42635 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42635 + }, + "purchase_invoice_group": { + "2024-12-01T00:00:00+02:00": 16 + }, + "New Group Member": { + "2024-12-01T00:00:00+02:00": 41669 + }, + "session_reminder": { + "2024-12-01T00:00:00+02:00": 139 + }, + "Group Post Reply": { + "2024-12-01T00:00:00+02:00": 186 + }, + "purchase_invoice": { + "2024-12-01T00:00:00+02:00": 45 + }, + "Group Post Created": { + "2024-12-01T00:00:00+02:00": 551 + }, + "group_onboarding_submit": { + "2024-12-01T00:00:00+02:00": 19 + }, + "Group session questions submitted": { + "2024-12-01T00:00:00+02:00": 9 + } + } + }, + "65caa89e619fe4f9cf723907": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23726 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23726 + }, + "Saved Search Notification - 1": { + "2024-12-01T00:00:00+02:00": 23726 + } + } + }, + "63a32b86bee1d5aed72d7f15": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4662 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4662 + }, + "Job sendouts": { + "2024-12-01T00:00:00+02:00": 1764 + }, + "Reminders": { + "2024-12-01T00:00:00+02:00": 2898 + } + } + }, + "66d9e408cf609b134331065f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7646 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7646 + }, + "listing-new-collection": { + "2024-12-01T00:00:00+02:00": 1019 + }, + "offer-accepted": { + "2024-12-01T00:00:00+02:00": 14 + }, + "listing-accepted": { + "2024-12-01T00:00:00+02:00": 331 + }, + "daily-digest": { + "2024-12-01T00:00:00+02:00": 2528 + }, + "weekly-digest": { + "2024-12-01T00:00:00+02:00": 2528 + }, + "offer-new-collection": { + "2024-12-01T00:00:00+02:00": 1202 + }, + "offer-received": { + "2024-12-01T00:00:00+02:00": 24 + } + } + }, + "66a79f82dfafba8038bc3399": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1119 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1119 + }, + "account-verification-code-sms": { + "2024-12-01T00:00:00+02:00": 242 + }, + "account-verification-code": { + "2024-12-01T00:00:00+02:00": 877 + } + } + }, + "6569c906478e147113dd7a9e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 496 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 496 + }, + "SEBI RA Account Activated": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Untitled": { + "2024-12-01T00:00:00+02:00": 6 + }, + "DayTrade Welcome Email": { + "2024-12-01T00:00:00+02:00": 485 + } + } + }, + "63fe730e5787050c5df466a9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2965 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2965 + }, + "ve-alerts": { + "2024-12-01T00:00:00+02:00": 2110 + }, + "ve-model-changes": { + "2024-12-01T00:00:00+02:00": 762 + }, + "visualping-notification": { + "2024-12-01T00:00:00+02:00": 8 + }, + "ve-new-event": { + "2024-12-01T00:00:00+02:00": 85 + } + } + }, + "6639eeff0c0215ee78621015": { + "$overall": { + "2024-12-01T00:00:00+02:00": 41919 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 41919 + }, + "development ENV": { + "2024-12-01T00:00:00+02:00": 41779 + }, + "oms app": { + "2024-12-01T00:00:00+02:00": 140 + } + } + }, + "6557f01a8c7cd7ff32f2d475": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27331 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27331 + }, + "Alert: Overtime Worked": { + "2024-12-01T00:00:00+02:00": 241 + }, + "Alert: Sensor Empty": { + "2024-12-01T00:00:00+02:00": 852 + }, + "Alert: Cleaning Time Short": { + "2024-12-01T00:00:00+02:00": 19019 + }, + "Alert: Beacon offline": { + "2024-12-01T00:00:00+02:00": 676 + }, + "Alert: Missed Shift": { + "2024-12-01T00:00:00+02:00": 2535 + }, + "Alert: Basestation offline": { + "2024-12-01T00:00:00+02:00": 68 + }, + "Org invites a user": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Alert: Cleaning Time Long": { + "2024-12-01T00:00:00+02:00": 455 + }, + "Alert: Unscheduled Visit": { + "2024-12-01T00:00:00+02:00": 1305 + }, + "Alert: High Traffic": { + "2024-12-01T00:00:00+02:00": 1251 + }, + "Schedule Reports": { + "2024-12-01T00:00:00+02:00": 911 + } + } + }, + "661541fa6df43c247a0a31f9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 895 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 895 + }, + "Task Assigned": { + "2024-12-01T00:00:00+02:00": 766 + }, + "Thread Assigned": { + "2024-12-01T00:00:00+02:00": 129 + } + } + }, + "662f0d0e843a6a8496596159": { + "$overall": { + "2024-12-01T00:00:00+02:00": 361 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 361 + }, + "Task updated (self-serve)": { + "2024-12-01T00:00:00+02:00": 146 + }, + "File uploaded (self-serve)": { + "2024-12-01T00:00:00+02:00": 152 + }, + "File rejected (self-serve)": { + "2024-12-01T00:00:00+02:00": 58 + } + } + }, + "651e2d9e8816295152897198": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1032 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1032 + }, + "Liqudity Buy Alert With Referr info": { + "2024-12-01T00:00:00+02:00": 22 + }, + "Registration Successful": { + "2024-12-01T00:00:00+02:00": 63 + }, + "Onboarding Workflow": { + "2024-12-01T00:00:00+02:00": 169 + }, + "OTP DCN": { + "2024-12-01T00:00:00+02:00": 778 + } + } + }, + "655f20b2afd4055e0df6ae1d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1119 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1119 + }, + "Create Dashboard": { + "2024-12-01T00:00:00+02:00": 30 + }, + "alert": { + "2024-12-01T00:00:00+02:00": 593 + }, + "Welcome Email": { + "2024-12-01T00:00:00+02:00": 28 + }, + "Scheduled Dashboard": { + "2024-12-01T00:00:00+02:00": 468 + } + } + }, + "67235ab730d1c099604bf849": { + "$overall": { + "2024-12-01T00:00:00+02:00": 408 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 408 + }, + "App Data Updated": { + "2024-12-01T00:00:00+02:00": 331 + }, + "App Data Created": { + "2024-12-01T00:00:00+02:00": 73 + }, + "App Data Commented": { + "2024-12-01T00:00:00+02:00": 4 + } + } + }, + "63320239ee1316a5c87e38d1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18462 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18462 + }, + "roles": { + "2024-12-01T00:00:00+02:00": 6 + }, + "admin-onboarding": { + "2024-12-01T00:00:00+02:00": 2759 + }, + "admin-subscriptions": { + "2024-12-01T00:00:00+02:00": 244 + }, + "my-rows": { + "2024-12-01T00:00:00+02:00": 22 + }, + "admin-account-members": { + "2024-12-01T00:00:00+02:00": 73 + }, + "admin-rows": { + "2024-12-01T00:00:00+02:00": 8964 + }, + "admin-accounts": { + "2024-12-01T00:00:00+02:00": 4926 + }, + "admin-users": { + "2024-12-01T00:00:00+02:00": 1468 + } + } + }, + "6615460e6df43c247a0e01bb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14669 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14669 + }, + "Darter Notification": { + "2024-12-01T00:00:00+02:00": 14669 + } + } + }, + "66b35706aa4218d126bbbf49": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1130 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1130 + }, + "Assigned": { + "2024-12-01T00:00:00+02:00": 221 + }, + "Status Updates": { + "2024-12-01T00:00:00+02:00": 540 + }, + "Mentions": { + "2024-12-01T00:00:00+02:00": 369 + } + } + }, + "650d24f8f39b9230da78520b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1132 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1132 + }, + "New comment": { + "2024-12-01T00:00:00+02:00": 1057 + }, + "New comment mention": { + "2024-12-01T00:00:00+02:00": 75 + } + } + }, + "630ca7b800f7dbd3faf2d726": { + "$overall": { + "2024-12-01T00:00:00+02:00": 93064 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 93064 + }, + "new_indicators_from_feed": { + "2024-12-01T00:00:00+02:00": 275 + }, + "new_insight_created_digest_security_product_disabled_on_gw": { + "2024-12-01T00:00:00+02:00": 66 + }, + "new_insight_created_digest_protection_found_in_inactive": { + "2024-12-01T00:00:00+02:00": 17352 + }, + "new_insight_created_digest_detect_to_prevent_no_hits": { + "2024-12-01T00:00:00+02:00": 13109 + }, + "new_insight_created_digest_ip_blocked_tp": { + "2024-12-01T00:00:00+02:00": 15390 + }, + "new_insight_created_digest_security_product_license_expired": { + "2024-12-01T00:00:00+02:00": 66 + }, + "new_insight_created_digest_security_product_not_enforced_in_profile": { + "2024-12-01T00:00:00+02:00": 108 + }, + "new_insight_created_digest_protection_in_detect_with_hits_tp": { + "2024-12-01T00:00:00+02:00": 9 + }, + "new_insight_created_digest_hash_blocked": { + "2024-12-01T00:00:00+02:00": 3440 + }, + "new_insight_created_digest_endpoint_detection_script": { + "2024-12-01T00:00:00+02:00": 745 + }, + "new_insight_created_digest_protection_fp": { + "2024-12-01T00:00:00+02:00": 42385 + }, + "new_insight_created_digest_jumbo_version_is_not_up_to_date": { + "2024-12-01T00:00:00+02:00": 65 + }, + "new_insight_created_digest_security_product_not_updated": { + "2024-12-01T00:00:00+02:00": 36 + }, + "new_insight_created_digest_security_product_on_gw_not_enforced_in_rulebase": { + "2024-12-01T00:00:00+02:00": 18 + } + } + }, + "63b80e5704fdc888671f3820": { + "$overall": { + "2024-12-01T00:00:00+02:00": 513 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 513 + }, + "Email Notification": { + "2024-12-01T00:00:00+02:00": 423 + }, + "SMS Notification": { + "2024-12-01T00:00:00+02:00": 90 + } + } + }, + "6453755860f1803b3a3fba83": { + "$overall": { + "2024-12-01T00:00:00+02:00": 270 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 270 + }, + "Sample Email Generation Completed": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Message Generation Completed": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Lead list generated": { + "2024-12-01T00:00:00+02:00": 205 + }, + "Unipile Account Disconnected": { + "2024-12-01T00:00:00+02:00": 13 + }, + "Bug was successfully submitted": { + "2024-12-01T00:00:00+02:00": 13 + }, + "User Sender Token expired": { + "2024-12-01T00:00:00+02:00": 22 + } + } + }, + "64c78706e994a8dc20cdb2e1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 255 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 255 + }, + "Reset Password": { + "2024-12-01T00:00:00+02:00": 152 + }, + "Account Verification": { + "2024-12-01T00:00:00+02:00": 43 + }, + "MMU": { + "2024-12-01T00:00:00+02:00": 60 + } + } + }, + "64092d0773a1721d0476baa9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 890 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 890 + }, + "Request To Confirm Appointment": { + "2024-12-01T00:00:00+02:00": 70 + }, + "Appointment Reminder to Me": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Appointment Is Canceled": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Appointment Reminder by Email": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Clinical Findings Updates": { + "2024-12-01T00:00:00+02:00": 22 + }, + "Appointment Reminder to Patient Before 24h": { + "2024-12-01T00:00:00+02:00": 63 + }, + "Patient Request to See New Provider": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Reqeust To Update LegalCase Status": { + "2024-12-01T00:00:00+02:00": 45 + }, + "Appointment Rescheduled": { + "2024-12-01T00:00:00+02:00": 4 + }, + "How Was Your Visit?": { + "2024-12-01T00:00:00+02:00": 41 + }, + "Assigned as a negotiator": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Appointment No Showed": { + "2024-12-01T00:00:00+02:00": 42 + }, + "A new Medical Record is available": { + "2024-12-01T00:00:00+02:00": 214 + }, + "MedLevel Is Updated": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Appointment Is Confirmed": { + "2024-12-01T00:00:00+02:00": 62 + }, + "Request To Check In Appointment": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Sign request for patient membership application": { + "2024-12-01T00:00:00+02:00": 118 + }, + "Appointment Is Checked In": { + "2024-12-01T00:00:00+02:00": 57 + }, + "Legalcase_is_dropped": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Referral That Need Scheduling": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Legal Case Ended": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "6508ba6e7722fc74ea9637ec": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6468 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6468 + }, + "New chat message received": { + "2024-12-01T00:00:00+02:00": 3570 + }, + "Case Document sent to review": { + "2024-12-01T00:00:00+02:00": 1855 + }, + "Immigrant joins the case": { + "2024-12-01T00:00:00+02:00": 47 + }, + "Case document is blocked": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Case document is ready": { + "2024-12-01T00:00:00+02:00": 704 + }, + "Case Document has error": { + "2024-12-01T00:00:00+02:00": 282 + } + } + }, + "641df7485d9af70da9c29397": { + "$overall": { + "2024-12-01T00:00:00+02:00": 980 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 980 + }, + "common-alerts-email": { + "2024-12-01T00:00:00+02:00": 40 + }, + "common-alerts": { + "2024-12-01T00:00:00+02:00": 609 + }, + "reports": { + "2024-12-01T00:00:00+02:00": 329 + } + } + }, + "66fd558bcf609b1343268e49": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27646 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27646 + }, + "in-app": { + "2024-12-01T00:00:00+02:00": 27646 + } + } + }, + "651eff411df1b46454f4c05a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12181 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12181 + }, + "Team Subscription Athlete Payout": { + "2024-12-01T00:00:00+02:00": 45 + }, + "Fan Review Reminder": { + "2024-12-01T00:00:00+02:00": 57 + }, + "New Athlete Promotion": { + "2024-12-01T00:00:00+02:00": 523 + }, + "Order Cancelled Buyer": { + "2024-12-01T00:00:00+02:00": 75 + }, + "Athlete Eksperience Deactivated": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Athlete Thanked Fan": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Team Subscription Renew Success": { + "2024-12-01T00:00:00+02:00": 127 + }, + "New Team Post": { + "2024-12-01T00:00:00+02:00": 1610 + }, + "Order Fulfilled Buyer": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Athlete Invitation": { + "2024-12-01T00:00:00+02:00": 2444 + }, + "Newsletter Posted": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Order Confirmation Seller": { + "2024-12-01T00:00:00+02:00": 162 + }, + "Team Subscription Unsubscribe": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Team Subscription Refund": { + "2024-12-01T00:00:00+02:00": 108 + }, + "Order Fulfilled Seller": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Team Subscription Purchase Success": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Athlete Order Expiring Reminder": { + "2024-12-01T00:00:00+02:00": 1398 + }, + "Community Notifications": { + "2024-12-01T00:00:00+02:00": 515 + }, + "New Eksperience to Followers": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Team Subscription Newsletter": { + "2024-12-01T00:00:00+02:00": 128 + }, + "New Athletes to Followers": { + "2024-12-01T00:00:00+02:00": 134 + }, + "Order Confirmation Buyer": { + "2024-12-01T00:00:00+02:00": 162 + }, + "Team Subscription Athlete Execution Request": { + "2024-12-01T00:00:00+02:00": 1546 + }, + "Order Cancelled Seller": { + "2024-12-01T00:00:00+02:00": 75 + }, + "Athlete Order Count Reminder": { + "2024-12-01T00:00:00+02:00": 2879 + }, + "Order Accepted": { + "2024-12-01T00:00:00+02:00": 47 + } + } + }, + "658c15eae2d5aed98bef8f80": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10732 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10732 + }, + "Visio Analytics - Notificação de indicadores-chave": { + "2024-12-01T00:00:00+02:00": 5803 + }, + "custom-daily-report-workflow-with-push-notification": { + "2024-12-01T00:00:00+02:00": 3350 + }, + "custom-daily-report-notification-response": { + "2024-12-01T00:00:00+02:00": 1579 + } + } + }, + "655cccfb8c7cd7ff32031773": { + "$overall": { + "2024-12-01T00:00:00+02:00": 649 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 649 + }, + "AccesLog Notification": { + "2024-12-01T00:00:00+02:00": 65 + }, + "LoadUnload Notification": { + "2024-12-01T00:00:00+02:00": 38 + }, + "MovementOrder Notification": { + "2024-12-01T00:00:00+02:00": 396 + }, + "Operation Notification": { + "2024-12-01T00:00:00+02:00": 150 + } + } + }, + "6400caeef591ea2e090f6040": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1351317 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1351317 + }, + "doctorMessage for subscriber 150": { + "2024-12-01T00:00:00+02:00": 22 + }, + "doctorMessage for subscriber 68": { + "2024-12-01T00:00:00+02:00": 32 + }, + "firstTimeShippingConfirmation for subscriber 63": { + "2024-12-01T00:00:00+02:00": 1445 + }, + "firstTimeOrderConfirmation for subscriber 255": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Admin Pharmacy Error": { + "2024-12-01T00:00:00+02:00": 444 + }, + "orderReceipt for subscriber 121": { + "2024-12-01T00:00:00+02:00": 4 + }, + "abandonedCheckout for subscriber 263": { + "2024-12-01T00:00:00+02:00": 37 + }, + "patientWelcome for subscriber 400": { + "2024-12-01T00:00:00+02:00": 6 + }, + "orderConfirmation for subscriber 349": { + "2024-12-01T00:00:00+02:00": 13 + }, + "supportMessage for subscriber 35": { + "2024-12-01T00:00:00+02:00": 33 + }, + "followUpPastDue for subscriber 255": { + "2024-12-01T00:00:00+02:00": 148 + }, + "patientWelcome for subscriber 165": { + "2024-12-01T00:00:00+02:00": 5702 + }, + "patientMagicLink for subscriber 465": { + "2024-12-01T00:00:00+02:00": 31 + }, + "firstTimeNewPrescription for subscriber 143": { + "2024-12-01T00:00:00+02:00": 4131 + }, + "firstTimeOrderConfirmation for subscriber 452": { + "2024-12-01T00:00:00+02:00": 4 + }, + "firstTimeShippingConfirmation for subscriber 549": { + "2024-12-01T00:00:00+02:00": 117 + }, + "prescriptionChanged for subscriber 465": { + "2024-12-01T00:00:00+02:00": 19 + }, + "abandonedCheckout for subscriber 292": { + "2024-12-01T00:00:00+02:00": 11 + }, + "abandonedCheckout for subscriber 4": { + "2024-12-01T00:00:00+02:00": 3291 + }, + "outForDelivery for subscriber 349": { + "2024-12-01T00:00:00+02:00": 19 + }, + "abandonedPostCheckout for subscriber 549": { + "2024-12-01T00:00:00+02:00": 7 + }, + "firstTimeOrderConfirmation for subscriber 161": { + "2024-12-01T00:00:00+02:00": 776 + }, + "patientWelcome for subscriber 455": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderConfirmation for subscriber 542": { + "2024-12-01T00:00:00+02:00": 25 + }, + "shippingUpdate for subscriber 441": { + "2024-12-01T00:00:00+02:00": 233 + }, + "orderConfirmation for subscriber 143": { + "2024-12-01T00:00:00+02:00": 18477 + }, + "treatmentActive for subscriber 400": { + "2024-12-01T00:00:00+02:00": 6 + }, + "firstTimeNewPrescription for subscriber 84": { + "2024-12-01T00:00:00+02:00": 127 + }, + "delivered for subscriber 364": { + "2024-12-01T00:00:00+02:00": 112 + }, + "orderReceipt for subscriber 465": { + "2024-12-01T00:00:00+02:00": 20 + }, + "orderReceipt for subscriber 329": { + "2024-12-01T00:00:00+02:00": 136 + }, + "Admin Webhook Disabled": { + "2024-12-01T00:00:00+02:00": 9 + }, + "shippingUpdate for subscriber 190": { + "2024-12-01T00:00:00+02:00": 92 + }, + "shippingUpdate for subscriber 93": { + "2024-12-01T00:00:00+02:00": 108 + }, + "doctorMessage for subscriber 161": { + "2024-12-01T00:00:00+02:00": 9874 + }, + "Admin New Prescription": { + "2024-12-01T00:00:00+02:00": 41817 + }, + "delivered for subscriber 84": { + "2024-12-01T00:00:00+02:00": 1093 + }, + "orderReceipt for subscriber 400": { + "2024-12-01T00:00:00+02:00": 7 + }, + "newPrescription for subscriber 68": { + "2024-12-01T00:00:00+02:00": 7 + }, + "delivered for subscriber 217": { + "2024-12-01T00:00:00+02:00": 13 + }, + "orderConfirmation for subscriber 190": { + "2024-12-01T00:00:00+02:00": 7 + }, + "patientWelcome for subscriber 292": { + "2024-12-01T00:00:00+02:00": 15 + }, + "orderReceipt for subscriber 428": { + "2024-12-01T00:00:00+02:00": 4 + }, + "orderReceipt for subscriber 551": { + "2024-12-01T00:00:00+02:00": 7 + }, + "newPrescription for subscriber 93": { + "2024-12-01T00:00:00+02:00": 7 + }, + "firstTimeShippingConfirmation for subscriber 37": { + "2024-12-01T00:00:00+02:00": 3301 + }, + "prescriptionChanged for subscriber 378": { + "2024-12-01T00:00:00+02:00": 31 + }, + "firstTimeOrderConfirmation for subscriber 263": { + "2024-12-01T00:00:00+02:00": 10 + }, + "delivered for subscriber 165": { + "2024-12-01T00:00:00+02:00": 4736 + }, + "outForDelivery for subscriber 150": { + "2024-12-01T00:00:00+02:00": 5 + }, + "shippingUpdate for subscriber 143": { + "2024-12-01T00:00:00+02:00": 120408 + }, + "paymentError for subscriber 38": { + "2024-12-01T00:00:00+02:00": 1689 + }, + "orderConfirmation for subscriber 377": { + "2024-12-01T00:00:00+02:00": 26 + }, + "delivered for subscriber 329": { + "2024-12-01T00:00:00+02:00": 130 + }, + "newPrescription for subscriber 63": { + "2024-12-01T00:00:00+02:00": 2700 + }, + "outForDelivery for subscriber 37": { + "2024-12-01T00:00:00+02:00": 13460 + }, + "firstTimeShippingConfirmation for subscriber 217": { + "2024-12-01T00:00:00+02:00": 9 + }, + "firstTimeShippingConfirmation for subscriber 530": { + "2024-12-01T00:00:00+02:00": 56 + }, + "delivered for subscriber 542": { + "2024-12-01T00:00:00+02:00": 76 + }, + "firstTimeShippingConfirmation for subscriber 474": { + "2024-12-01T00:00:00+02:00": 11 + }, + "doctorMessage for subscriber 349": { + "2024-12-01T00:00:00+02:00": 54 + }, + "delivered for subscriber 13": { + "2024-12-01T00:00:00+02:00": 8 + }, + "shippingConfirmation for subscriber 143": { + "2024-12-01T00:00:00+02:00": 17172 + }, + "doctorMessage for subscriber 530": { + "2024-12-01T00:00:00+02:00": 104 + }, + "orderReceipt for subscriber 35": { + "2024-12-01T00:00:00+02:00": 12 + }, + "First Time Order Confirmation": { + "2024-12-01T00:00:00+02:00": 78 + }, + "orderReceipt for subscriber 238": { + "2024-12-01T00:00:00+02:00": 8 + }, + "abandonedPostCheckout for subscriber 320": { + "2024-12-01T00:00:00+02:00": 6 + }, + "orderConfirmation for subscriber 255": { + "2024-12-01T00:00:00+02:00": 147 + }, + "doctorMessage for subscriber 165": { + "2024-12-01T00:00:00+02:00": 10732 + }, + "firstTimeOrderConfirmation for subscriber 523": { + "2024-12-01T00:00:00+02:00": 22 + }, + "orderConfirmation for subscriber 523": { + "2024-12-01T00:00:00+02:00": 7 + }, + "doctorMessage for subscriber 256": { + "2024-12-01T00:00:00+02:00": 361 + }, + "supportMessage for subscriber 38": { + "2024-12-01T00:00:00+02:00": 17 + }, + "delivered for subscriber 9": { + "2024-12-01T00:00:00+02:00": 14 + }, + "supportMessage for subscriber 542": { + "2024-12-01T00:00:00+02:00": 67 + }, + "firstTimeNewPrescription for subscriber 523": { + "2024-12-01T00:00:00+02:00": 11 + }, + "supportMessage for subscriber 349": { + "2024-12-01T00:00:00+02:00": 9 + }, + "shippingUpdate for subscriber 428": { + "2024-12-01T00:00:00+02:00": 26 + }, + "abandonedCheckout for subscriber 9": { + "2024-12-01T00:00:00+02:00": 28 + }, + "passwordReset for subscriber 37": { + "2024-12-01T00:00:00+02:00": 1161 + }, + "shippingConfirmation for subscriber 4": { + "2024-12-01T00:00:00+02:00": 1829 + }, + "Password Reset for subscriber 542": { + "2024-12-01T00:00:00+02:00": 17 + }, + "doctorMessage for subscriber 441": { + "2024-12-01T00:00:00+02:00": 44 + }, + "prescriptionChanged for subscriber 549": { + "2024-12-01T00:00:00+02:00": 58 + }, + "firstTimeNewPrescription for subscriber 378": { + "2024-12-01T00:00:00+02:00": 14 + }, + "orderConfirmation for subscriber 238": { + "2024-12-01T00:00:00+02:00": 9 + }, + "abandonedCheckout for subscriber 13": { + "2024-12-01T00:00:00+02:00": 28 + }, + "shippingUpdate for subscriber 256": { + "2024-12-01T00:00:00+02:00": 1505 + }, + "patientMagicLink for subscriber 4": { + "2024-12-01T00:00:00+02:00": 382 + }, + "outForDelivery for subscriber 384": { + "2024-12-01T00:00:00+02:00": 5 + }, + "abandonedCheckout for subscriber 165": { + "2024-12-01T00:00:00+02:00": 6329 + }, + "orderReceipt for subscriber 111": { + "2024-12-01T00:00:00+02:00": 13 + }, + "newPrescription for subscriber 143": { + "2024-12-01T00:00:00+02:00": 16361 + }, + "abandonedCheckout for subscriber 415": { + "2024-12-01T00:00:00+02:00": 11 + }, + "newPrescription for subscriber 238": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderReceipt for subscriber 452": { + "2024-12-01T00:00:00+02:00": 4 + }, + "passwordReset for subscriber 217": { + "2024-12-01T00:00:00+02:00": 4 + }, + "patientMagicLink for subscriber 555": { + "2024-12-01T00:00:00+02:00": 4 + }, + "doctorMessage for subscriber 384": { + "2024-12-01T00:00:00+02:00": 21 + }, + "delivered for subscriber 143": { + "2024-12-01T00:00:00+02:00": 14151 + }, + "followUpPastDue for subscriber 349": { + "2024-12-01T00:00:00+02:00": 12 + }, + "shippingConfirmation for subscriber 275": { + "2024-12-01T00:00:00+02:00": 63 + }, + "supportMessage for subscriber 53": { + "2024-12-01T00:00:00+02:00": 6 + }, + "doctorMessage for subscriber 73": { + "2024-12-01T00:00:00+02:00": 54 + }, + "orderReceipt for subscriber 13": { + "2024-12-01T00:00:00+02:00": 8 + }, + "followUpPastDue for subscriber 150": { + "2024-12-01T00:00:00+02:00": 4 + }, + "prescriptionChanged for subscriber 84": { + "2024-12-01T00:00:00+02:00": 597 + }, + "shippingConfirmation for subscriber 266": { + "2024-12-01T00:00:00+02:00": 161 + }, + "abandonedCheckout for subscriber 329": { + "2024-12-01T00:00:00+02:00": 2000 + }, + "patientWelcome for subscriber 406": { + "2024-12-01T00:00:00+02:00": 187 + }, + "shippingUpdate for subscriber 217": { + "2024-12-01T00:00:00+02:00": 109 + }, + "abandonedCheckout for subscriber 377": { + "2024-12-01T00:00:00+02:00": 63 + }, + "abandonedPostCheckout for subscriber 364": { + "2024-12-01T00:00:00+02:00": 6 + }, + "orderConfirmation for subscriber 53": { + "2024-12-01T00:00:00+02:00": 41 + }, + "orderReceipt for subscriber 364": { + "2024-12-01T00:00:00+02:00": 112 + }, + "supportMessage for subscriber 68": { + "2024-12-01T00:00:00+02:00": 8 + }, + "orderReceipt for subscriber 614": { + "2024-12-01T00:00:00+02:00": 12 + }, + "prescriptionChanged for subscriber 53": { + "2024-12-01T00:00:00+02:00": 17 + }, + "abandonedCheckout for subscriber 320": { + "2024-12-01T00:00:00+02:00": 201 + }, + "shippingUpdate for subscriber 13": { + "2024-12-01T00:00:00+02:00": 91 + }, + "firstTimeOrderConfirmation for subscriber 13": { + "2024-12-01T00:00:00+02:00": 6 + }, + "abandonedCheckout for subscriber 523": { + "2024-12-01T00:00:00+02:00": 63 + }, + "patientWelcome for subscriber 266": { + "2024-12-01T00:00:00+02:00": 311 + }, + "shippingConfirmation for subscriber 111": { + "2024-12-01T00:00:00+02:00": 13 + }, + "outForDelivery for subscriber 53": { + "2024-12-01T00:00:00+02:00": 26 + }, + "prescriptionChanged for subscriber 349": { + "2024-12-01T00:00:00+02:00": 10 + }, + "supportMessage for subscriber 73": { + "2024-12-01T00:00:00+02:00": 51 + }, + "followUpPastDue for subscriber 604": { + "2024-12-01T00:00:00+02:00": 8 + }, + "newPrescription for subscriber 384": { + "2024-12-01T00:00:00+02:00": 4 + }, + "shippingUpdate for subscriber 465": { + "2024-12-01T00:00:00+02:00": 113 + }, + "Password Reset for subscriber 320": { + "2024-12-01T00:00:00+02:00": 9 + }, + "firstTimeOrderConfirmation for subscriber 256": { + "2024-12-01T00:00:00+02:00": 76 + }, + "shippingUpdate for subscriber 463": { + "2024-12-01T00:00:00+02:00": 32 + }, + "shippingConfirmation for subscriber 377": { + "2024-12-01T00:00:00+02:00": 42 + }, + "supportMessage for subscriber 150": { + "2024-12-01T00:00:00+02:00": 5 + }, + "shippingConfirmation for subscriber 320": { + "2024-12-01T00:00:00+02:00": 58 + }, + "shippingConfirmation for subscriber 73": { + "2024-12-01T00:00:00+02:00": 14 + }, + "followUpDue for subscriber 63": { + "2024-12-01T00:00:00+02:00": 2810 + }, + "followUpDue for subscriber 542": { + "2024-12-01T00:00:00+02:00": 25 + }, + "paymentError for subscriber 63": { + "2024-12-01T00:00:00+02:00": 118 + }, + "patientWelcome for subscriber 255": { + "2024-12-01T00:00:00+02:00": 150 + }, + "outForDelivery for subscriber 452": { + "2024-12-01T00:00:00+02:00": 5 + }, + "shippingUpdate for subscriber 84": { + "2024-12-01T00:00:00+02:00": 8394 + }, + "followUpDue for subscriber 329": { + "2024-12-01T00:00:00+02:00": 13 + }, + "followUpDue for subscriber 455": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Admin Chargebacks and Disputes": { + "2024-12-01T00:00:00+02:00": 232 + }, + "firstTimeShippingConfirmation for subscriber 255": { + "2024-12-01T00:00:00+02:00": 32 + }, + "abandonedCheckout for subscriber 428": { + "2024-12-01T00:00:00+02:00": 26 + }, + "orderReceipt for subscriber 441": { + "2024-12-01T00:00:00+02:00": 24 + }, + "patientWelcome for subscriber 150": { + "2024-12-01T00:00:00+02:00": 4 + }, + "outForDelivery for subscriber 143": { + "2024-12-01T00:00:00+02:00": 13701 + }, + "supportMessage for subscriber 63": { + "2024-12-01T00:00:00+02:00": 3316 + }, + "supportMessage for subscriber 530": { + "2024-12-01T00:00:00+02:00": 111 + }, + "shippingUpdate for subscriber 73": { + "2024-12-01T00:00:00+02:00": 209 + }, + "orderReceipt for subscriber 77": { + "2024-12-01T00:00:00+02:00": 131 + }, + "firstTimeNewPrescription for subscriber 406": { + "2024-12-01T00:00:00+02:00": 57 + }, + "firstTimeOrderConfirmation for subscriber 614": { + "2024-12-01T00:00:00+02:00": 7 + }, + "shippingConfirmation for subscriber 329": { + "2024-12-01T00:00:00+02:00": 16 + }, + "delivered for subscriber 150": { + "2024-12-01T00:00:00+02:00": 6 + }, + "paymentError for subscriber 406": { + "2024-12-01T00:00:00+02:00": 5 + }, + "patientMagicLink for subscriber 84": { + "2024-12-01T00:00:00+02:00": 292 + }, + "orderConfirmation for subscriber 150": { + "2024-12-01T00:00:00+02:00": 7 + }, + "newPrescription for subscriber 378": { + "2024-12-01T00:00:00+02:00": 12 + }, + "shippingUpdate for subscriber 37": { + "2024-12-01T00:00:00+02:00": 128900 + }, + "patientWelcome for subscriber 349": { + "2024-12-01T00:00:00+02:00": 121 + }, + "shippingUpdate for subscriber 474": { + "2024-12-01T00:00:00+02:00": 113 + }, + "outForDelivery for subscriber 441": { + "2024-12-01T00:00:00+02:00": 25 + }, + "followUpDue for subscriber 266": { + "2024-12-01T00:00:00+02:00": 205 + }, + "doctorMessage for subscriber 549": { + "2024-12-01T00:00:00+02:00": 212 + }, + "newRefill for subscriber 542": { + "2024-12-01T00:00:00+02:00": 18 + }, + "outForDelivery for subscriber 428": { + "2024-12-01T00:00:00+02:00": 4 + }, + "shippingUpdate for subscriber 384": { + "2024-12-01T00:00:00+02:00": 53 + }, + "patientWelcome for subscriber 452": { + "2024-12-01T00:00:00+02:00": 23 + }, + "patientMagicLink for subscriber 255": { + "2024-12-01T00:00:00+02:00": 32 + }, + "passwordReset for subscriber 161": { + "2024-12-01T00:00:00+02:00": 436 + }, + "patientMagicLink for subscriber 530": { + "2024-12-01T00:00:00+02:00": 29 + }, + "shippingConfirmation for subscriber 455": { + "2024-12-01T00:00:00+02:00": 13 + }, + "prescriptionChanged for subscriber 37": { + "2024-12-01T00:00:00+02:00": 505 + }, + "prescriptionChanged for subscriber 143": { + "2024-12-01T00:00:00+02:00": 825 + }, + "newPrescription for subscriber 190": { + "2024-12-01T00:00:00+02:00": 7 + }, + "prescriptionChanged for subscriber 377": { + "2024-12-01T00:00:00+02:00": 41 + }, + "newRefill for subscriber 84": { + "2024-12-01T00:00:00+02:00": 72 + }, + "shippingUpdate for subscriber 329": { + "2024-12-01T00:00:00+02:00": 943 + }, + "orderConfirmation for subscriber 465": { + "2024-12-01T00:00:00+02:00": 6 + }, + "doctorMessage for subscriber 638": { + "2024-12-01T00:00:00+02:00": 4 + }, + "doctorMessage for subscriber 93": { + "2024-12-01T00:00:00+02:00": 40 + }, + "shippingConfirmation for subscriber 292": { + "2024-12-01T00:00:00+02:00": 4 + }, + "firstTimeShippingConfirmation for subscriber 320": { + "2024-12-01T00:00:00+02:00": 23 + }, + "doctorMessage for subscriber 455": { + "2024-12-01T00:00:00+02:00": 33 + }, + "followUpDue for subscriber 190": { + "2024-12-01T00:00:00+02:00": 10 + }, + "paymentError for subscriber 329": { + "2024-12-01T00:00:00+02:00": 17 + }, + "passwordReset for subscriber 530": { + "2024-12-01T00:00:00+02:00": 24 + }, + "patientMagicLink for subscriber 73": { + "2024-12-01T00:00:00+02:00": 7 + }, + "firstTimeShippingConfirmation for subscriber 349": { + "2024-12-01T00:00:00+02:00": 16 + }, + "outForDelivery for subscriber 238": { + "2024-12-01T00:00:00+02:00": 9 + }, + "patientWelcome for subscriber 9": { + "2024-12-01T00:00:00+02:00": 27 + }, + "abandonedCheckout for subscriber 68": { + "2024-12-01T00:00:00+02:00": 13 + }, + "orderConfirmation for subscriber 256": { + "2024-12-01T00:00:00+02:00": 71 + }, + "abandonedPostCheckout for subscriber 256": { + "2024-12-01T00:00:00+02:00": 18 + }, + "followUpPastDue for subscriber 37": { + "2024-12-01T00:00:00+02:00": 7007 + }, + "patientWelcome for subscriber 378": { + "2024-12-01T00:00:00+02:00": 89 + }, + "abandonedCheckout for subscriber 629": { + "2024-12-01T00:00:00+02:00": 11 + }, + "doctorMessage for subscriber 400": { + "2024-12-01T00:00:00+02:00": 11 + }, + "newRefill for subscriber 256": { + "2024-12-01T00:00:00+02:00": 6 + }, + "abandonedPostCheckout for subscriber 84": { + "2024-12-01T00:00:00+02:00": 79 + }, + "followUpDue for subscriber 349": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Admin New Patient": { + "2024-12-01T00:00:00+02:00": 57622 + }, + "doctorMessage for subscriber 292": { + "2024-12-01T00:00:00+02:00": 16 + }, + "passwordReset for subscriber 320": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Admin Dispute Due Soon": { + "2024-12-01T00:00:00+02:00": 370 + }, + "firstTimeOrderConfirmation for subscriber 542": { + "2024-12-01T00:00:00+02:00": 66 + }, + "outForDelivery for subscriber 13": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Patient Welcome for subscriber 350": { + "2024-12-01T00:00:00+02:00": 48 + }, + "firstTimeOrderConfirmation for subscriber 266": { + "2024-12-01T00:00:00+02:00": 67 + }, + "patientMagicLink for subscriber 143": { + "2024-12-01T00:00:00+02:00": 2945 + }, + "followUpPastDue for subscriber 84": { + "2024-12-01T00:00:00+02:00": 604 + }, + "patientMagicLink for subscriber 349": { + "2024-12-01T00:00:00+02:00": 5 + }, + "followUpPastDue for subscriber 165": { + "2024-12-01T00:00:00+02:00": 1825 + }, + "abandonedCheckout for subscriber 256": { + "2024-12-01T00:00:00+02:00": 170 + }, + "followUpDue for subscriber 275": { + "2024-12-01T00:00:00+02:00": 35 + }, + "patientMagicLink for subscriber 37": { + "2024-12-01T00:00:00+02:00": 2287 + }, + "doctorMessage for subscriber 266": { + "2024-12-01T00:00:00+02:00": 467 + }, + "followUpDue for subscriber 378": { + "2024-12-01T00:00:00+02:00": 18 + }, + "newRefill for subscriber 441": { + "2024-12-01T00:00:00+02:00": 11 + }, + "shippingUpdate for subscriber 161": { + "2024-12-01T00:00:00+02:00": 30487 + }, + "newPrescription for subscriber 406": { + "2024-12-01T00:00:00+02:00": 4 + }, + "outForDelivery for subscriber 73": { + "2024-12-01T00:00:00+02:00": 16 + }, + "patientWelcome for subscriber 4": { + "2024-12-01T00:00:00+02:00": 2872 + }, + "First Time Shipping Confirmation for subscriber 614": { + "2024-12-01T00:00:00+02:00": 4 + }, + "patientWelcome for subscriber 614": { + "2024-12-01T00:00:00+02:00": 24 + }, + "patientMagicLink for subscriber 266": { + "2024-12-01T00:00:00+02:00": 41 + }, + "doctorMessage for subscriber 523": { + "2024-12-01T00:00:00+02:00": 68 + }, + "orderConfirmation for subscriber 530": { + "2024-12-01T00:00:00+02:00": 6 + }, + "First Time New Prescription for subscriber 551": { + "2024-12-01T00:00:00+02:00": 7 + }, + "abandonedPostCheckout for subscriber 465": { + "2024-12-01T00:00:00+02:00": 15 + }, + "shippingConfirmation for subscriber 384": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderReceipt for subscriber 292": { + "2024-12-01T00:00:00+02:00": 5 + }, + "prescriptionChanged for subscriber 63": { + "2024-12-01T00:00:00+02:00": 82 + }, + "followUpPastDue for subscriber 364": { + "2024-12-01T00:00:00+02:00": 34 + }, + "First Time New Prescription for subscriber 614": { + "2024-12-01T00:00:00+02:00": 6 + }, + "patientWelcome for subscriber 63": { + "2024-12-01T00:00:00+02:00": 9113 + }, + "paymentError for subscriber 4": { + "2024-12-01T00:00:00+02:00": 24 + }, + "orderCanceled for subscriber 200": { + "2024-12-01T00:00:00+02:00": 40 + }, + "shippingUpdate for subscriber 68": { + "2024-12-01T00:00:00+02:00": 47 + }, + "paymentError for subscriber 378": { + "2024-12-01T00:00:00+02:00": 4 + }, + "orderCanceled for subscriber 378": { + "2024-12-01T00:00:00+02:00": 4 + }, + "passwordReset for subscriber 77": { + "2024-12-01T00:00:00+02:00": 29 + }, + "patientWelcome for subscriber 320": { + "2024-12-01T00:00:00+02:00": 61 + }, + "patientWelcome for subscriber 275": { + "2024-12-01T00:00:00+02:00": 5 + }, + "abandonedPostCheckout for subscriber 63": { + "2024-12-01T00:00:00+02:00": 299 + }, + "orderCanceled for subscriber 349": { + "2024-12-01T00:00:00+02:00": 6 + }, + "orderConfirmation for subscriber 217": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderReceipt for subscriber 217": { + "2024-12-01T00:00:00+02:00": 16 + }, + "patientWelcome for subscriber 143": { + "2024-12-01T00:00:00+02:00": 14929 + }, + "Out For Delivery for subscriber 364": { + "2024-12-01T00:00:00+02:00": 106 + }, + "Follow Up Past Due": { + "2024-12-01T00:00:00+02:00": 1196 + }, + "outForDelivery for subscriber 217": { + "2024-12-01T00:00:00+02:00": 13 + }, + "shippingUpdate for subscriber 292": { + "2024-12-01T00:00:00+02:00": 36 + }, + "orderReceipt for subscriber 200": { + "2024-12-01T00:00:00+02:00": 592 + }, + "orderConfirmation for subscriber 266": { + "2024-12-01T00:00:00+02:00": 105 + }, + "outForDelivery for subscriber 165": { + "2024-12-01T00:00:00+02:00": 4447 + }, + "followUpDue for subscriber 255": { + "2024-12-01T00:00:00+02:00": 178 + }, + "delivered for subscriber 530": { + "2024-12-01T00:00:00+02:00": 33 + }, + "patientMagicLink for subscriber 161": { + "2024-12-01T00:00:00+02:00": 422 + }, + "patientWelcome for subscriber 551": { + "2024-12-01T00:00:00+02:00": 61 + }, + "patientWelcome for subscriber 217": { + "2024-12-01T00:00:00+02:00": 50 + }, + "abandonedCheckout for subscriber 238": { + "2024-12-01T00:00:00+02:00": 15 + }, + "shippingUpdate for subscriber 77": { + "2024-12-01T00:00:00+02:00": 875 + }, + "supportMessage for subscriber 614": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Admin Daily Report": { + "2024-12-01T00:00:00+02:00": 170 + }, + "patientMagicLink for subscriber 263": { + "2024-12-01T00:00:00+02:00": 6 + }, + "shippingUpdate for subscriber 266": { + "2024-12-01T00:00:00+02:00": 1124 + }, + "patientWelcome for subscriber 555": { + "2024-12-01T00:00:00+02:00": 36 + }, + "orderConfirmation for subscriber 13": { + "2024-12-01T00:00:00+02:00": 6 + }, + "abandonedCheckout for subscriber 161": { + "2024-12-01T00:00:00+02:00": 6238 + }, + "orderReceipt for subscriber 549": { + "2024-12-01T00:00:00+02:00": 82 + }, + "patientMagicLink for subscriber 165": { + "2024-12-01T00:00:00+02:00": 643 + }, + "abandonedCheckout for subscriber 73": { + "2024-12-01T00:00:00+02:00": 35 + }, + "patientWelcome for subscriber 190": { + "2024-12-01T00:00:00+02:00": 6 + }, + "shippingConfirmation for subscriber 349": { + "2024-12-01T00:00:00+02:00": 19 + }, + "orderReceipt for subscriber 474": { + "2024-12-01T00:00:00+02:00": 13 + }, + "Patient Magic Link for subscriber 542": { + "2024-12-01T00:00:00+02:00": 38 + }, + "abandonedPostCheckout for subscriber 165": { + "2024-12-01T00:00:00+02:00": 224 + }, + "firstTimeShippingConfirmation for subscriber 111": { + "2024-12-01T00:00:00+02:00": 4 + }, + "abandonedCheckout for subscriber 555": { + "2024-12-01T00:00:00+02:00": 43 + }, + "patientWelcome for subscriber 68": { + "2024-12-01T00:00:00+02:00": 13 + }, + "firstTimeOrderConfirmation for subscriber 329": { + "2024-12-01T00:00:00+02:00": 157 + }, + "custom in app messages": { + "2024-12-01T00:00:00+02:00": 745 + }, + "abandonedPostCheckout for subscriber 37": { + "2024-12-01T00:00:00+02:00": 842 + }, + "Admin Patient Message": { + "2024-12-01T00:00:00+02:00": 41446 + }, + "firstTimeOrderConfirmation for subscriber 549": { + "2024-12-01T00:00:00+02:00": 85 + }, + "doctorMessage for subscriber 329": { + "2024-12-01T00:00:00+02:00": 438 + }, + "doctorMessage for subscriber 53": { + "2024-12-01T00:00:00+02:00": 138 + }, + "followUpPastDue for subscriber 542": { + "2024-12-01T00:00:00+02:00": 18 + }, + "prescriptionChanged for subscriber 364": { + "2024-12-01T00:00:00+02:00": 48 + }, + "followUpPastDue for subscriber 143": { + "2024-12-01T00:00:00+02:00": 13732 + }, + "delivered for subscriber 349": { + "2024-12-01T00:00:00+02:00": 21 + }, + "firstTimeOrderConfirmation for subscriber 196": { + "2024-12-01T00:00:00+02:00": 11 + }, + "shippingConfirmation for subscriber 53": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Admin Refund": { + "2024-12-01T00:00:00+02:00": 3465 + }, + "prescriptionChanged for subscriber 275": { + "2024-12-01T00:00:00+02:00": 23 + }, + "patientMagicLink for subscriber 329": { + "2024-12-01T00:00:00+02:00": 87 + }, + "orderReceipt for subscriber 377": { + "2024-12-01T00:00:00+02:00": 55 + }, + "doctorMessage for subscriber 614": { + "2024-12-01T00:00:00+02:00": 33 + }, + "doctorMessage for subscriber 551": { + "2024-12-01T00:00:00+02:00": 25 + }, + "orderCanceled for subscriber 266": { + "2024-12-01T00:00:00+02:00": 19 + }, + "shippingConfirmation for subscriber 84": { + "2024-12-01T00:00:00+02:00": 1127 + }, + "doctorMessage for subscriber 35": { + "2024-12-01T00:00:00+02:00": 15 + }, + "newPrescription for subscriber 364": { + "2024-12-01T00:00:00+02:00": 30 + }, + "abandonedPostCheckout for subscriber 530": { + "2024-12-01T00:00:00+02:00": 7 + }, + "firstTimeShippingConfirmation for subscriber 523": { + "2024-12-01T00:00:00+02:00": 26 + }, + "delivered for subscriber 465": { + "2024-12-01T00:00:00+02:00": 15 + }, + "firstTimeOrderConfirmation for subscriber 143": { + "2024-12-01T00:00:00+02:00": 5102 + }, + "followUpPastDue for subscriber 275": { + "2024-12-01T00:00:00+02:00": 27 + }, + "firstTimeShippingConfirmation for subscriber 378": { + "2024-12-01T00:00:00+02:00": 52 + }, + "Shipping Update for subscriber 542": { + "2024-12-01T00:00:00+02:00": 773 + }, + "outForDelivery for subscriber 455": { + "2024-12-01T00:00:00+02:00": 14 + }, + "orderConfirmation for subscriber 364": { + "2024-12-01T00:00:00+02:00": 43 + }, + "shippingConfirmation for subscriber 37": { + "2024-12-01T00:00:00+02:00": 14952 + }, + "followUpDue for subscriber 549": { + "2024-12-01T00:00:00+02:00": 5 + }, + "followUpDue for subscriber 150": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Admin Patient Payment Failed": { + "2024-12-01T00:00:00+02:00": 3761 + }, + "abandonedCheckout for subscriber 384": { + "2024-12-01T00:00:00+02:00": 14 + }, + "patientWelcome for subscriber 196": { + "2024-12-01T00:00:00+02:00": 24 + }, + "New Refill for subscriber 614": { + "2024-12-01T00:00:00+02:00": 4 + }, + "First Time New Prescription for subscriber 542": { + "2024-12-01T00:00:00+02:00": 49 + }, + "abandonedPostCheckout for subscriber 255": { + "2024-12-01T00:00:00+02:00": 7 + }, + "patientWelcome for subscriber 329": { + "2024-12-01T00:00:00+02:00": 1635 + }, + "doctorMessage for subscriber 320": { + "2024-12-01T00:00:00+02:00": 130 + }, + "orderReceipt for subscriber 263": { + "2024-12-01T00:00:00+02:00": 47 + }, + "doctorMessage for subscriber 63": { + "2024-12-01T00:00:00+02:00": 11239 + }, + "patientWelcome for subscriber 13": { + "2024-12-01T00:00:00+02:00": 14 + }, + "delivered for subscriber 53": { + "2024-12-01T00:00:00+02:00": 29 + }, + "Shipping Update for subscriber 274": { + "2024-12-01T00:00:00+02:00": 4 + }, + "abandonedCheckout for subscriber 84": { + "2024-12-01T00:00:00+02:00": 3633 + }, + "Treatment Active": { + "2024-12-01T00:00:00+02:00": 3324 + }, + "orderCanceled for subscriber 84": { + "2024-12-01T00:00:00+02:00": 91 + }, + "supportMessage for subscriber 255": { + "2024-12-01T00:00:00+02:00": 171 + }, + "followUpPastDue for subscriber 329": { + "2024-12-01T00:00:00+02:00": 14 + }, + "newPrescription for subscriber 150": { + "2024-12-01T00:00:00+02:00": 6 + }, + "passwordReset for subscriber 4": { + "2024-12-01T00:00:00+02:00": 337 + }, + "orderConfirmation for subscriber 4": { + "2024-12-01T00:00:00+02:00": 1054 + }, + "shippingUpdate for subscriber 400": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Admin Pharmacy Delay": { + "2024-12-01T00:00:00+02:00": 674 + }, + "followUpDue for subscriber 523": { + "2024-12-01T00:00:00+02:00": 11 + }, + "orderReceipt for subscriber 165": { + "2024-12-01T00:00:00+02:00": 4682 + }, + "orderCanceled for subscriber 542": { + "2024-12-01T00:00:00+02:00": 13 + }, + "followUpPastDue for subscriber 378": { + "2024-12-01T00:00:00+02:00": 15 + }, + "followUpPastDue for subscriber 523": { + "2024-12-01T00:00:00+02:00": 9 + }, + "newRefill for subscriber 143": { + "2024-12-01T00:00:00+02:00": 709 + }, + "shippingUpdate for subscriber 255": { + "2024-12-01T00:00:00+02:00": 1178 + }, + "abandonedCheckout for subscriber 455": { + "2024-12-01T00:00:00+02:00": 20 + }, + "outForDelivery for subscriber 38": { + "2024-12-01T00:00:00+02:00": 338 + }, + "outForDelivery for subscriber 378": { + "2024-12-01T00:00:00+02:00": 51 + }, + "treatmentActive for subscriber 542": { + "2024-12-01T00:00:00+02:00": 11 + }, + "orderCanceled for subscriber 364": { + "2024-12-01T00:00:00+02:00": 13 + }, + "supportMessage for subscriber 275": { + "2024-12-01T00:00:00+02:00": 12 + }, + "orderCanceled for subscriber 329": { + "2024-12-01T00:00:00+02:00": 23 + }, + "shippingConfirmation for subscriber 93": { + "2024-12-01T00:00:00+02:00": 19 + }, + "patientWelcome for subscriber 549": { + "2024-12-01T00:00:00+02:00": 242 + }, + "orderReceipt for subscriber 406": { + "2024-12-01T00:00:00+02:00": 94 + }, + "prescriptionChanged for subscriber 329": { + "2024-12-01T00:00:00+02:00": 122 + }, + "patientMagicLink for subscriber 63": { + "2024-12-01T00:00:00+02:00": 1178 + }, + "orderReceipt for subscriber 523": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Patient Magic Link for subscriber 350": { + "2024-12-01T00:00:00+02:00": 4 + }, + "shippingConfirmation for subscriber 406": { + "2024-12-01T00:00:00+02:00": 35 + }, + "doctorMessage for subscriber 238": { + "2024-12-01T00:00:00+02:00": 30 + }, + "supportMessage for subscriber 165": { + "2024-12-01T00:00:00+02:00": 2378 + }, + "abandonedCheckout for subscriber 275": { + "2024-12-01T00:00:00+02:00": 17 + }, + "patientMagicLink for subscriber 38": { + "2024-12-01T00:00:00+02:00": 9 + }, + "orderReceipt for subscriber 93": { + "2024-12-01T00:00:00+02:00": 16 + }, + "First Time New Prescription for subscriber 165": { + "2024-12-01T00:00:00+02:00": 852 + }, + "abandonedCheckout for subscriber 217": { + "2024-12-01T00:00:00+02:00": 52 + }, + "firstTimeOrderConfirmation for subscriber 400": { + "2024-12-01T00:00:00+02:00": 7 + }, + "shippingConfirmation for subscriber 364": { + "2024-12-01T00:00:00+02:00": 51 + }, + "supportMessage for subscriber 161": { + "2024-12-01T00:00:00+02:00": 937 + }, + "firstTimeShippingConfirmation for subscriber 441": { + "2024-12-01T00:00:00+02:00": 49 + }, + "supportMessage for subscriber 266": { + "2024-12-01T00:00:00+02:00": 44 + }, + "newRefill for subscriber 384": { + "2024-12-01T00:00:00+02:00": 4 + }, + "doctorMessage for subscriber 217": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Patient Welcome for subscriber 658": { + "2024-12-01T00:00:00+02:00": 9 + }, + "doctorMessage for subscriber 37": { + "2024-12-01T00:00:00+02:00": 28686 + }, + "Admin Pharmacy Update": { + "2024-12-01T00:00:00+02:00": 56 + }, + "followUpPastDue for subscriber 551": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Delivered for subscriber 549": { + "2024-12-01T00:00:00+02:00": 67 + }, + "delivered for subscriber 523": { + "2024-12-01T00:00:00+02:00": 27 + }, + "firstTimeShippingConfirmation for subscriber 77": { + "2024-12-01T00:00:00+02:00": 12 + }, + "followUpDue for subscriber 377": { + "2024-12-01T00:00:00+02:00": 33 + }, + "orderConfirmation for subscriber 93": { + "2024-12-01T00:00:00+02:00": 16 + }, + "newRefill for subscriber 9": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Patient Welcome for subscriber 659": { + "2024-12-01T00:00:00+02:00": 4 + }, + "patientWelcome for subscriber 441": { + "2024-12-01T00:00:00+02:00": 6 + }, + "supportMessage for subscriber 143": { + "2024-12-01T00:00:00+02:00": 11399 + }, + "passwordReset for subscriber 84": { + "2024-12-01T00:00:00+02:00": 111 + }, + "orderCanceled for subscriber 63": { + "2024-12-01T00:00:00+02:00": 451 + }, + "doctorMessage for subscriber 84": { + "2024-12-01T00:00:00+02:00": 2706 + }, + "patientMagicLink for subscriber 77": { + "2024-12-01T00:00:00+02:00": 19 + }, + "shippingUpdate for subscriber 200": { + "2024-12-01T00:00:00+02:00": 5321 + }, + "New Refill": { + "2024-12-01T00:00:00+02:00": 409 + }, + "followUpDue for subscriber 84": { + "2024-12-01T00:00:00+02:00": 724 + }, + "orderConfirmation for subscriber 161": { + "2024-12-01T00:00:00+02:00": 3341 + }, + "abandonedCheckout for subscriber 551": { + "2024-12-01T00:00:00+02:00": 56 + }, + "outForDelivery for subscriber 68": { + "2024-12-01T00:00:00+02:00": 5 + }, + "shippingConfirmation for subscriber 68": { + "2024-12-01T00:00:00+02:00": 6 + }, + "doctorMessage for subscriber 111": { + "2024-12-01T00:00:00+02:00": 36 + }, + "orderConfirmation for subscriber 111": { + "2024-12-01T00:00:00+02:00": 8 + }, + "orderCanceled for subscriber 143": { + "2024-12-01T00:00:00+02:00": 2549 + }, + "doctorMessage for subscriber 255": { + "2024-12-01T00:00:00+02:00": 390 + }, + "delivered for subscriber 190": { + "2024-12-01T00:00:00+02:00": 9 + }, + "patientMagicLink for subscriber 364": { + "2024-12-01T00:00:00+02:00": 15 + }, + "labResulted for subscriber 441": { + "2024-12-01T00:00:00+02:00": 16 + }, + "abandonedCheckout for subscriber 266": { + "2024-12-01T00:00:00+02:00": 405 + }, + "abandonedCheckout for subscriber 549": { + "2024-12-01T00:00:00+02:00": 217 + }, + "supportMessage for subscriber 465": { + "2024-12-01T00:00:00+02:00": 11 + }, + "shippingUpdate for subscriber 150": { + "2024-12-01T00:00:00+02:00": 38 + }, + "firstTimeShippingConfirmation for subscriber 400": { + "2024-12-01T00:00:00+02:00": 5 + }, + "First Time New Prescription": { + "2024-12-01T00:00:00+02:00": 4053 + }, + "newRefill for subscriber 406": { + "2024-12-01T00:00:00+02:00": 36 + }, + "outForDelivery for subscriber 530": { + "2024-12-01T00:00:00+02:00": 31 + }, + "firstTimeShippingConfirmation for subscriber 73": { + "2024-12-01T00:00:00+02:00": 5 + }, + "outForDelivery for subscriber 93": { + "2024-12-01T00:00:00+02:00": 12 + }, + "shippingUpdate for subscriber 377": { + "2024-12-01T00:00:00+02:00": 389 + }, + "shippingConfirmation for subscriber 255": { + "2024-12-01T00:00:00+02:00": 318 + }, + "orderConfirmation for subscriber 320": { + "2024-12-01T00:00:00+02:00": 62 + }, + "outForDelivery for subscriber 200": { + "2024-12-01T00:00:00+02:00": 517 + }, + "abandonedCheckout for subscriber 465": { + "2024-12-01T00:00:00+02:00": 792 + }, + "delivered for subscriber 256": { + "2024-12-01T00:00:00+02:00": 143 + }, + "newPrescription for subscriber 77": { + "2024-12-01T00:00:00+02:00": 24 + }, + "orderConfirmation for subscriber 37": { + "2024-12-01T00:00:00+02:00": 9100 + }, + "followUpDue for subscriber 13": { + "2024-12-01T00:00:00+02:00": 4 + }, + "orderReceipt for subscriber 275": { + "2024-12-01T00:00:00+02:00": 43 + }, + "orderConfirmation for subscriber 200": { + "2024-12-01T00:00:00+02:00": 22 + }, + "passwordReset for subscriber 465": { + "2024-12-01T00:00:00+02:00": 22 + }, + "firstTimeOrderConfirmation for subscriber 200": { + "2024-12-01T00:00:00+02:00": 197 + }, + "shippingUpdate for subscriber 238": { + "2024-12-01T00:00:00+02:00": 98 + }, + "delivered for subscriber 161": { + "2024-12-01T00:00:00+02:00": 3702 + }, + "doctorMessage for subscriber 629": { + "2024-12-01T00:00:00+02:00": 5 + }, + "orderReceipt for subscriber 455": { + "2024-12-01T00:00:00+02:00": 15 + }, + "firstTimeOrderConfirmation for subscriber 4": { + "2024-12-01T00:00:00+02:00": 408 + }, + "outForDelivery for subscriber 161": { + "2024-12-01T00:00:00+02:00": 3479 + }, + "delivered for subscriber 455": { + "2024-12-01T00:00:00+02:00": 15 + }, + "supportMessage for subscriber 377": { + "2024-12-01T00:00:00+02:00": 25 + }, + "New Prescription": { + "2024-12-01T00:00:00+02:00": 653 + }, + "shippingUpdate for subscriber 111": { + "2024-12-01T00:00:00+02:00": 159 + }, + "abandonedCheckout for subscriber 111": { + "2024-12-01T00:00:00+02:00": 10 + }, + "patientWelcome for subscriber 111": { + "2024-12-01T00:00:00+02:00": 10 + }, + "orderReceipt for subscriber 68": { + "2024-12-01T00:00:00+02:00": 15 + }, + "patientWelcome for subscriber 93": { + "2024-12-01T00:00:00+02:00": 67 + }, + "outForDelivery for subscriber 523": { + "2024-12-01T00:00:00+02:00": 26 + }, + "followUpDue for subscriber 238": { + "2024-12-01T00:00:00+02:00": 12 + }, + "delivered for subscriber 77": { + "2024-12-01T00:00:00+02:00": 135 + }, + "patientWelcome for subscriber 523": { + "2024-12-01T00:00:00+02:00": 70 + }, + "firstTimeNewPrescription for subscriber 364": { + "2024-12-01T00:00:00+02:00": 33 + }, + "doctorMessage for subscriber 406": { + "2024-12-01T00:00:00+02:00": 132 + }, + "delivered for subscriber 200": { + "2024-12-01T00:00:00+02:00": 539 + }, + "shippingConfirmation for subscriber 256": { + "2024-12-01T00:00:00+02:00": 108 + }, + "followUpDue for subscriber 53": { + "2024-12-01T00:00:00+02:00": 41 + }, + "Shipping Update for subscriber 121": { + "2024-12-01T00:00:00+02:00": 34 + }, + "prescriptionChanged for subscriber 530": { + "2024-12-01T00:00:00+02:00": 26 + }, + "doctorMessage for subscriber 463": { + "2024-12-01T00:00:00+02:00": 4 + }, + "orderCanceled for subscriber 465": { + "2024-12-01T00:00:00+02:00": 8 + }, + "patientWelcome for subscriber 465": { + "2024-12-01T00:00:00+02:00": 778 + }, + "supportMessage for subscriber 428": { + "2024-12-01T00:00:00+02:00": 18 + }, + "firstTimeShippingConfirmation for subscriber 428": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Delivered": { + "2024-12-01T00:00:00+02:00": 26 + }, + "Order Canceled for subscriber 73": { + "2024-12-01T00:00:00+02:00": 12 + }, + "followUpDue for subscriber 530": { + "2024-12-01T00:00:00+02:00": 11 + }, + "abandonedCheckout for subscriber 35": { + "2024-12-01T00:00:00+02:00": 7 + }, + "shippingConfirmation for subscriber 161": { + "2024-12-01T00:00:00+02:00": 4644 + }, + "shippingUpdate for subscriber 320": { + "2024-12-01T00:00:00+02:00": 833 + }, + "passwordReset for subscriber 364": { + "2024-12-01T00:00:00+02:00": 15 + }, + "shippingUpdate for subscriber 455": { + "2024-12-01T00:00:00+02:00": 124 + }, + "newPrescription for subscriber 256": { + "2024-12-01T00:00:00+02:00": 60 + }, + "followUpPastDue for subscriber 530": { + "2024-12-01T00:00:00+02:00": 6 + }, + "orderReceipt for subscriber 256": { + "2024-12-01T00:00:00+02:00": 142 + }, + "delivered for subscriber 406": { + "2024-12-01T00:00:00+02:00": 99 + }, + "checkinRenewal for subscriber 38": { + "2024-12-01T00:00:00+02:00": 54 + }, + "newPrescription for subscriber 200": { + "2024-12-01T00:00:00+02:00": 19 + }, + "passwordReset for subscriber 406": { + "2024-12-01T00:00:00+02:00": 30 + }, + "Order Canceled": { + "2024-12-01T00:00:00+02:00": 201 + }, + "supportMessage for subscriber 523": { + "2024-12-01T00:00:00+02:00": 5 + }, + "firstTimeShippingConfirmation for subscriber 364": { + "2024-12-01T00:00:00+02:00": 80 + }, + "patientWelcome for subscriber 84": { + "2024-12-01T00:00:00+02:00": 2756 + }, + "abandonedCheckout for subscriber 542": { + "2024-12-01T00:00:00+02:00": 240 + }, + "Admin New Order": { + "2024-12-01T00:00:00+02:00": 53780 + }, + "orderReceipt for subscriber 190": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderReceipt for subscriber 143": { + "2024-12-01T00:00:00+02:00": 21969 + }, + "newPrescription for subscriber 84": { + "2024-12-01T00:00:00+02:00": 301 + }, + "abandonedCheckout for subscriber 406": { + "2024-12-01T00:00:00+02:00": 219 + }, + "delivered for subscriber 73": { + "2024-12-01T00:00:00+02:00": 19 + }, + "First Time Shipping Confirmation": { + "2024-12-01T00:00:00+02:00": 261 + }, + "orderCanceled for subscriber 549": { + "2024-12-01T00:00:00+02:00": 6 + }, + "followUpDue for subscriber 77": { + "2024-12-01T00:00:00+02:00": 125 + }, + "orderReceipt for subscriber 378": { + "2024-12-01T00:00:00+02:00": 50 + }, + "outForDelivery for subscriber 266": { + "2024-12-01T00:00:00+02:00": 149 + }, + "patientWelcome for subscriber 428": { + "2024-12-01T00:00:00+02:00": 24 + }, + "firstTimeShippingConfirmation for subscriber 455": { + "2024-12-01T00:00:00+02:00": 4 + }, + "outForDelivery for subscriber 465": { + "2024-12-01T00:00:00+02:00": 16 + }, + "orderConfirmation for subscriber 263": { + "2024-12-01T00:00:00+02:00": 33 + }, + "paymentError for subscriber 143": { + "2024-12-01T00:00:00+02:00": 1525 + }, + "orderCanceled for subscriber 196": { + "2024-12-01T00:00:00+02:00": 5 + }, + "delivered for subscriber 384": { + "2024-12-01T00:00:00+02:00": 5 + }, + "patientWelcome for subscriber 35": { + "2024-12-01T00:00:00+02:00": 5 + }, + "patientMagicLink for subscriber 200": { + "2024-12-01T00:00:00+02:00": 58 + }, + "New Prescription for subscriber 165": { + "2024-12-01T00:00:00+02:00": 995 + }, + "firstTimeShippingConfirmation for subscriber 452": { + "2024-12-01T00:00:00+02:00": 7 + }, + "outForDelivery for subscriber 121": { + "2024-12-01T00:00:00+02:00": 4 + }, + "newPrescription for subscriber 37": { + "2024-12-01T00:00:00+02:00": 8601 + }, + "followUpDue for subscriber 165": { + "2024-12-01T00:00:00+02:00": 2310 + }, + "First Time Shipping Confirmation for subscriber 165": { + "2024-12-01T00:00:00+02:00": 2822 + }, + "delivered for subscriber 37": { + "2024-12-01T00:00:00+02:00": 13751 + }, + "patientWelcome for subscriber 238": { + "2024-12-01T00:00:00+02:00": 9 + }, + "abandonedCheckout for subscriber 37": { + "2024-12-01T00:00:00+02:00": 16879 + }, + "abandonedPostCheckout for subscriber 542": { + "2024-12-01T00:00:00+02:00": 12 + }, + "abandonedCheckout for subscriber 659": { + "2024-12-01T00:00:00+02:00": 4 + }, + "outForDelivery for subscriber 63": { + "2024-12-01T00:00:00+02:00": 5143 + }, + "delivered for subscriber 255": { + "2024-12-01T00:00:00+02:00": 180 + }, + "shippingUpdate for subscriber 38": { + "2024-12-01T00:00:00+02:00": 3866 + }, + "abandonedCheckout for subscriber 614": { + "2024-12-01T00:00:00+02:00": 40 + }, + "doctorMessage for subscriber 263": { + "2024-12-01T00:00:00+02:00": 100 + }, + "shippingUpdate for subscriber 165": { + "2024-12-01T00:00:00+02:00": 37208 + }, + "shippingUpdate for subscriber 53": { + "2024-12-01T00:00:00+02:00": 169 + }, + "Export disputes": { + "2024-12-01T00:00:00+02:00": 153 + }, + "shippingConfirmation for subscriber 378": { + "2024-12-01T00:00:00+02:00": 28 + }, + "shippingUpdate for subscriber 415": { + "2024-12-01T00:00:00+02:00": 11 + }, + "abandonedCheckout for subscriber 53": { + "2024-12-01T00:00:00+02:00": 25 + }, + "firstTimeOrderConfirmation for subscriber 378": { + "2024-12-01T00:00:00+02:00": 31 + }, + "Order Confirmation": { + "2024-12-01T00:00:00+02:00": 20 + }, + "newRefill for subscriber 263": { + "2024-12-01T00:00:00+02:00": 8 + }, + "orderReceipt for subscriber 63": { + "2024-12-01T00:00:00+02:00": 5387 + }, + "orderConfirmation for subscriber 63": { + "2024-12-01T00:00:00+02:00": 2847 + }, + "prescriptionChanged for subscriber 523": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Prescription Changed": { + "2024-12-01T00:00:00+02:00": 2316 + }, + "followUpPastDue for subscriber 63": { + "2024-12-01T00:00:00+02:00": 2131 + }, + "shippingConfirmation for subscriber 63": { + "2024-12-01T00:00:00+02:00": 4095 + }, + "passwordReset for subscriber 658": { + "2024-12-01T00:00:00+02:00": 5 + }, + "orderCanceled for subscriber 77": { + "2024-12-01T00:00:00+02:00": 15 + }, + "shippingConfirmation for subscriber 523": { + "2024-12-01T00:00:00+02:00": 8 + }, + "firstTimeOrderConfirmation for subscriber 551": { + "2024-12-01T00:00:00+02:00": 9 + }, + "patientWelcome for subscriber 53": { + "2024-12-01T00:00:00+02:00": 11 + }, + "doctorMessage for subscriber 542": { + "2024-12-01T00:00:00+02:00": 219 + }, + "newPrescription for subscriber 266": { + "2024-12-01T00:00:00+02:00": 40 + }, + "followUpDue for subscriber 263": { + "2024-12-01T00:00:00+02:00": 29 + }, + "abandonedPostCheckout for subscriber 200": { + "2024-12-01T00:00:00+02:00": 14 + }, + "supportMessage for subscriber 77": { + "2024-12-01T00:00:00+02:00": 375 + }, + "prescriptionChanged for subscriber 93": { + "2024-12-01T00:00:00+02:00": 9 + }, + "firstTimeNewPrescription for subscriber 441": { + "2024-12-01T00:00:00+02:00": 15 + }, + "abandonedCheckout for subscriber 143": { + "2024-12-01T00:00:00+02:00": 26071 + }, + "shippingUpdate for subscriber 349": { + "2024-12-01T00:00:00+02:00": 141 + }, + "doctorMessage for subscriber 196": { + "2024-12-01T00:00:00+02:00": 16 + }, + "patientWelcome for subscriber 256": { + "2024-12-01T00:00:00+02:00": 162 + }, + "patientWelcome for subscriber 37": { + "2024-12-01T00:00:00+02:00": 11632 + }, + "patientWelcome for subscriber 263": { + "2024-12-01T00:00:00+02:00": 31 + }, + "orderCanceled for subscriber 256": { + "2024-12-01T00:00:00+02:00": 5 + }, + "followUpDue for subscriber 143": { + "2024-12-01T00:00:00+02:00": 14604 + }, + "orderConfirmation for subscriber 275": { + "2024-12-01T00:00:00+02:00": 38 + }, + "orderConfirmation for subscriber 378": { + "2024-12-01T00:00:00+02:00": 20 + }, + "abandonedCheckout for subscriber 638": { + "2024-12-01T00:00:00+02:00": 61 + }, + "abandonedPostCheckout for subscriber 329": { + "2024-12-01T00:00:00+02:00": 27 + }, + "outForDelivery for subscriber 406": { + "2024-12-01T00:00:00+02:00": 92 + }, + "firstTimeShippingConfirmation for subscriber 143": { + "2024-12-01T00:00:00+02:00": 4964 + }, + "patientWelcome for subscriber 77": { + "2024-12-01T00:00:00+02:00": 14 + }, + "firstTimeOrderConfirmation for subscriber 37": { + "2024-12-01T00:00:00+02:00": 3167 + }, + "New Waitlist Waterfall": { + "2024-12-01T00:00:00+02:00": 249 + }, + "doctorMessage for subscriber 275": { + "2024-12-01T00:00:00+02:00": 89 + }, + "First Time Order Confirmation for subscriber 658": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Prescription Changed for subscriber 165": { + "2024-12-01T00:00:00+02:00": 2289 + }, + "outForDelivery for subscriber 292": { + "2024-12-01T00:00:00+02:00": 5 + }, + "firstTimeShippingConfirmation for subscriber 121": { + "2024-12-01T00:00:00+02:00": 4 + }, + "doctorMessage for subscriber 121": { + "2024-12-01T00:00:00+02:00": 8 + }, + "followUpDue for subscriber 364": { + "2024-12-01T00:00:00+02:00": 43 + }, + "orderConfirmation for subscriber 84": { + "2024-12-01T00:00:00+02:00": 679 + }, + "abandonedCheckout for subscriber 255": { + "2024-12-01T00:00:00+02:00": 271 + }, + "firstTimeOrderConfirmation for subscriber 111": { + "2024-12-01T00:00:00+02:00": 6 + }, + "patientWelcome for subscriber 73": { + "2024-12-01T00:00:00+02:00": 25 + }, + "abandonedCheckout for subscriber 349": { + "2024-12-01T00:00:00+02:00": 126 + }, + "newPrescription for subscriber 255": { + "2024-12-01T00:00:00+02:00": 60 + }, + "followUpDue for subscriber 4": { + "2024-12-01T00:00:00+02:00": 1249 + }, + "shippingUpdate for subscriber 523": { + "2024-12-01T00:00:00+02:00": 307 + }, + "newPrescription for subscriber 275": { + "2024-12-01T00:00:00+02:00": 17 + }, + "firstTimeNewPrescription for subscriber 161": { + "2024-12-01T00:00:00+02:00": 348 + }, + "patientWelcome for subscriber 638": { + "2024-12-01T00:00:00+02:00": 44 + }, + "orderReceipt for subscriber 255": { + "2024-12-01T00:00:00+02:00": 171 + }, + "doctorMessage for subscriber 200": { + "2024-12-01T00:00:00+02:00": 466 + }, + "prescriptionChanged for subscriber 77": { + "2024-12-01T00:00:00+02:00": 108 + }, + "shippingUpdate for subscriber 63": { + "2024-12-01T00:00:00+02:00": 53977 + }, + "orderReceipt for subscriber 4": { + "2024-12-01T00:00:00+02:00": 1503 + }, + "outForDelivery for subscriber 256": { + "2024-12-01T00:00:00+02:00": 143 + }, + "supportMessage for subscriber 37": { + "2024-12-01T00:00:00+02:00": 24829 + }, + "supportMessage for subscriber 196": { + "2024-12-01T00:00:00+02:00": 14 + }, + "outForDelivery for subscriber 275": { + "2024-12-01T00:00:00+02:00": 42 + }, + "followUpDue for subscriber 604": { + "2024-12-01T00:00:00+02:00": 6 + }, + "delivered for subscriber 238": { + "2024-12-01T00:00:00+02:00": 9 + }, + "doctorMessage for subscriber 9": { + "2024-12-01T00:00:00+02:00": 24 + }, + "abandonedCheckout for subscriber 474": { + "2024-12-01T00:00:00+02:00": 135 + }, + "shippingUpdate for subscriber 275": { + "2024-12-01T00:00:00+02:00": 321 + }, + "Patient Welcome": { + "2024-12-01T00:00:00+02:00": 5198 + }, + "doctorMessage for subscriber 377": { + "2024-12-01T00:00:00+02:00": 129 + }, + "abandonedCheckout for subscriber 93": { + "2024-12-01T00:00:00+02:00": 76 + }, + "treatmentActive for subscriber 63": { + "2024-12-01T00:00:00+02:00": 631 + }, + "followUpDue for subscriber 217": { + "2024-12-01T00:00:00+02:00": 6 + }, + "firstTimeShippingConfirmation for subscriber 256": { + "2024-12-01T00:00:00+02:00": 93 + }, + "orderReceipt for subscriber 196": { + "2024-12-01T00:00:00+02:00": 6 + }, + "abandonedPostCheckout for subscriber 377": { + "2024-12-01T00:00:00+02:00": 12 + }, + "firstTimeShippingConfirmation for subscriber 161": { + "2024-12-01T00:00:00+02:00": 639 + }, + "Order Receipt for subscriber 542": { + "2024-12-01T00:00:00+02:00": 84 + }, + "followUpPastDue for subscriber 320": { + "2024-12-01T00:00:00+02:00": 48 + }, + "firstTimeNewPrescription for subscriber 256": { + "2024-12-01T00:00:00+02:00": 56 + }, + "patientMagicLink for subscriber 523": { + "2024-12-01T00:00:00+02:00": 6 + }, + "firstTimeOrderConfirmation for subscriber 121": { + "2024-12-01T00:00:00+02:00": 4 + }, + "orderReceipt for subscriber 38": { + "2024-12-01T00:00:00+02:00": 80 + }, + "shippingConfirmation for subscriber 38": { + "2024-12-01T00:00:00+02:00": 297 + }, + "delivered for subscriber 266": { + "2024-12-01T00:00:00+02:00": 163 + }, + "First Time New Prescription for subscriber 549": { + "2024-12-01T00:00:00+02:00": 18 + }, + "firstTimeShippingConfirmation for subscriber 465": { + "2024-12-01T00:00:00+02:00": 24 + }, + "orderConfirmation for subscriber 329": { + "2024-12-01T00:00:00+02:00": 11 + }, + "orderReceipt for subscriber 384": { + "2024-12-01T00:00:00+02:00": 11 + }, + "shippingUpdate for subscriber 364": { + "2024-12-01T00:00:00+02:00": 1043 + }, + "patientWelcome for subscriber 364": { + "2024-12-01T00:00:00+02:00": 405 + }, + "Out For Delivery for subscriber 549": { + "2024-12-01T00:00:00+02:00": 65 + }, + "doctorMessage for subscriber 38": { + "2024-12-01T00:00:00+02:00": 17 + }, + "followUpDue for subscriber 161": { + "2024-12-01T00:00:00+02:00": 3026 + }, + "shippingConfirmation for subscriber 165": { + "2024-12-01T00:00:00+02:00": 4188 + }, + "Out For Delivery": { + "2024-12-01T00:00:00+02:00": 1564 + }, + "followUpPastDue for subscriber 77": { + "2024-12-01T00:00:00+02:00": 105 + }, + "firstTimeShippingConfirmation for subscriber 266": { + "2024-12-01T00:00:00+02:00": 110 + }, + "shippingConfirmation for subscriber 77": { + "2024-12-01T00:00:00+02:00": 230 + }, + "shippingUpdate for subscriber 629": { + "2024-12-01T00:00:00+02:00": 22 + }, + "passwordReset for subscriber 200": { + "2024-12-01T00:00:00+02:00": 60 + }, + "New Refill for subscriber 165": { + "2024-12-01T00:00:00+02:00": 550 + }, + "Follow Up Due for subscriber 93": { + "2024-12-01T00:00:00+02:00": 22 + }, + "Admin Trial Expired": { + "2024-12-01T00:00:00+02:00": 9 + }, + "shippingUpdate for subscriber 378": { + "2024-12-01T00:00:00+02:00": 442 + }, + "Support Message": { + "2024-12-01T00:00:00+02:00": 180 + }, + "shippingUpdate for subscriber 638": { + "2024-12-01T00:00:00+02:00": 5 + }, + "firstTimeOrderConfirmation for subscriber 530": { + "2024-12-01T00:00:00+02:00": 34 + }, + "followUpPastDue for subscriber 238": { + "2024-12-01T00:00:00+02:00": 10 + }, + "firstTimeOrderConfirmation for subscriber 320": { + "2024-12-01T00:00:00+02:00": 33 + }, + "abandonedPostCheckout for subscriber 266": { + "2024-12-01T00:00:00+02:00": 21 + }, + "firstTimeOrderConfirmation for subscriber 63": { + "2024-12-01T00:00:00+02:00": 1765 + }, + "doctorMessage for subscriber 350": { + "2024-12-01T00:00:00+02:00": 6 + }, + "delivered for subscriber 441": { + "2024-12-01T00:00:00+02:00": 26 + }, + "firstTimeNewPrescription for subscriber 329": { + "2024-12-01T00:00:00+02:00": 18 + }, + "outForDelivery for subscriber 329": { + "2024-12-01T00:00:00+02:00": 129 + }, + "outForDelivery for subscriber 377": { + "2024-12-01T00:00:00+02:00": 54 + }, + "followUpPastDue for subscriber 455": { + "2024-12-01T00:00:00+02:00": 10 + }, + "patientWelcome for subscriber 629": { + "2024-12-01T00:00:00+02:00": 9 + }, + "passwordReset for subscriber 378": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Doctor Message": { + "2024-12-01T00:00:00+02:00": 37 + }, + "Patient Welcome for subscriber 320": { + "2024-12-01T00:00:00+02:00": 92 + }, + "passwordReset for subscriber 38": { + "2024-12-01T00:00:00+02:00": 6 + }, + "supportMessage for subscriber 378": { + "2024-12-01T00:00:00+02:00": 28 + }, + "doctorMessage for subscriber 465": { + "2024-12-01T00:00:00+02:00": 77 + }, + "Doctor Message for subscriber 320": { + "2024-12-01T00:00:00+02:00": 108 + }, + "shippingConfirmation for subscriber 200": { + "2024-12-01T00:00:00+02:00": 390 + }, + "abandonedPostCheckout for subscriber 523": { + "2024-12-01T00:00:00+02:00": 5 + }, + "shippingConfirmation for subscriber 13": { + "2024-12-01T00:00:00+02:00": 8 + }, + "delivered for subscriber 292": { + "2024-12-01T00:00:00+02:00": 5 + }, + "orderReceipt for subscriber 530": { + "2024-12-01T00:00:00+02:00": 31 + }, + "Payment Error for subscriber 165": { + "2024-12-01T00:00:00+02:00": 83 + }, + "passwordReset for subscriber 256": { + "2024-12-01T00:00:00+02:00": 22 + }, + "Abandoned Checkout": { + "2024-12-01T00:00:00+02:00": 99 + }, + "patientWelcome for subscriber 121": { + "2024-12-01T00:00:00+02:00": 7 + }, + "passwordReset for subscriber 329": { + "2024-12-01T00:00:00+02:00": 45 + }, + "outForDelivery for subscriber 474": { + "2024-12-01T00:00:00+02:00": 11 + }, + "shippingUpdate for subscriber 440": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderConfirmation for subscriber 549": { + "2024-12-01T00:00:00+02:00": 7 + }, + "delivered for subscriber 121": { + "2024-12-01T00:00:00+02:00": 4 + }, + "passwordReset for subscriber 255": { + "2024-12-01T00:00:00+02:00": 33 + }, + "Shipping Update for subscriber 350": { + "2024-12-01T00:00:00+02:00": 19 + }, + "supportMessage for subscriber 9": { + "2024-12-01T00:00:00+02:00": 12 + }, + "orderCanceled for subscriber 37": { + "2024-12-01T00:00:00+02:00": 1018 + }, + "firstTimeOrderConfirmation for subscriber 165": { + "2024-12-01T00:00:00+02:00": 2201 + }, + "orderCanceled for subscriber 255": { + "2024-12-01T00:00:00+02:00": 16 + }, + "followUpDue for subscriber 68": { + "2024-12-01T00:00:00+02:00": 15 + }, + "orderCanceled for subscriber 530": { + "2024-12-01T00:00:00+02:00": 9 + }, + "orderConfirmation for subscriber 68": { + "2024-12-01T00:00:00+02:00": 12 + }, + "shippingConfirmation for subscriber 217": { + "2024-12-01T00:00:00+02:00": 9 + }, + "outForDelivery for subscriber 190": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Patient Welcome for subscriber 474": { + "2024-12-01T00:00:00+02:00": 147 + }, + "firstTimeShippingConfirmation for subscriber 406": { + "2024-12-01T00:00:00+02:00": 65 + }, + "shippingConfirmation for subscriber 190": { + "2024-12-01T00:00:00+02:00": 7 + }, + "firstTimeOrderConfirmation for subscriber 292": { + "2024-12-01T00:00:00+02:00": 7 + }, + "abandonedPostCheckout for subscriber 349": { + "2024-12-01T00:00:00+02:00": 4 + }, + "firstTimeShippingConfirmation for subscriber 4": { + "2024-12-01T00:00:00+02:00": 530 + }, + "followUpPastDue for subscriber 256": { + "2024-12-01T00:00:00+02:00": 64 + }, + "prescriptionChanged for subscriber 255": { + "2024-12-01T00:00:00+02:00": 88 + }, + "newPrescription for subscriber 73": { + "2024-12-01T00:00:00+02:00": 11 + }, + "doctorMessage for subscriber 77": { + "2024-12-01T00:00:00+02:00": 334 + }, + "supportMessage for subscriber 111": { + "2024-12-01T00:00:00+02:00": 16 + }, + "firstTimeOrderConfirmation for subscriber 349": { + "2024-12-01T00:00:00+02:00": 13 + }, + "patientMagicLink for subscriber 256": { + "2024-12-01T00:00:00+02:00": 44 + }, + "paymentError for subscriber 84": { + "2024-12-01T00:00:00+02:00": 11 + }, + "patientMagicLink for subscriber 549": { + "2024-12-01T00:00:00+02:00": 18 + }, + "labReceived for subscriber 441": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Doctor Message for subscriber 452": { + "2024-12-01T00:00:00+02:00": 13 + }, + "abandonedCheckout for subscriber 190": { + "2024-12-01T00:00:00+02:00": 8 + }, + "followUpPastDue for subscriber 217": { + "2024-12-01T00:00:00+02:00": 5 + }, + "passwordReset for subscriber 266": { + "2024-12-01T00:00:00+02:00": 61 + }, + "followUpDue for subscriber 256": { + "2024-12-01T00:00:00+02:00": 93 + }, + "Delivered for subscriber 320": { + "2024-12-01T00:00:00+02:00": 80 + }, + "shippingUpdate for subscriber 530": { + "2024-12-01T00:00:00+02:00": 208 + }, + "supportMessage for subscriber 256": { + "2024-12-01T00:00:00+02:00": 73 + }, + "firstTimeOrderConfirmation for subscriber 428": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Follow Up Due": { + "2024-12-01T00:00:00+02:00": 17 + }, + "patientMagicLink for subscriber 406": { + "2024-12-01T00:00:00+02:00": 29 + }, + "firstTimeNewPrescription for subscriber 400": { + "2024-12-01T00:00:00+02:00": 5 + }, + "passwordReset for subscriber 63": { + "2024-12-01T00:00:00+02:00": 679 + }, + "abandonedCheckout for subscriber 441": { + "2024-12-01T00:00:00+02:00": 10 + }, + "supportMessage for subscriber 263": { + "2024-12-01T00:00:00+02:00": 37 + }, + "shippingUpdate for subscriber 406": { + "2024-12-01T00:00:00+02:00": 1303 + }, + "First Time Order Confirmation for subscriber 18": { + "2024-12-01T00:00:00+02:00": 7 + }, + "abandonedCheckout for subscriber 350": { + "2024-12-01T00:00:00+02:00": 50 + }, + "doctorMessage for subscriber 13": { + "2024-12-01T00:00:00+02:00": 16 + }, + "supportMessage for subscriber 4": { + "2024-12-01T00:00:00+02:00": 2111 + }, + "prescriptionChanged for subscriber 256": { + "2024-12-01T00:00:00+02:00": 27 + }, + "newPrescription for subscriber 523": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderConfirmation for subscriber 73": { + "2024-12-01T00:00:00+02:00": 15 + }, + "orderReceipt for subscriber 150": { + "2024-12-01T00:00:00+02:00": 8 + }, + "supportMessage for subscriber 364": { + "2024-12-01T00:00:00+02:00": 83 + }, + "abandonedCheckout for subscriber 77": { + "2024-12-01T00:00:00+02:00": 102 + }, + "firstTimeShippingConfirmation for subscriber 329": { + "2024-12-01T00:00:00+02:00": 201 + }, + "doctorMessage for subscriber 364": { + "2024-12-01T00:00:00+02:00": 327 + }, + "passwordReset for subscriber 165": { + "2024-12-01T00:00:00+02:00": 370 + }, + "patientWelcome for subscriber 542": { + "2024-12-01T00:00:00+02:00": 255 + }, + "firstTimeNewPrescription for subscriber 255": { + "2024-12-01T00:00:00+02:00": 12 + }, + "outForDelivery for subscriber 77": { + "2024-12-01T00:00:00+02:00": 132 + }, + "delivered for subscriber 378": { + "2024-12-01T00:00:00+02:00": 55 + }, + "abandonedPostCheckout for subscriber 143": { + "2024-12-01T00:00:00+02:00": 181 + }, + "supportMessage for subscriber 329": { + "2024-12-01T00:00:00+02:00": 409 + }, + "orderReceipt for subscriber 37": { + "2024-12-01T00:00:00+02:00": 14009 + }, + "delivered for subscriber 63": { + "2024-12-01T00:00:00+02:00": 5424 + }, + "firstTimeNewPrescription for subscriber 263": { + "2024-12-01T00:00:00+02:00": 7 + }, + "orderCanceled for subscriber 4": { + "2024-12-01T00:00:00+02:00": 127 + }, + "orderCanceled for subscriber 38": { + "2024-12-01T00:00:00+02:00": 5 + }, + "supportMessage for subscriber 84": { + "2024-12-01T00:00:00+02:00": 584 + }, + "abandonedCheckout for subscriber 63": { + "2024-12-01T00:00:00+02:00": 11801 + }, + "orderReceipt for subscriber 73": { + "2024-12-01T00:00:00+02:00": 15 + }, + "delivered for subscriber 68": { + "2024-12-01T00:00:00+02:00": 6 + }, + "outForDelivery for subscriber 84": { + "2024-12-01T00:00:00+02:00": 1041 + }, + "patientWelcome for subscriber 530": { + "2024-12-01T00:00:00+02:00": 151 + }, + "abandonedCheckout for subscriber 530": { + "2024-12-01T00:00:00+02:00": 160 + }, + "orderConfirmation for subscriber 77": { + "2024-12-01T00:00:00+02:00": 126 + }, + "passwordReset for subscriber 143": { + "2024-12-01T00:00:00+02:00": 2417 + }, + "orderConfirmation for subscriber 165": { + "2024-12-01T00:00:00+02:00": 2299 + }, + "doctorMessage for subscriber 190": { + "2024-12-01T00:00:00+02:00": 16 + }, + "firstTimeOrderConfirmation for subscriber 465": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Order Receipt": { + "2024-12-01T00:00:00+02:00": 87 + }, + "Shipping Update for subscriber 549": { + "2024-12-01T00:00:00+02:00": 472 + }, + "outForDelivery for subscriber 255": { + "2024-12-01T00:00:00+02:00": 167 + }, + "followUpPastDue for subscriber 161": { + "2024-12-01T00:00:00+02:00": 2529 + }, + "shippingUpdate for subscriber 551": { + "2024-12-01T00:00:00+02:00": 21 + }, + "abandonedPostCheckout for subscriber 161": { + "2024-12-01T00:00:00+02:00": 244 + }, + "doctorMessage for subscriber 378": { + "2024-12-01T00:00:00+02:00": 151 + }, + "orderReceipt for subscriber 161": { + "2024-12-01T00:00:00+02:00": 3872 + }, + "prescriptionChanged for subscriber 111": { + "2024-12-01T00:00:00+02:00": 9 + }, + "firstTimeOrderConfirmation for subscriber 474": { + "2024-12-01T00:00:00+02:00": 20 + }, + "followUpDue for subscriber 320": { + "2024-12-01T00:00:00+02:00": 63 + }, + "delivered for subscriber 4": { + "2024-12-01T00:00:00+02:00": 1528 + }, + "outForDelivery for subscriber 111": { + "2024-12-01T00:00:00+02:00": 14 + }, + "abandonedPostCheckout for subscriber 4": { + "2024-12-01T00:00:00+02:00": 76 + }, + "firstTimeOrderConfirmation for subscriber 364": { + "2024-12-01T00:00:00+02:00": 83 + }, + "newRefill for subscriber 35": { + "2024-12-01T00:00:00+02:00": 6 + }, + "delivered for subscriber 93": { + "2024-12-01T00:00:00+02:00": 14 + }, + "doctorMessage for subscriber 4": { + "2024-12-01T00:00:00+02:00": 3621 + }, + "followUpDue for subscriber 37": { + "2024-12-01T00:00:00+02:00": 7545 + }, + "newPrescription for subscriber 349": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Shipping Update": { + "2024-12-01T00:00:00+02:00": 11479 + }, + "doctorMessage for subscriber 428": { + "2024-12-01T00:00:00+02:00": 20 + }, + "delivered for subscriber 111": { + "2024-12-01T00:00:00+02:00": 14 + }, + "newRefill for subscriber 38": { + "2024-12-01T00:00:00+02:00": 1078 + }, + "delivered for subscriber 38": { + "2024-12-01T00:00:00+02:00": 400 + }, + "firstTimeOrderConfirmation for subscriber 77": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Admin Payment Failed": { + "2024-12-01T00:00:00+02:00": 56 + }, + "outForDelivery for subscriber 400": { + "2024-12-01T00:00:00+02:00": 4 + }, + "firstTimeShippingConfirmation for subscriber 84": { + "2024-12-01T00:00:00+02:00": 564 + }, + "Patient OTP": { + "2024-12-01T00:00:00+02:00": 10 + }, + "orderCanceled for subscriber 406": { + "2024-12-01T00:00:00+02:00": 5 + }, + "orderCanceled for subscriber 165": { + "2024-12-01T00:00:00+02:00": 363 + }, + "followUpPastDue for subscriber 190": { + "2024-12-01T00:00:00+02:00": 9 + }, + "passwordReset for subscriber 93": { + "2024-12-01T00:00:00+02:00": 6 + }, + "shippingConfirmation for subscriber 614": { + "2024-12-01T00:00:00+02:00": 7 + }, + "prescriptionChanged for subscriber 266": { + "2024-12-01T00:00:00+02:00": 106 + }, + "abandonedCheckout for subscriber 364": { + "2024-12-01T00:00:00+02:00": 445 + }, + "abandonedCheckout for subscriber 378": { + "2024-12-01T00:00:00+02:00": 146 + }, + "orderReceipt for subscriber 53": { + "2024-12-01T00:00:00+02:00": 44 + }, + "followUpPastDue for subscriber 266": { + "2024-12-01T00:00:00+02:00": 190 + }, + "orderReceipt for subscriber 349": { + "2024-12-01T00:00:00+02:00": 17 + }, + "abandonedCheckout for subscriber 200": { + "2024-12-01T00:00:00+02:00": 533 + }, + "patientMagicLink for subscriber 9": { + "2024-12-01T00:00:00+02:00": 5 + }, + "shippingConfirmation for subscriber 9": { + "2024-12-01T00:00:00+02:00": 10 + }, + "firstTimeNewPrescription for subscriber 474": { + "2024-12-01T00:00:00+02:00": 12 + }, + "shippingUpdate for subscriber 78": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Payment Error": { + "2024-12-01T00:00:00+02:00": 52 + }, + "shippingConfirmation for subscriber 238": { + "2024-12-01T00:00:00+02:00": 7 + }, + "firstTimeOrderConfirmation for subscriber 406": { + "2024-12-01T00:00:00+02:00": 61 + }, + "Patient Magic Link": { + "2024-12-01T00:00:00+02:00": 283 + }, + "firstTimeOrderConfirmation for subscriber 84": { + "2024-12-01T00:00:00+02:00": 421 + }, + "firstTimeNewPrescription for subscriber 266": { + "2024-12-01T00:00:00+02:00": 17 + }, + "abandonedCheckout for subscriber 452": { + "2024-12-01T00:00:00+02:00": 22 + }, + "firstTimeNewPrescription for subscriber 377": { + "2024-12-01T00:00:00+02:00": 8 + }, + "delivered for subscriber 275": { + "2024-12-01T00:00:00+02:00": 43 + }, + "shippingConfirmation for subscriber 530": { + "2024-12-01T00:00:00+02:00": 7 + }, + "abandonedCheckout for subscriber 150": { + "2024-12-01T00:00:00+02:00": 7 + }, + "newPrescription for subscriber 161": { + "2024-12-01T00:00:00+02:00": 1948 + }, + "Shipping Confirmation for subscriber 542": { + "2024-12-01T00:00:00+02:00": 51 + }, + "firstTimeOrderConfirmation for subscriber 217": { + "2024-12-01T00:00:00+02:00": 8 + }, + "shippingConfirmation for subscriber 549": { + "2024-12-01T00:00:00+02:00": 7 + }, + "newRefill for subscriber 4": { + "2024-12-01T00:00:00+02:00": 178 + }, + "patientWelcome for subscriber 384": { + "2024-12-01T00:00:00+02:00": 6 + }, + "orderReceipt for subscriber 266": { + "2024-12-01T00:00:00+02:00": 163 + }, + "firstTimeShippingConfirmation for subscriber 542": { + "2024-12-01T00:00:00+02:00": 55 + }, + "paymentError for subscriber 37": { + "2024-12-01T00:00:00+02:00": 207 + }, + "delivered for subscriber 377": { + "2024-12-01T00:00:00+02:00": 57 + }, + "orderReceipt for subscriber 9": { + "2024-12-01T00:00:00+02:00": 16 + }, + "prescriptionChanged for subscriber 542": { + "2024-12-01T00:00:00+02:00": 19 + }, + "orderReceipt for subscriber 84": { + "2024-12-01T00:00:00+02:00": 1082 + }, + "Out For Delivery for subscriber 542": { + "2024-12-01T00:00:00+02:00": 75 + }, + "abandonedCheckout for subscriber 121": { + "2024-12-01T00:00:00+02:00": 5 + }, + "newRefill for subscriber 37": { + "2024-12-01T00:00:00+02:00": 1630 + }, + "newRefill for subscriber 63": { + "2024-12-01T00:00:00+02:00": 1239 + }, + "newPrescription for subscriber 377": { + "2024-12-01T00:00:00+02:00": 5 + }, + "newPrescription for subscriber 53": { + "2024-12-01T00:00:00+02:00": 25 + }, + "doctorMessage for subscriber 143": { + "2024-12-01T00:00:00+02:00": 58929 + } + } + }, + "63ed36d0f38aed64140c6720": { + "$overall": { + "2024-12-01T00:00:00+02:00": 278 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 278 + }, + "Bienvenida": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Pago aprobado": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Estudiante inscripto": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Certificado emitido": { + "2024-12-01T00:00:00+02:00": 37 + }, + "Entrega corregida": { + "2024-12-01T00:00:00+02:00": 96 + }, + "Recuperación de contraseña (Código)": { + "2024-12-01T00:00:00+02:00": 47 + }, + "Suscripción abandonada": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Procesando pago": { + "2024-12-01T00:00:00+02:00": 9 + } + } + }, + "64ae84fa90b5785d4716e362": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1412 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1412 + }, + "Simple Push": { + "2024-12-01T00:00:00+02:00": 1412 + } + } + }, + "658a048acb274a771b085163": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1215 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1215 + }, + "metric_changed": { + "2024-12-01T00:00:00+02:00": 64 + }, + "Invite": { + "2024-12-01T00:00:00+02:00": 1151 + } + } + }, + "67212578d50b4e9ff9a6cc1f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 208 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 208 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 20 + }, + "hotel-status-update": { + "2024-12-01T00:00:00+02:00": 188 + } + } + }, + "65fa38148453b14f2f5aeea2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 261 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 261 + }, + "Project Completed Editor": { + "2024-12-01T00:00:00+02:00": 31 + }, + "Project Pending Admin Review Admin": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Get early access": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Project Completed Admin": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Project New Project Editor Request Editor": { + "2024-12-01T00:00:00+02:00": 33 + }, + "Project Editing Editor": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Project Pending Admin Review Editor": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Project Editing Admin": { + "2024-12-01T00:00:00+02:00": 33 + }, + "Project Pending Editor Changes Editor": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Project Editing Client": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Project Completed Client": { + "2024-12-01T00:00:00+02:00": 28 + }, + "Project Pending Editor Changes Admin": { + "2024-12-01T00:00:00+02:00": 5 + } + } + }, + "63c1debfe84f99fee270acf7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5817 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5817 + }, + "link-session-inserted": { + "2024-12-01T00:00:00+02:00": 2624 + }, + "room-track-inserted": { + "2024-12-01T00:00:00+02:00": 53 + }, + "message-inserted": { + "2024-12-01T00:00:00+02:00": 240 + }, + "room-joined": { + "2024-12-01T00:00:00+02:00": 50 + }, + "unlock-inserted": { + "2024-12-01T00:00:00+02:00": 22 + }, + "showcase-inserted": { + "2024-12-01T00:00:00+02:00": 48 + }, + "link-listen-inserted": { + "2024-12-01T00:00:00+02:00": 2772 + } + } + }, + "646d9f170b49196df3ab5f80": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14406 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14406 + }, + "Device_Offline_Alerts": { + "2024-12-01T00:00:00+02:00": 10411 + }, + "Leakage_Voltage_Alert": { + "2024-12-01T00:00:00+02:00": 3995 + } + } + }, + "6337ca88ee1316a5c8a9009e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "Tasks": { + "2024-12-01T00:00:00+02:00": 172 + }, + "kyro-automation": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Projects": { + "2024-12-01T00:00:00+02:00": 209 + }, + "Timesheets": { + "2024-12-01T00:00:00+02:00": 24 + } + } + }, + "636975131fbb836889d6f696": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5504 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5504 + }, + "Gift Card - Recipient receipt": { + "2024-12-01T00:00:00+02:00": 427 + }, + "(Chat-API) Send SMS from Support": { + "2024-12-01T00:00:00+02:00": 338 + }, + "Subscription Receipt (post-booking)": { + "2024-12-01T00:00:00+02:00": 609 + }, + "emailReceipt (post-booking)": { + "2024-12-01T00:00:00+02:00": 764 + }, + "Gift a Coach - Recipient Receipt": { + "2024-12-01T00:00:00+02:00": 76 + }, + "Subscription Price Change": { + "2024-12-01T00:00:00+02:00": 58 + }, + "Subscription Canceled": { + "2024-12-01T00:00:00+02:00": 214 + }, + "Send SMS to Student": { + "2024-12-01T00:00:00+02:00": 957 + }, + "SMS": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Gift Card - Delivery Notification (Sender)": { + "2024-12-01T00:00:00+02:00": 467 + }, + "Gift Card - Sender Receipt": { + "2024-12-01T00:00:00+02:00": 519 + }, + "Send SMS to Coach": { + "2024-12-01T00:00:00+02:00": 1048 + } + } + }, + "671bba5a0ab03d946718eb3b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1331 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1331 + }, + "Upcoming Callback Notification": { + "2024-12-01T00:00:00+02:00": 110 + }, + "Announcement Notification": { + "2024-12-01T00:00:00+02:00": 930 + }, + "Verify Callback Notification": { + "2024-12-01T00:00:00+02:00": 110 + }, + "Overdue Callback Notification": { + "2024-12-01T00:00:00+02:00": 110 + }, + "Today Callback Notification": { + "2024-12-01T00:00:00+02:00": 71 + } + } + }, + "653ba5e0583a1ec8f82b3589": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1484 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1484 + }, + "New email": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Missed call": { + "2024-12-01T00:00:00+02:00": 55 + }, + "Candidate comment mention": { + "2024-12-01T00:00:00+02:00": 254 + }, + "New message": { + "2024-12-01T00:00:00+02:00": 1169 + } + } + }, + "66fa9de25d6b8aa393727348": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4316 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4316 + }, + "planner-deadline": { + "2024-12-01T00:00:00+02:00": 207 + }, + "sparepartsOrderUpdate": { + "2024-12-01T00:00:00+02:00": 4057 + }, + "sparepartsOrderReminder": { + "2024-12-01T00:00:00+02:00": 51 + } + } + }, + "65fd55c44f991166e7a7335e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 814 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 814 + }, + "Trusk Low Battery Shift End": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Charge point critical error": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Returning Vehicle": { + "2024-12-01T00:00:00+02:00": 125 + }, + "Vehicle Link Request": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Charge point interruption": { + "2024-12-01T00:00:00+02:00": 19 + }, + "Trusk Low Battery Shift Start": { + "2024-12-01T00:00:00+02:00": 11 + }, + "create driver account": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Overcharging Vehicle": { + "2024-12-01T00:00:00+02:00": 224 + }, + "Charge point faulted and requires restart": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Charger End of Charge": { + "2024-12-01T00:00:00+02:00": 12 + }, + "generic create account": { + "2024-12-01T00:00:00+02:00": 4 + }, + "In Depot Charge Interruption": { + "2024-12-01T00:00:00+02:00": 120 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Charge Near Depot": { + "2024-12-01T00:00:00+02:00": 202 + } + } + }, + "671faf6b285bc655d85f6e65": { + "$overall": { + "2024-12-01T00:00:00+02:00": 534 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 534 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 497 + }, + "general-notification": { + "2024-12-01T00:00:00+02:00": 35 + } + } + }, + "64dbea7b28a0b10b3b77239e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2964 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2964 + }, + "New Task Notification to All Admins": { + "2024-12-01T00:00:00+02:00": 1482 + }, + "Task Due": { + "2024-12-01T00:00:00+02:00": 1482 + } + } + }, + "66b997fe9c11077f0257d94e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 217 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 217 + }, + "general": { + "2024-12-01T00:00:00+02:00": 217 + } + } + }, + "651d2708e1b82d64b37fb064": { + "$overall": { + "2024-12-01T00:00:00+02:00": 772 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 772 + }, + "Eunice Monitor": { + "2024-12-01T00:00:00+02:00": 772 + } + } + }, + "65d368c9a1dfc9ae299cbd1e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1703 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1703 + }, + "QC Bleed Notification": { + "2024-12-01T00:00:00+02:00": 6 + }, + "DNA Alert": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Accession Rollback": { + "2024-12-01T00:00:00+02:00": 58 + }, + "Priority order": { + "2024-12-01T00:00:00+02:00": 22 + }, + "TAP clinical observations": { + "2024-12-01T00:00:00+02:00": 1587 + }, + "TAP Software Error": { + "2024-12-01T00:00:00+02:00": 24 + } + } + }, + "65c67ec9b637cdb23e09edef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "Summary PDF": { + "2024-12-01T00:00:00+02:00": 352 + } + } + }, + "64b03bae2eb78d11de58c1bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10045 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10045 + }, + "dmpag": { + "2024-12-01T00:00:00+02:00": 10045 + } + } + }, + "64a079225cccb636d843bd26": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1653 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1653 + }, + "userTicketId": { + "2024-12-01T00:00:00+02:00": 844 + }, + "userEmail": { + "2024-12-01T00:00:00+02:00": 806 + } + } + }, + "6507114e90b85787fd58b6d2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19976 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19976 + }, + "import-shipment-commented": { + "2024-12-01T00:00:00+02:00": 3066 + }, + "phone-identification-otp": { + "2024-12-01T00:00:00+02:00": 914 + }, + "wallet-transfer": { + "2024-12-01T00:00:00+02:00": 1786 + }, + "import-shipment-arrived": { + "2024-12-01T00:00:00+02:00": 1425 + }, + "import-shipment-received": { + "2024-12-01T00:00:00+02:00": 100 + }, + "notice-created": { + "2024-12-01T00:00:00+02:00": 4469 + }, + "account-invitation-token": { + "2024-12-01T00:00:00+02:00": 7 + }, + "import-shipment-deposit-required": { + "2024-12-01T00:00:00+02:00": 155 + }, + "import-shipment-attached": { + "2024-12-01T00:00:00+02:00": 6669 + }, + "import-shipment-shipped": { + "2024-12-01T00:00:00+02:00": 1221 + }, + "import-shipment-deposited": { + "2024-12-01T00:00:00+02:00": 79 + }, + "import-shipment-waiting": { + "2024-12-01T00:00:00+02:00": 85 + } + } + }, + "627cf999d4869d0018625c67": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3692 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3692 + }, + "mail-contact": { + "2024-12-01T00:00:00+02:00": 601 + }, + "demande-sav": { + "2024-12-01T00:00:00+02:00": 91 + }, + "shipping-suivi": { + "2024-12-01T00:00:00+02:00": 771 + }, + "order-confirmation": { + "2024-12-01T00:00:00+02:00": 1476 + }, + "demande-retour": { + "2024-12-01T00:00:00+02:00": 91 + }, + "shipping-confirmation": { + "2024-12-01T00:00:00+02:00": 651 + }, + "dispo-article": { + "2024-12-01T00:00:00+02:00": 11 + } + } + }, + "6635b78bbe41ef77518aaba0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30077 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30077 + }, + "task-status": { + "2024-12-01T00:00:00+02:00": 30077 + } + } + }, + "624c1d9fdd3137001824f6ef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11998 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11998 + }, + "New task assignment": { + "2024-12-01T00:00:00+02:00": 11998 + } + } + }, + "636a6b4d9e04bb11b575cf74": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4885 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4885 + }, + "tataAigOrderEmail": { + "2024-12-01T00:00:00+02:00": 15 + }, + "visaAtRisk": { + "2024-12-01T00:00:00+02:00": 11 + }, + "claimUploadConfirmationAlert": { + "2024-12-01T00:00:00+02:00": 12 + }, + "newBulkOrderAlert": { + "2024-12-01T00:00:00+02:00": 17 + }, + "orderAlert": { + "2024-12-01T00:00:00+02:00": 654 + }, + "quoteEmailTemplate": { + "2024-12-01T00:00:00+02:00": 6 + }, + "tataApiAlert": { + "2024-12-01T00:00:00+02:00": 2089 + }, + "insuranceActionRequiredAlert": { + "2024-12-01T00:00:00+02:00": 9 + }, + "order-status-change-alert": { + "2024-12-01T00:00:00+02:00": 225 + }, + "productInformationChanges": { + "2024-12-01T00:00:00+02:00": 1839 + } + } + }, + "632cae5927d50dea0bf3898b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1273 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1273 + }, + "Project changed status": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Project Due Date Is Today": { + "2024-12-01T00:00:00+02:00": 82 + }, + "Task Start Date Is Today": { + "2024-12-01T00:00:00+02:00": 164 + }, + "Task Status Changed": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Add project participants": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Responsible For Task To Follower": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Task Due Date Is Today": { + "2024-12-01T00:00:00+02:00": 262 + }, + "Task Is Late": { + "2024-12-01T00:00:00+02:00": 603 + }, + "Project starts today": { + "2024-12-01T00:00:00+02:00": 37 + }, + "Attach Files In Tasks": { + "2024-12-01T00:00:00+02:00": 23 + } + } + }, + "643682a035c8dd9a2c46ac2b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 57733 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 57733 + }, + "ConjunctionSummaryUpdate": { + "2024-12-01T00:00:00+02:00": 46669 + }, + "ConjunctionStatusUpdate": { + "2024-12-01T00:00:00+02:00": 7972 + }, + "ManoeuvreScreeningSummaryUpdate": { + "2024-12-01T00:00:00+02:00": 2889 + }, + "FileFailureProcessing": { + "2024-12-01T00:00:00+02:00": 9 + }, + "ChatRoomCreated": { + "2024-12-01T00:00:00+02:00": 194 + } + } + }, + "64ca38d1a936a1d182441a27": { + "$overall": { + "2024-12-01T00:00:00+02:00": 764 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 764 + }, + "messaging": { + "2024-12-01T00:00:00+02:00": 764 + } + } + }, + "63317d6327d50dea0b03d16e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1034 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1034 + }, + "system-messages": { + "2024-12-01T00:00:00+02:00": 1016 + }, + "contact us": { + "2024-12-01T00:00:00+02:00": 18 + } + } + }, + "6549444cb6c1c9448db38bc2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Subscription Notice": { + "2024-12-01T00:00:00+02:00": 34 + } + } + }, + "66d536cdcf609b1343d0e115": { + "$overall": { + "2024-12-01T00:00:00+02:00": 871 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 871 + }, + "new_tenant_expense": { + "2024-12-01T00:00:00+02:00": 13 + }, + "rental_application_shortlisted": { + "2024-12-01T00:00:00+02:00": 5 + }, + "tenancy_services_bond_filing": { + "2024-12-01T00:00:00+02:00": 24 + }, + "reminder_to_confirm": { + "2024-12-01T00:00:00+02:00": 4 + }, + "tenancy_request_accepted": { + "2024-12-01T00:00:00+02:00": 27 + }, + "new_tenancy_request_property_manager_variant": { + "2024-12-01T00:00:00+02:00": 90 + }, + "confirmation_instructions": { + "2024-12-01T00:00:00+02:00": 55 + }, + "new_enquiry_message": { + "2024-12-01T00:00:00+02:00": 10 + }, + "time_confirmed_with_message": { + "2024-12-01T00:00:00+02:00": 7 + }, + "close_reminder": { + "2024-12-01T00:00:00+02:00": 42 + }, + "rent_split_set": { + "2024-12-01T00:00:00+02:00": 14 + }, + "agency_email_confirmation": { + "2024-12-01T00:00:00+02:00": 7 + }, + "tenancy_extension_confirmed": { + "2024-12-01T00:00:00+02:00": 8 + }, + "landlord_registration_submitted": { + "2024-12-01T00:00:00+02:00": 26 + }, + "new_rental_application": { + "2024-12-01T00:00:00+02:00": 7 + }, + "tenancy_variation_added": { + "2024-12-01T00:00:00+02:00": 8 + }, + "bond_payment_due": { + "2024-12-01T00:00:00+02:00": 5 + }, + "inspection_time_confirmed_mail_merge": { + "2024-12-01T00:00:00+02:00": 10 + }, + "private_viewing_confirmed": { + "2024-12-01T00:00:00+02:00": 8 + }, + "rental_application_unsuccessful": { + "2024-12-01T00:00:00+02:00": 17 + }, + "property_manager_tenancy_confirmed": { + "2024-12-01T00:00:00+02:00": 17 + }, + "tenancy_extension_added": { + "2024-12-01T00:00:00+02:00": 18 + }, + "rent_payment_overdue": { + "2024-12-01T00:00:00+02:00": 5 + }, + "expense_created_for_uninvited_tenants": { + "2024-12-01T00:00:00+02:00": 4 + }, + "updated_tenant_expense": { + "2024-12-01T00:00:00+02:00": 24 + }, + "awaiting_sign_offs": { + "2024-12-01T00:00:00+02:00": 201 + }, + "expense_updated_for_uninvited_tenants": { + "2024-12-01T00:00:00+02:00": 6 + }, + "maintenance_created_from_inspection": { + "2024-12-01T00:00:00+02:00": 66 + }, + "listing_approved": { + "2024-12-01T00:00:00+02:00": 8 + }, + "user_edited_notice": { + "2024-12-01T00:00:00+02:00": 7 + }, + "tenancy_variation_signed": { + "2024-12-01T00:00:00+02:00": 7 + }, + "renter_tenancy_confirmed_property_management_variant": { + "2024-12-01T00:00:00+02:00": 53 + }, + "rental_application_accepted": { + "2024-12-01T00:00:00+02:00": 4 + }, + "migrate_invite_accepted": { + "2024-12-01T00:00:00+02:00": 30 + } + } + }, + "650af582c016453d5bdfb209": { + "$overall": { + "2024-12-01T00:00:00+02:00": 523 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 523 + }, + "Payments - Zustimmung muss bestätigt werden": { + "2024-12-01T00:00:00+02:00": 504 + }, + "Payments - Zustimmung läuft in 1 Tag ab": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Payments - Zustimmung läuft in 7 Tagen ab": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "66704e3f30319d13334f4306": { + "$overall": { + "2024-12-01T00:00:00+02:00": 366817 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 366817 + }, + "preqPushNotification": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Medvol_V1_Notification": { + "2024-12-01T00:00:00+02:00": 343489 + }, + "pushNotification": { + "2024-12-01T00:00:00+02:00": 23321 + } + } + }, + "64eda93c14b8a3ace6f4c5e9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7737 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7737 + }, + "Task Created": { + "2024-12-01T00:00:00+02:00": 101 + }, + "Task in Review": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Project Photo Added": { + "2024-12-01T00:00:00+02:00": 4919 + }, + "Offer Rejected": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Task Edited": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Task Photo Added": { + "2024-12-01T00:00:00+02:00": 1435 + }, + "absence requested": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Task Overdue": { + "2024-12-01T00:00:00+02:00": 151 + }, + "Offer Accepted": { + "2024-12-01T00:00:00+02:00": 234 + }, + "Bills Created": { + "2024-12-01T00:00:00+02:00": 520 + }, + "Director Report Review": { + "2024-12-01T00:00:00+02:00": 259 + }, + "Create new project post": { + "2024-12-01T00:00:00+02:00": 81 + } + } + }, + "6322333a2d7b721933bd8cf6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10656 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10656 + }, + "export-ready-for-download": { + "2024-12-01T00:00:00+02:00": 118 + }, + "new_note_tag": { + "2024-12-01T00:00:00+02:00": 55 + }, + "linkedin-inbox-synced": { + "2024-12-01T00:00:00+02:00": 9107 + }, + "task-completed-notification": { + "2024-12-01T00:00:00+02:00": 172 + }, + "task-created-notification": { + "2024-12-01T00:00:00+02:00": 106 + }, + "inactive-account-detected": { + "2024-12-01T00:00:00+02:00": 122 + }, + "import-start": { + "2024-12-01T00:00:00+02:00": 209 + }, + "task-due-today-notification": { + "2024-12-01T00:00:00+02:00": 532 + }, + "Import finish": { + "2024-12-01T00:00:00+02:00": 144 + }, + "Space Invitation email": { + "2024-12-01T00:00:00+02:00": 91 + } + } + }, + "64e4824819860000717aecb9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6884 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6884 + }, + "dispute_management": { + "2024-12-01T00:00:00+02:00": 849 + }, + "payout_paid": { + "2024-12-01T00:00:00+02:00": 45 + }, + "charge_failed": { + "2024-12-01T00:00:00+02:00": 44 + }, + "Merchant CSV report": { + "2024-12-01T00:00:00+02:00": 23 + }, + "buyer_qualification_approved": { + "2024-12-01T00:00:00+02:00": 71 + }, + "transaction_financed": { + "2024-12-01T00:00:00+02:00": 123 + }, + "buyer_qualification_declined": { + "2024-12-01T00:00:00+02:00": 11 + }, + "terms_weekly_digest": { + "2024-12-01T00:00:00+02:00": 723 + }, + "transaction_charged": { + "2024-12-01T00:00:00+02:00": 355 + }, + "sftp_sync_invoices_report": { + "2024-12-01T00:00:00+02:00": 8 + }, + "payout_initiated": { + "2024-12-01T00:00:00+02:00": 42 + }, + "terms_daily_digest": { + "2024-12-01T00:00:00+02:00": 4586 + } + } + }, + "63b85858b775d8ef0ed805cb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16995 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16995 + }, + "Org Member Invitation": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Live Chat Assigned": { + "2024-12-01T00:00:00+02:00": 16984 + } + } + }, + "6580bfe12c7e267bc3af8dc2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4869 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4869 + }, + "Bid Expired": { + "2024-12-01T00:00:00+02:00": 12 + }, + "New offer received": { + "2024-12-01T00:00:00+02:00": 1404 + }, + "KYC Ok": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Ask Expired": { + "2024-12-01T00:00:00+02:00": 32 + }, + "New Higher Bid": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Monthly Fee Payed": { + "2024-12-01T00:00:00+02:00": 230 + }, + "New Offer On Watched Item": { + "2024-12-01T00:00:00+02:00": 289 + }, + "Offer Accepted": { + "2024-12-01T00:00:00+02:00": 54 + }, + "New Lower Ask": { + "2024-12-01T00:00:00+02:00": 2728 + }, + "Ask Matched": { + "2024-12-01T00:00:00+02:00": 54 + }, + "KYC Error": { + "2024-12-01T00:00:00+02:00": 16 + } + } + }, + "62fa8155227ab843d407b3f5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8416 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8416 + }, + "Finished Export": { + "2024-12-01T00:00:00+02:00": 682 + }, + "Summary Email": { + "2024-12-01T00:00:00+02:00": 29 + }, + "Nova menção em um ticket": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Atualizações em um Ticket": { + "2024-12-01T00:00:00+02:00": 3462 + }, + "Ticket Due": { + "2024-12-01T00:00:00+02:00": 1162 + }, + "Novo Ticket Atribuído": { + "2024-12-01T00:00:00+02:00": 2554 + }, + "Finished Import": { + "2024-12-01T00:00:00+02:00": 516 + } + } + }, + "64c03a19bab542bccfebc4c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 35078 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 35078 + }, + "Locations CSV (RBG)": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Password Setup New User": { + "2024-12-01T00:00:00+02:00": 30 + }, + "Shop Notification Daily": { + "2024-12-01T00:00:00+02:00": 34876 + }, + "Daily Shop Batch Notification": { + "2024-12-01T00:00:00+02:00": 132 + } + } + }, + "6478b60f3a95df70dfeab13c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7104 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7104 + }, + "Basic Chat Notification": { + "2024-12-01T00:00:00+02:00": 7104 + } + } + }, + "63ac163b2588b530704387fc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 533 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 533 + }, + "Dashboard Patient Activity": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Internal message notification": { + "2024-12-01T00:00:00+02:00": 371 + }, + "Patient sent a message": { + "2024-12-01T00:00:00+02:00": 128 + } + } + }, + "64b703eb90b5785d4734577a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1708 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1708 + }, + "Order - New organization order": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Order - Rejected": { + "2024-12-01T00:00:00+02:00": 39 + }, + "License - License-removed-in-app": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Order - Completed": { + "2024-12-01T00:00:00+02:00": 77 + }, + "Order - failed": { + "2024-12-01T00:00:00+02:00": 225 + }, + "License - New Subscriber Created": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Order - Approval Required - Reseller": { + "2024-12-01T00:00:00+02:00": 427 + }, + "Order - New organization order - Reseller": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Users - Organization User Welcome Email": { + "2024-12-01T00:00:00+02:00": 696 + }, + "Helpdesk - Unmapped organization": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Helpdesk - Ticket updated": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Test Translation": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Licenses - License-assigned-in-app": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Provisioning - Reseller User Welcome Email": { + "2024-12-01T00:00:00+02:00": 86 + } + } + }, + "637b2240c58b301920b2f70c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10129 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10129 + }, + "lapasar-test": { + "2024-12-01T00:00:00+02:00": 10129 + } + } + }, + "651ea1381df1b46454f21192": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1587 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1587 + }, + "Disbursal Auto Mail": { + "2024-12-01T00:00:00+02:00": 381 + }, + "NOC Mail": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Settlement Mail": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Loan closed Mail": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Loan Approval and Sanction Letter send": { + "2024-12-01T00:00:00+02:00": 494 + }, + "Reminder Mail": { + "2024-12-01T00:00:00+02:00": 109 + }, + "Interested Auto Mail": { + "2024-12-01T00:00:00+02:00": 274 + }, + "Rejection Mail": { + "2024-12-01T00:00:00+02:00": 278 + } + } + }, + "63a32471bee1d5aed72cc01d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5730 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5730 + }, + "Lead created": { + "2024-12-01T00:00:00+02:00": 3104 + }, + "Offer insurance module export": { + "2024-12-01T00:00:00+02:00": 519 + }, + "Offer crm export": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Advisory report campaign created": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Offer campaign created": { + "2024-12-01T00:00:00+02:00": 2090 + } + } + }, + "667afbe4231acc7b876e0a8a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "Contacts": { + "2024-12-01T00:00:00+02:00": 48 + }, + "Tasks": { + "2024-12-01T00:00:00+02:00": 6 + }, + "New Direct Booking Chat": { + "2024-12-01T00:00:00+02:00": 189 + } + } + }, + "63ad63d5a3d6d6f6e46334a0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3391 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3391 + }, + "Meeting analysis": { + "2024-12-01T00:00:00+02:00": 2659 + }, + "Calendar failed to refresh": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Comment tagged": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Meeting analysis team - Slack": { + "2024-12-01T00:00:00+02:00": 707 + } + } + }, + "64f0c28825339d16c5d8131a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 288 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 288 + }, + "chat-message": { + "2024-12-01T00:00:00+02:00": 288 + } + } + }, + "656f1ea74663d4c5f711bce4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 276 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 276 + }, + "Lunar Cyber Notifications": { + "2024-12-01T00:00:00+02:00": 276 + } + } + }, + "65c1f64ef94456f501d98f49": { + "$overall": { + "2024-12-01T00:00:00+02:00": 104679 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 104679 + }, + "Item favoured": { + "2024-12-01T00:00:00+02:00": 104679 + } + } + }, + "672e25d0a1974766693e1703": { + "$overall": { + "2024-12-01T00:00:00+02:00": 319 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 319 + }, + "org-user-digest": { + "2024-12-01T00:00:00+02:00": 90 + }, + "task-assignment": { + "2024-12-01T00:00:00+02:00": 229 + } + } + }, + "66828021e73f8d95adbb100f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4387 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4387 + }, + "Storage System Share": { + "2024-12-01T00:00:00+02:00": 43 + }, + "notes": { + "2024-12-01T00:00:00+02:00": 250 + }, + "lead-actions": { + "2024-12-01T00:00:00+02:00": 1445 + }, + "tenant-join-accept-reject": { + "2024-12-01T00:00:00+02:00": 120 + }, + "invite-user": { + "2024-12-01T00:00:00+02:00": 194 + }, + "tenant-access-request": { + "2024-12-01T00:00:00+02:00": 80 + }, + "pov-request": { + "2024-12-01T00:00:00+02:00": 86 + }, + "invite": { + "2024-12-01T00:00:00+02:00": 90 + }, + "note-comments": { + "2024-12-01T00:00:00+02:00": 46 + }, + "converted-to-opportunity": { + "2024-12-01T00:00:00+02:00": 68 + }, + "products-industrySegment": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Expiry Warning Notification": { + "2024-12-01T00:00:00+02:00": 160 + }, + "Dealflow CRUD": { + "2024-12-01T00:00:00+02:00": 1536 + }, + "Approval Notification": { + "2024-12-01T00:00:00+02:00": 154 + }, + "mdf-receivable-payable": { + "2024-12-01T00:00:00+02:00": 10 + }, + "roles": { + "2024-12-01T00:00:00+02:00": 66 + }, + "common-email-request": { + "2024-12-01T00:00:00+02:00": 13 + } + } + }, + "6329fc7ae2a2de81df4b10a6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3828 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3828 + }, + "fxTransactionConfirmation": { + "2024-12-01T00:00:00+02:00": 155 + }, + "fxmoneywastransferred": { + "2024-12-01T00:00:00+02:00": 148 + }, + "workingCapitalEnabledLineAdvanceRequested": { + "2024-12-01T00:00:00+02:00": 415 + }, + "Deposit Received Email Notification": { + "2024-12-01T00:00:00+02:00": 403 + }, + "applicantRegistered": { + "2024-12-01T00:00:00+02:00": 65 + }, + "2FA": { + "2024-12-01T00:00:00+02:00": 1518 + }, + "Nueva póliza contratada": { + "2024-12-01T00:00:00+02:00": 66 + }, + "Recuperar contraseña": { + "2024-12-01T00:00:00+02:00": 39 + }, + "alert": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Disbursement Paid Advance": { + "2024-12-01T00:00:00+02:00": 702 + }, + "On-boarding notification": { + "2024-12-01T00:00:00+02:00": 27 + }, + "generalRegisterEmail": { + "2024-12-01T00:00:00+02:00": 146 + }, + "Colaboradores": { + "2024-12-01T00:00:00+02:00": 39 + }, + "workingCapitalPreEnableLineOpened": { + "2024-12-01T00:00:00+02:00": 16 + }, + "credit-bureau-authorization-validation": { + "2024-12-01T00:00:00+02:00": 61 + } + } + }, + "6437a1cdc3f9dd9ef6a22609": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9689 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9689 + }, + "[ Store ] - Message Notification": { + "2024-12-01T00:00:00+02:00": 9687 + } + } + }, + "6758633bd0bc5c5859e4d0b0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 182 + }, + "standart-workflow": { + "2024-12-01T00:00:00+02:00": 193 + } + } + }, + "652e95466c3964c5a2832222": { + "$overall": { + "2024-12-01T00:00:00+02:00": 244 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 244 + }, + "User Invited (Local and External)": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Local-Environment-CBeach": { + "2024-12-01T00:00:00+02:00": 46 + }, + "The Community - Global In-app": { + "2024-12-01T00:00:00+02:00": 191 + } + } + }, + "6501cc0935286a5ea69aa722": { + "$overall": { + "2024-12-01T00:00:00+02:00": 668 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 668 + }, + "Basic Message": { + "2024-12-01T00:00:00+02:00": 668 + } + } + }, + "66fc55c5cf609b13433a677d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4823 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4823 + }, + "nda-document-processed": { + "2024-12-01T00:00:00+02:00": 1458 + }, + "nda-document-preprocessing": { + "2024-12-01T00:00:00+02:00": 1354 + }, + "nda-document-processing-failure": { + "2024-12-01T00:00:00+02:00": 148 + }, + "nda-document-processing": { + "2024-12-01T00:00:00+02:00": 1863 + } + } + }, + "6582723f08be7e008ad65128": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5142 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5142 + }, + "Only App": { + "2024-12-01T00:00:00+02:00": 2581 + }, + "Notification in-app": { + "2024-12-01T00:00:00+02:00": 2561 + } + } + }, + "642552b70136cef86a79373c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 481 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 481 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Account Activation": { + "2024-12-01T00:00:00+02:00": 222 + }, + "Welcome": { + "2024-12-01T00:00:00+02:00": 222 + }, + "Receipt": { + "2024-12-01T00:00:00+02:00": 21 + } + } + }, + "650002893cc619d36e43a166": { + "$overall": { + "2024-12-01T00:00:00+02:00": 593 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 593 + }, + "push notification": { + "2024-12-01T00:00:00+02:00": 593 + } + } + }, + "657006a1d69593bcb426d80e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 717 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 717 + }, + "Logbook": { + "2024-12-01T00:00:00+02:00": 715 + } + } + }, + "6670ed6e78b0832675c76f6a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 902 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 902 + }, + "staging-us-user-resource-requests": { + "2024-12-01T00:00:00+02:00": 6 + }, + "development-andria-timesheet-not-completed": { + "2024-12-01T00:00:00+02:00": 8 + }, + "development-magdeline-timesheet-not-completed": { + "2024-12-01T00:00:00+02:00": 14 + }, + "development-magdeline-time-off-impacts": { + "2024-12-01T00:00:00+02:00": 61 + }, + "prod-us-timesheet-not-completed": { + "2024-12-01T00:00:00+02:00": 799 + }, + "review-app-16283-time-off-impacts": { + "2024-12-01T00:00:00+02:00": 10 + } + } + }, + "64f6ffa51bb9daae5164392a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11685 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11685 + }, + "Auctions / Bids": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Offers": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Assets": { + "2024-12-01T00:00:00+02:00": 11306 + }, + "Sales": { + "2024-12-01T00:00:00+02:00": 351 + } + } + }, + "6727412d456590b1d8992d83": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146 + }, + "verify-email-workflow": { + "2024-12-01T00:00:00+02:00": 64 + }, + "reset-password-workflow": { + "2024-12-01T00:00:00+02:00": 24 + }, + "remind-streak-workflow": { + "2024-12-01T00:00:00+02:00": 34 + }, + "remind-missing-streak-workflow": { + "2024-12-01T00:00:00+02:00": 22 + } + } + }, + "646e25734c1d7d4ec22acfa5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 25514 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 25514 + }, + "invite-with-sso-to-new-user": { + "2024-12-01T00:00:00+02:00": 34 + }, + "survey-started-to-recipient": { + "2024-12-01T00:00:00+02:00": 3449 + }, + "campaign-task-comment-added": { + "2024-12-01T00:00:00+02:00": 24 + }, + "campaign-launched-to-creator": { + "2024-12-01T00:00:00+02:00": 68 + }, + "invite-to-existing-user": { + "2024-12-01T00:00:00+02:00": 98 + }, + "campaign-task-summary-to-assignee": { + "2024-12-01T00:00:00+02:00": 1224 + }, + "campaign-task-validation-summary-to-validator": { + "2024-12-01T00:00:00+02:00": 79 + }, + "campaign-ended-to-creator": { + "2024-12-01T00:00:00+02:00": 31 + }, + "survey-reminder-to-recipient": { + "2024-12-01T00:00:00+02:00": 9694 + }, + "invite-with-pass-to-new-user": { + "2024-12-01T00:00:00+02:00": 55 + }, + "campaign-task-assigned-to-assignee": { + "2024-12-01T00:00:00+02:00": 10310 + }, + "campaign-summary-to-creator": { + "2024-12-01T00:00:00+02:00": 438 + }, + "reminder-with-pass-to-new-user": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "671dcbd5fb21db27364e8179": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3918 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3918 + }, + "in-app-notification-workflow": { + "2024-12-01T00:00:00+02:00": 3918 + } + } + }, + "647817a98b0b51ed174db1a8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22430 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22430 + }, + "angel-app-notifications": { + "2024-12-01T00:00:00+02:00": 2251 + }, + "ambassador-app-notifications": { + "2024-12-01T00:00:00+02:00": 104 + }, + "angel-app-notifications-inapp": { + "2024-12-01T00:00:00+02:00": 20075 + } + } + }, + "6422c50c5876c8840c8b4668": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6397 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6397 + }, + "risk-assessment": { + "2024-12-01T00:00:00+02:00": 443 + }, + "legal-status-expiry": { + "2024-12-01T00:00:00+02:00": 29 + }, + "incident-report": { + "2024-12-01T00:00:00+02:00": 932 + }, + "careplancontributor": { + "2024-12-01T00:00:00+02:00": 49 + }, + "appointment-assignment": { + "2024-12-01T00:00:00+02:00": 50 + }, + "observation-level-up": { + "2024-12-01T00:00:00+02:00": 852 + }, + "careplan-review-reminder": { + "2024-12-01T00:00:00+02:00": 6 + }, + "due-today-tasks": { + "2024-12-01T00:00:00+02:00": 45 + }, + "repeating-task-review": { + "2024-12-01T00:00:00+02:00": 414 + }, + "task-assignment": { + "2024-12-01T00:00:00+02:00": 257 + }, + "legal-status": { + "2024-12-01T00:00:00+02:00": 51 + }, + "one-day-overdue-tasks": { + "2024-12-01T00:00:00+02:00": 331 + }, + "investigation-type": { + "2024-12-01T00:00:00+02:00": 2934 + } + } + }, + "6321e40f1a3ff48f5712daa8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19069 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19069 + }, + "order-status-change-alert": { + "2024-12-01T00:00:00+02:00": 19065 + }, + "notification-change-alert": { + "2024-12-01T00:00:00+02:00": 4 + } + } + }, + "669ba0033c94be87b123b8c5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12196 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12196 + }, + "paid-request": { + "2024-12-01T00:00:00+02:00": 5735 + }, + "trial-request": { + "2024-12-01T00:00:00+02:00": 6461 + } + } + }, + "6734a5a33b50565012d8dce0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 518 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 518 + }, + "demo-comment-on-task": { + "2024-12-01T00:00:00+02:00": 7 + }, + "send design review notifications": { + "2024-12-01T00:00:00+02:00": 510 + } + } + }, + "6408720f46fde50c6d4affe5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1424 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1424 + }, + "User mentioned in chat": { + "2024-12-01T00:00:00+02:00": 10 + }, + "User invited to an event": { + "2024-12-01T00:00:00+02:00": 179 + }, + "A new feedback": { + "2024-12-01T00:00:00+02:00": 30 + }, + "User mentioned in a feedback comment": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Note added to a task": { + "2024-12-01T00:00:00+02:00": 57 + }, + "User assigned to a key role": { + "2024-12-01T00:00:00+02:00": 212 + }, + "Invalid value provided in a task": { + "2024-12-01T00:00:00+02:00": 46 + }, + "Undone task": { + "2024-12-01T00:00:00+02:00": 875 + } + } + }, + "6298723bbf5f05001986dd80": { + "$overall": { + "2024-12-01T00:00:00+02:00": 615 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 615 + }, + "certificate-uploaded": { + "2024-12-01T00:00:00+02:00": 395 + }, + "unverified-create-job": { + "2024-12-01T00:00:00+02:00": 5 + }, + "unverified-create-task": { + "2024-12-01T00:00:00+02:00": 100 + }, + "create-organisation": { + "2024-12-01T00:00:00+02:00": 115 + } + } + }, + "6516702d73891288fc1ca032": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16367 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16367 + }, + "Comandi TRDP": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Dati di Sintesi": { + "2024-12-01T00:00:00+02:00": 16350 + } + } + }, + "6630a51483064b959c801961": { + "$overall": { + "2024-12-01T00:00:00+02:00": 33850 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 33850 + }, + "pushNotification": { + "2024-12-01T00:00:00+02:00": 27593 + }, + "emailNotification": { + "2024-12-01T00:00:00+02:00": 6257 + } + } + }, + "628f82923c3e82001812b7cf": { + "$overall": { + "2024-12-01T00:00:00+02:00": 245 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 245 + }, + "EMAIL_OTP": { + "2024-12-01T00:00:00+02:00": 235 + }, + "Employee Activation": { + "2024-12-01T00:00:00+02:00": 9 + } + } + }, + "66ac042fb11ac224eaf4f23a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10782 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10782 + }, + "prod-eu-user-resource-requests": { + "2024-12-01T00:00:00+02:00": 44 + }, + "prod-eu-timesheet-not-completed": { + "2024-12-01T00:00:00+02:00": 10738 + } + } + }, + "6578cf542c7e267bc3e3897a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2090 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2090 + }, + "TIMESHEET:APPROVE": { + "2024-12-01T00:00:00+02:00": 72 + }, + "LEAVE-REQUEST:APPROVE": { + "2024-12-01T00:00:00+02:00": 34 + }, + "TIMESHEET:UPDATE": { + "2024-12-01T00:00:00+02:00": 60 + }, + "PAYRUN:FILED": { + "2024-12-01T00:00:00+02:00": 1624 + }, + "TIMESHEET:DELETE": { + "2024-12-01T00:00:00+02:00": 53 + }, + "PAYRUN:FAILED": { + "2024-12-01T00:00:00+02:00": 9 + }, + "LEAVE-REQUEST:UPDATE": { + "2024-12-01T00:00:00+02:00": 22 + }, + "LEAVE-REQUEST:CREATE": { + "2024-12-01T00:00:00+02:00": 35 + }, + "TIMESHEET:CREATE": { + "2024-12-01T00:00:00+02:00": 156 + }, + "LEAVE-REQUEST:REJECT": { + "2024-12-01T00:00:00+02:00": 16 + }, + "TIMESHEET:REJECT": { + "2024-12-01T00:00:00+02:00": 7 + } + } + }, + "666a0c480f48d9a01fea8e2c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 467 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 467 + }, + "Amex": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Transfers": { + "2024-12-01T00:00:00+02:00": 455 + } + } + }, + "660ef03291bd69a79e31a321": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9337 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9337 + }, + "Notas de Item": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Tarefa Atribuída": { + "2024-12-01T00:00:00+02:00": 6867 + }, + "Tarefa Compartilhada": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Comunicação Enspace": { + "2024-12-01T00:00:00+02:00": 2414 + } + } + }, + "651aea5133924ee69071720d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23501 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23501 + }, + "Quejas": { + "2024-12-01T00:00:00+02:00": 63 + }, + "Nuevo inicio de sesión": { + "2024-12-01T00:00:00+02:00": 1804 + }, + "Nuevo Comentario Legal - Equipo": { + "2024-12-01T00:00:00+02:00": 26 + }, + "Agente Suspendido MB": { + "2024-12-01T00:00:00+02:00": 131 + }, + "Invitacion Nuevo Asesor": { + "2024-12-01T00:00:00+02:00": 47 + }, + "Bienvenida Asesor": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Recordatorio consulta pendiente": { + "2024-12-01T00:00:00+02:00": 1329 + }, + "Broker asignado a cliente": { + "2024-12-01T00:00:00+02:00": 5638 + }, + "Agente Reactivado": { + "2024-12-01T00:00:00+02:00": 41 + }, + "Agente suspendido": { + "2024-12-01T00:00:00+02:00": 48 + }, + "Nuevo lead": { + "2024-12-01T00:00:00+02:00": 6577 + }, + "Correo búsqueda cerrada": { + "2024-12-01T00:00:00+02:00": 2972 + }, + "Envío de Contrato": { + "2024-12-01T00:00:00+02:00": 513 + }, + "Agente Reactivado MB": { + "2024-12-01T00:00:00+02:00": 75 + }, + "Nuevo postulante": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Nuevo postulante para tu inmobiliaria": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Correo baja de precio": { + "2024-12-01T00:00:00+02:00": 2614 + }, + "Nuevo comentario legal - Asesor": { + "2024-12-01T00:00:00+02:00": 11 + }, + "accion requerida": { + "2024-12-01T00:00:00+02:00": 40 + }, + "Visita solicitada": { + "2024-12-01T00:00:00+02:00": 226 + }, + "Login": { + "2024-12-01T00:00:00+02:00": 172 + }, + "Nuevo referido": { + "2024-12-01T00:00:00+02:00": 15 + }, + "traer referido al desayuno": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Nuevo lead - cliente": { + "2024-12-01T00:00:00+02:00": 1075 + }, + "Aplica a pulppo": { + "2024-12-01T00:00:00+02:00": 5 + } + } + }, + "63edbed95f1718af27dc2f2f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11715 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11715 + }, + "prod-credentials-status-changed-notification-template": { + "2024-12-01T00:00:00+02:00": 9143 + }, + "prod-batch-of-credentials-status-changed-notification-template": { + "2024-12-01T00:00:00+02:00": 2502 + }, + "Credentials Changed Notification Template": { + "2024-12-01T00:00:00+02:00": 70 + } + } + }, + "652efbf06c3964c5a2845118": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "follow": { + "2024-12-01T00:00:00+02:00": 158 + }, + "In App Share": { + "2024-12-01T00:00:00+02:00": 85 + }, + "One time password": { + "2024-12-01T00:00:00+02:00": 109 + } + } + }, + "66362cc66c5885a3257940bb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2223 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2223 + }, + "Booking Notifications": { + "2024-12-01T00:00:00+02:00": 2215 + } + } + }, + "6637e82483488a7091d0513d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 702 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 702 + }, + "Email Verification": { + "2024-12-01T00:00:00+02:00": 99 + }, + "Stream Like": { + "2024-12-01T00:00:00+02:00": 27 + }, + "User Follow": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Video Comment": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Stream Available": { + "2024-12-01T00:00:00+02:00": 425 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 26 + }, + "Friend Stream Start": { + "2024-12-01T00:00:00+02:00": 110 + } + } + }, + "65718e1d37b5f612059c62ef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24426 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24426 + }, + "Phishing Report Receipt": { + "2024-12-01T00:00:00+02:00": 282 + }, + "Clarity Triage Comms": { + "2024-12-01T00:00:00+02:00": 23862 + }, + "Secret Expiry Report": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Phishing Report Closure": { + "2024-12-01T00:00:00+02:00": 276 + } + } + }, + "656b003c666d47dc7d25648c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2434 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2434 + }, + "DayMessagesAuto": { + "2024-12-01T00:00:00+02:00": 35 + }, + "dailyWorkoutNotification": { + "2024-12-01T00:00:00+02:00": 2399 + } + } + }, + "662a58724b6cd9280bf5139d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 268 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 268 + }, + "post-status-update": { + "2024-12-01T00:00:00+02:00": 235 + }, + "System Notifications": { + "2024-12-01T00:00:00+02:00": 33 + } + } + }, + "65af69c5aeb88319ddace25a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55143 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55143 + }, + "Tasks Pending": { + "2024-12-01T00:00:00+02:00": 55143 + } + } + }, + "63a059f5bee1d5aed7e4d95c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1413 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1413 + }, + "Monitoring update": { + "2024-12-01T00:00:00+02:00": 35 + }, + "Pending Review": { + "2024-12-01T00:00:00+02:00": 60 + }, + "Verified Review": { + "2024-12-01T00:00:00+02:00": 93 + }, + "Account Activated": { + "2024-12-01T00:00:00+02:00": 74 + }, + "User Assigned to Account": { + "2024-12-01T00:00:00+02:00": 50 + }, + "Next KYC Review Date": { + "2024-12-01T00:00:00+02:00": 82 + }, + "Client Case Request updated": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Account Rejected": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Update Required": { + "2024-12-01T00:00:00+02:00": 15 + }, + "New application received documents": { + "2024-12-01T00:00:00+02:00": 16 + }, + "New Application": { + "2024-12-01T00:00:00+02:00": 971 + } + } + }, + "657312d2fd6a606fd6eaa203": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1277 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1277 + }, + "Invoice paid": { + "2024-12-01T00:00:00+02:00": 177 + }, + "Invoice due date expired": { + "2024-12-01T00:00:00+02:00": 476 + }, + "authorization": { + "2024-12-01T00:00:00+02:00": 64 + }, + "New User Created": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Payment received": { + "2024-12-01T00:00:00+02:00": 203 + }, + "Invoice partially paid": { + "2024-12-01T00:00:00+02:00": 93 + }, + "New invoice": { + "2024-12-01T00:00:00+02:00": 254 + } + } + }, + "643e8d58b6a53d8ae70721c2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21555 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21555 + }, + "On-boarding notification": { + "2024-12-01T00:00:00+02:00": 21555 + } + } + }, + "671bcf830ab03d9467221e9b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "in-app-notification": { + "2024-12-01T00:00:00+02:00": 318 + } + } + }, + "6523dfc76b6e9b692e5b79d6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 975 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 975 + }, + "Sale Notification": { + "2024-12-01T00:00:00+02:00": 975 + } + } + }, + "6571c58bfd6a606fd6c8f3f0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 296 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 296 + }, + "Invite employee": { + "2024-12-01T00:00:00+02:00": 296 + } + } + }, + "62fe5f8f227ab843d4272a38": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1488 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1488 + }, + "User email verification": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Canceled reschedule request of the mentor session event": { + "2024-12-01T00:00:00+02:00": 4 + }, + "mentor-session-created-to-lx": { + "2024-12-01T00:00:00+02:00": 125 + }, + "mentor-session-event-canceled": { + "2024-12-01T00:00:00+02:00": 30 + }, + "Learner postponement confirmation": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Reschedule cancelled event 2nd reminder": { + "2024-12-01T00:00:00+02:00": 54 + }, + "mentor-session-event-rescheduled": { + "2024-12-01T00:00:00+02:00": 360 + }, + "Send reset password email": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Mentor session created to learner": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Mentor Session Booking Request Accepted": { + "2024-12-01T00:00:00+02:00": 125 + }, + "Enrolled course member to DS Virgil": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Mentor session created to mentor": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Accepted reschedule request of the mentor session event": { + "2024-12-01T00:00:00+02:00": 316 + }, + "Mentor Session canceled": { + "2024-12-01T00:00:00+02:00": 40 + }, + "Expired The Mentor Session Event Reschedule Request": { + "2024-12-01T00:00:00+02:00": 8 + }, + "User account activation": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Enrolled course member to FTW Virgil": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Created reschedule request of the mentor session event": { + "2024-12-01T00:00:00+02:00": 160 + }, + "Mentor Session Booking Request created": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Reschedule cancelled event 1st reminder": { + "2024-12-01T00:00:00+02:00": 72 + }, + "Mentor session event batch rescheduled": { + "2024-12-01T00:00:00+02:00": 28 + } + } + }, + "6525396bae3f3225a9475db0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4870 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4870 + }, + "Space Appointment Update": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Challenge Keep Streak": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Challenge New Comment": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Welcome Email Series": { + "2024-12-01T00:00:00+02:00": 365 + }, + "Space Membership Invite Decline User": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Space Membership Invite Decline Admin": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Space Membership Invite": { + "2024-12-01T00:00:00+02:00": 567 + }, + "Space Membership Invite Approval User": { + "2024-12-01T00:00:00+02:00": 289 + }, + "Space Membership Request Approval User": { + "2024-12-01T00:00:00+02:00": 105 + }, + "Poll Updates": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Space Membership Invite Approval Admin": { + "2024-12-01T00:00:00+02:00": 492 + }, + "Space Appointment Creation": { + "2024-12-01T00:00:00+02:00": 384 + }, + "Space New Post": { + "2024-12-01T00:00:00+02:00": 494 + }, + "Challenge Level Up (Holi Quest)": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Post Comment Mention": { + "2024-12-01T00:00:00+02:00": 70 + }, + "Post Reactions": { + "2024-12-01T00:00:00+02:00": 612 + }, + "Space Membership Request Decline User": { + "2024-12-01T00:00:00+02:00": 141 + }, + "Space Membership Request Decline Admin": { + "2024-12-01T00:00:00+02:00": 246 + }, + "Challenge Approval": { + "2024-12-01T00:00:00+02:00": 53 + }, + "Space Membership Request": { + "2024-12-01T00:00:00+02:00": 538 + }, + "Post Comment Author": { + "2024-12-01T00:00:00+02:00": 132 + }, + "Comment Reactions": { + "2024-12-01T00:00:00+02:00": 96 + }, + "Space Membership Request Approval Admin": { + "2024-12-01T00:00:00+02:00": 152 + } + } + }, + "654fe30fc36c6d67b96de432": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2903 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2903 + }, + "Task Status change": { + "2024-12-01T00:00:00+02:00": 1014 + }, + "New Comment": { + "2024-12-01T00:00:00+02:00": 1566 + }, + "User assigned to task": { + "2024-12-01T00:00:00+02:00": 323 + } + } + }, + "652d210133aa2d8c68b1bea6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8115 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8115 + }, + "solicitacao-autorizacao": { + "2024-12-01T00:00:00+02:00": 3591 + }, + "solicitacao-criada": { + "2024-12-01T00:00:00+02:00": 3768 + }, + "solicitacao-rejeicao": { + "2024-12-01T00:00:00+02:00": 13 + }, + "solicitacao-conclusao": { + "2024-12-01T00:00:00+02:00": 743 + } + } + }, + "648c0658616db8f05a735ef4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1856 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1856 + }, + "notice-cancellation-reserved-service-employee": { + "2024-12-01T00:00:00+02:00": 6 + }, + "canceled-place-internal-reservation-in-app": { + "2024-12-01T00:00:00+02:00": 228 + }, + "internal-change-reservation-place-in-app": { + "2024-12-01T00:00:00+02:00": 107 + }, + "reservation-change-place-in-app": { + "2024-12-01T00:00:00+02:00": 21 + }, + "group-order": { + "2024-12-01T00:00:00+02:00": 8 + }, + "canceled-place-external-reservation-in-app": { + "2024-12-01T00:00:00+02:00": 6 + }, + "new-contact": { + "2024-12-01T00:00:00+02:00": 5 + }, + "reminder-reservation": { + "2024-12-01T00:00:00+02:00": 62 + }, + "notice-cancellation-reserved-service": { + "2024-12-01T00:00:00+02:00": 6 + }, + "reservation-change-place-for-client-in-app": { + "2024-12-01T00:00:00+02:00": 9 + }, + "reservation-change-client": { + "2024-12-01T00:00:00+02:00": 8 + }, + "internal-order-in-app": { + "2024-12-01T00:00:00+02:00": 872 + }, + "success-order": { + "2024-12-01T00:00:00+02:00": 38 + }, + "service-cancellation-form-no-schedule-client": { + "2024-12-01T00:00:00+02:00": 5 + }, + "internal-change-reservation-place": { + "2024-12-01T00:00:00+02:00": 59 + }, + "notify-place-cancelation-no-schedule-client": { + "2024-12-01T00:00:00+02:00": 5 + }, + "reservation-change-client-employee": { + "2024-12-01T00:00:00+02:00": 20 + }, + "success-deactivate-account": { + "2024-12-01T00:00:00+02:00": 5 + }, + "success-order-no-schedule-in-app": { + "2024-12-01T00:00:00+02:00": 12 + }, + "rate": { + "2024-12-01T00:00:00+02:00": 100 + }, + "notice-cancellation-reserved-service-employee-in-app": { + "2024-12-01T00:00:00+02:00": 12 + }, + "reservation-change-place": { + "2024-12-01T00:00:00+02:00": 8 + }, + "success-first-order-service": { + "2024-12-01T00:00:00+02:00": 61 + }, + "internal-order": { + "2024-12-01T00:00:00+02:00": 53 + }, + "place-new-reservation": { + "2024-12-01T00:00:00+02:00": 101 + }, + "Успешна поръчка на продукти": { + "2024-12-01T00:00:00+02:00": 4 + } + } + }, + "6721fd6e30d1c09960214146": { + "$overall": { + "2024-12-01T00:00:00+02:00": 819 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 819 + }, + "Competition Start": { + "2024-12-01T00:00:00+02:00": 29 + }, + "Battle Result": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Battle Request Accepted": { + "2024-12-01T00:00:00+02:00": 7 + }, + "New Achievements": { + "2024-12-01T00:00:00+02:00": 554 + }, + "Battle Event": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Transaction Event": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Battle Request": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Competition Event": { + "2024-12-01T00:00:00+02:00": 182 + } + } + }, + "654bab8b191027742aa28ec7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1841 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1841 + }, + "overdue-notification-warning-es": { + "2024-12-01T00:00:00+02:00": 8 + }, + "overdue-notification-es": { + "2024-12-01T00:00:00+02:00": 12 + }, + "sign-notification-en": { + "2024-12-01T00:00:00+02:00": 710 + }, + "sign-link-notification-es": { + "2024-12-01T00:00:00+02:00": 18 + }, + "all-signs-notification-es": { + "2024-12-01T00:00:00+02:00": 6 + }, + "fill-and-sign-link-notification-en": { + "2024-12-01T00:00:00+02:00": 9 + }, + "fill-link-notification-en": { + "2024-12-01T00:00:00+02:00": 222 + }, + "decline-notification-en": { + "2024-12-01T00:00:00+02:00": 85 + }, + "all-signs-notification-en": { + "2024-12-01T00:00:00+02:00": 180 + }, + "overdue-notification-warning-en": { + "2024-12-01T00:00:00+02:00": 43 + }, + "sign-link-notification-en": { + "2024-12-01T00:00:00+02:00": 542 + } + } + }, + "67463a802c32fe389fa61341": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1024 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1024 + }, + "alert-email-workflow": { + "2024-12-01T00:00:00+02:00": 128 + }, + "alert-inapp-workflow": { + "2024-12-01T00:00:00+02:00": 896 + } + } + }, + "66b3c633abc563f5ee1c4ffa": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4010 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4010 + }, + "notifyInMobile": { + "2024-12-01T00:00:00+02:00": 2723 + }, + "notifyInApp": { + "2024-12-01T00:00:00+02:00": 1287 + } + } + }, + "64197347da8256b93fd7bbb8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 956 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 956 + }, + "Borrow started": { + "2024-12-01T00:00:00+02:00": 245 + }, + "Return completed": { + "2024-12-01T00:00:00+02:00": 552 + }, + "Return station full": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Account Activation": { + "2024-12-01T00:00:00+02:00": 137 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Return station emptied": { + "2024-12-01T00:00:00+02:00": 9 + } + } + }, + "63cfe876ab8d9270851c178d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1018 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1018 + }, + "Application Confirmation": { + "2024-12-01T00:00:00+02:00": 60 + }, + "CVExport": { + "2024-12-01T00:00:00+02:00": 47 + }, + "Liked company opportunity or event notification": { + "2024-12-01T00:00:00+02:00": 880 + }, + "applicationDigest": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Application CV": { + "2024-12-01T00:00:00+02:00": 14 + } + } + }, + "6759b8ec6b43e4625123293e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 302 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 302 + }, + "trusk-low-battery-shift-end": { + "2024-12-01T00:00:00+02:00": 9 + }, + "create-driver-account": { + "2024-12-01T00:00:00+02:00": 11 + }, + "driver-charging-statement": { + "2024-12-01T00:00:00+02:00": 27 + }, + "returning-vehicle": { + "2024-12-01T00:00:00+02:00": 67 + }, + "charger-end-of-charge": { + "2024-12-01T00:00:00+02:00": 4 + }, + "password-reset": { + "2024-12-01T00:00:00+02:00": 13 + }, + "vehicle-link-request": { + "2024-12-01T00:00:00+02:00": 6 + }, + "vehicle-is-overcharging": { + "2024-12-01T00:00:00+02:00": 106 + }, + "in-depot-charge-interruption": { + "2024-12-01T00:00:00+02:00": 42 + }, + "trusk-low-battery-shift-start": { + "2024-12-01T00:00:00+02:00": 10 + } + } + }, + "6641cac9c4df36a9648c8dd5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6280 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6280 + }, + "Terminübersicht für den Tag": { + "2024-12-01T00:00:00+02:00": 81 + }, + "Terminoption erhalten": { + "2024-12-01T00:00:00+02:00": 662 + }, + "Anfrage von Hilfesuchenden zurückgezogen": { + "2024-12-01T00:00:00+02:00": 64 + }, + "Erwähnung im Kommentar": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Neue Nachricht": { + "2024-12-01T00:00:00+02:00": 904 + }, + "Statusänderung \"Erstgespräch\"": { + "2024-12-01T00:00:00+02:00": 135 + }, + "Anfrage versendet": { + "2024-12-01T00:00:00+02:00": 377 + }, + "Anfrage-Archivierung bei Inaktivität": { + "2024-12-01T00:00:00+02:00": 112 + }, + "Neue Therapieanfrage": { + "2024-12-01T00:00:00+02:00": 656 + }, + "Statusänderung \"Abgelehnt/Archiv\"": { + "2024-12-01T00:00:00+02:00": 45 + }, + "Statusänderung \"In Therapie\"": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Statusänderung \"Archiv\"": { + "2024-12-01T00:00:00+02:00": 24 + }, + "Termin von allen abgelehnt": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Begrüßungsnachricht": { + "2024-12-01T00:00:00+02:00": 358 + }, + "Anfrageaktualität und -bedarf bestätigen": { + "2024-12-01T00:00:00+02:00": 1572 + }, + "Erinnerung an Termin (einen Tag vorher)": { + "2024-12-01T00:00:00+02:00": 194 + }, + "Termin bestätigt": { + "2024-12-01T00:00:00+02:00": 232 + }, + "Statusänderung \"Warteliste\"": { + "2024-12-01T00:00:00+02:00": 116 + }, + "Automatisch Archivierung von inaktiven Anfragen": { + "2024-12-01T00:00:00+02:00": 165 + }, + "Termin abgesagt": { + "2024-12-01T00:00:00+02:00": 32 + }, + "User Invite": { + "2024-12-01T00:00:00+02:00": 6 + }, + "E-Mail Adresse bestätigen": { + "2024-12-01T00:00:00+02:00": 384 + }, + "Passwort zurücksetzen": { + "2024-12-01T00:00:00+02:00": 105 + } + } + }, + "66f19c98cf609b134304a0f6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1587 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1587 + }, + "work-order-status-change": { + "2024-12-01T00:00:00+02:00": 229 + }, + "payroll-workflow": { + "2024-12-01T00:00:00+02:00": 36 + }, + "comments-workflow": { + "2024-12-01T00:00:00+02:00": 1322 + } + } + }, + "63b6208e711db04e8129df6b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4510 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4510 + }, + "PT-aprobado": { + "2024-12-01T00:00:00+02:00": 320 + }, + "satisfaction-survey-new-response-with-comment": { + "2024-12-01T00:00:00+02:00": 6 + }, + "ergo-acciones-adecuacion": { + "2024-12-01T00:00:00+02:00": 6 + }, + "permiso antes de vencer": { + "2024-12-01T00:00:00+02:00": 117 + }, + "recordatorio master plan": { + "2024-12-01T00:00:00+02:00": 9 + }, + "acciones Incidentes": { + "2024-12-01T00:00:00+02:00": 35 + }, + "gestion de cambio revision": { + "2024-12-01T00:00:00+02:00": 6 + }, + "ehs-brigade-member-report": { + "2024-12-01T00:00:00+02:00": 39 + }, + "new-action-capa": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 30 + }, + "Permiso Vencido": { + "2024-12-01T00:00:00+02:00": 55 + }, + "dms-v2-machine-maintenance-completed": { + "2024-12-01T00:00:00+02:00": 34 + }, + "cierre de prealerta": { + "2024-12-01T00:00:00+02:00": 7 + }, + "send-password": { + "2024-12-01T00:00:00+02:00": 24 + }, + "ehs-chemical-spill-notification": { + "2024-12-01T00:00:00+02:00": 6 + }, + "conclusión y cierrre indicente": { + "2024-12-01T00:00:00+02:00": 6 + }, + "pt-comunicado-rechazo": { + "2024-12-01T00:00:00+02:00": 174 + }, + "permisos de trabajo extension de tiempo ehs": { + "2024-12-01T00:00:00+02:00": 268 + }, + "extensión de tiempo capa": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Extension Tiempo Permiso de Trabajo": { + "2024-12-01T00:00:00+02:00": 85 + }, + "permisos extensión de tiempo": { + "2024-12-01T00:00:00+02:00": 75 + }, + "dms-v2-machine-maintenance-started": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Nueva PreAlerta": { + "2024-12-01T00:00:00+02:00": 5 + }, + "gestion del cambio responsable": { + "2024-12-01T00:00:00+02:00": 5 + }, + "notificación de vencimiento del carné supervisor": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Pt-comunicacion-accion": { + "2024-12-01T00:00:00+02:00": 244 + }, + "masten plan recordatorio accion": { + "2024-12-01T00:00:00+02:00": 26 + }, + "COMPA entrega premios": { + "2024-12-01T00:00:00+02:00": 4 + }, + "asignación incidente": { + "2024-12-01T00:00:00+02:00": 31 + }, + "PT-Solicitud-Accion": { + "2024-12-01T00:00:00+02:00": 2055 + }, + "master plan accion tarde": { + "2024-12-01T00:00:00+02:00": 13 + }, + "dms-v2-laundry-weekly-report": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Permisos de trabajo inspección": { + "2024-12-01T00:00:00+02:00": 79 + }, + "Vencimiento de Acciones Capa": { + "2024-12-01T00:00:00+02:00": 16 + }, + "lockers-reservation-user": { + "2024-12-01T00:00:00+02:00": 5 + }, + "PT-Envio-Solicitud": { + "2024-12-01T00:00:00+02:00": 311 + }, + "Incidente Creado": { + "2024-12-01T00:00:00+02:00": 31 + }, + "lockers-reservation-admin": { + "2024-12-01T00:00:00+02:00": 6 + }, + "recordatorio gestion del cambio firmas tarde": { + "2024-12-01T00:00:00+02:00": 33 + }, + "visita-piso-Ergo": { + "2024-12-01T00:00:00+02:00": 9 + }, + "capa venimiento de accion": { + "2024-12-01T00:00:00+02:00": 85 + }, + "permiso que inician el día presente": { + "2024-12-01T00:00:00+02:00": 165 + } + } + }, + "66b1fe79aa4218d12657d85b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 853 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 853 + }, + "filemaster-in-app-workflow": { + "2024-12-01T00:00:00+02:00": 853 + } + } + }, + "64480a48771e7bed3dc3600e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3819 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3819 + }, + "Default - Censeo Referral": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Invitation to complete Censeo assessment": { + "2024-12-01T00:00:00+02:00": 3804 + }, + "send-report-email": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "666b875bb3464b7775f56472": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1312 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1312 + }, + "Only App": { + "2024-12-01T00:00:00+02:00": 188 + }, + "Notification in-app": { + "2024-12-01T00:00:00+02:00": 1124 + } + } + }, + "65129c6a87135ffdc368e7a3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1001 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1001 + }, + "AM complet": { + "2024-12-01T00:00:00+02:00": 23 + }, + "newOrderProductReturn": { + "2024-12-01T00:00:00+02:00": 61 + }, + "Rappel Action": { + "2024-12-01T00:00:00+02:00": 688 + }, + "commentaire Action": { + "2024-12-01T00:00:00+02:00": 29 + }, + "Nouvel AM": { + "2024-12-01T00:00:00+02:00": 66 + }, + "Nouvelle Action": { + "2024-12-01T00:00:00+02:00": 104 + }, + "Non-conformité": { + "2024-12-01T00:00:00+02:00": 24 + } + } + }, + "6439210da97b5d90d4874f30": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16592 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16592 + }, + "Bienvenue sur Yalink - Onboarding freelance": { + "2024-12-01T00:00:00+02:00": 343 + }, + "Dépôt de besoin - Accusé de réception": { + "2024-12-01T00:00:00+02:00": 87 + }, + "Nouveau statut de candidature": { + "2024-12-01T00:00:00+02:00": 86 + }, + "Bienvenue sur Yalink - Onboarding sans structure légale": { + "2024-12-01T00:00:00+02:00": 87 + }, + "Nouvelles opportunités publiées": { + "2024-12-01T00:00:00+02:00": 13671 + }, + "Envoi du devis au freelance": { + "2024-12-01T00:00:00+02:00": 131 + }, + "KYC rejeté : raison du refus": { + "2024-12-01T00:00:00+02:00": 13 + }, + "Refus de candidature": { + "2024-12-01T00:00:00+02:00": 349 + }, + "kyc document expiré.": { + "2024-12-01T00:00:00+02:00": 1457 + }, + "kyc document expiré dans 7 jours": { + "2024-12-01T00:00:00+02:00": 124 + }, + "Demande de recommendation": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Envoi du devis à un commercial Yalink": { + "2024-12-01T00:00:00+02:00": 131 + }, + "Nouveau ticket support": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Nouvelles expertises métiers disponibles": { + "2024-12-01T00:00:00+02:00": 50 + }, + "Profil présélectionné par Yalink - demande de devis": { + "2024-12-01T00:00:00+02:00": 38 + } + } + }, + "63cf21de42cfbce360219228": { + "$overall": { + "2024-12-01T00:00:00+02:00": 502 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 502 + }, + "Message notification": { + "2024-12-01T00:00:00+02:00": 457 + }, + "Order notification": { + "2024-12-01T00:00:00+02:00": 45 + } + } + }, + "63b3f614749085d8f285703a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7939 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7939 + }, + "Activity Created By Player": { + "2024-12-01T00:00:00+02:00": 7016 + }, + "Activity Reaction": { + "2024-12-01T00:00:00+02:00": 435 + }, + "Referral Signup": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Connection Request": { + "2024-12-01T00:00:00+02:00": 154 + }, + "Connection Accepted": { + "2024-12-01T00:00:00+02:00": 131 + }, + "Activity Comment Reply": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Activity Created On Behalf Of": { + "2024-12-01T00:00:00+02:00": 120 + }, + "Activity Comment": { + "2024-12-01T00:00:00+02:00": 36 + } + } + }, + "6671df91f4a238f107fe9f56": { + "$overall": { + "2024-12-01T00:00:00+02:00": 620 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 620 + }, + "Document Requests": { + "2024-12-01T00:00:00+02:00": 95 + }, + "Authentication - Combined (code + link)": { + "2024-12-01T00:00:00+02:00": 164 + }, + "In-App Notifications": { + "2024-12-01T00:00:00+02:00": 360 + } + } + }, + "66cde6ffcf609b13433bff6b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2098 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2098 + }, + "welcome-to-course": { + "2024-12-01T00:00:00+02:00": 1538 + }, + "welcome-to-book": { + "2024-12-01T00:00:00+02:00": 413 + }, + "welcome-to-plan": { + "2024-12-01T00:00:00+02:00": 147 + } + } + }, + "667abaa4218289a1c466b985": { + "$overall": { + "2024-12-01T00:00:00+02:00": 280 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 280 + }, + "ky": { + "2024-12-01T00:00:00+02:00": 280 + } + } + }, + "653ffc80c93cc0129ad126ab": { + "$overall": { + "2024-12-01T00:00:00+02:00": 294 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 294 + }, + "Account Threshold Notification": { + "2024-12-01T00:00:00+02:00": 111 + }, + "In-App notification": { + "2024-12-01T00:00:00+02:00": 183 + } + } + }, + "641d8c2fda8256b93f228fd0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31223 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31223 + }, + "notify-me-alerts": { + "2024-12-01T00:00:00+02:00": 125 + }, + "orders-delivered": { + "2024-12-01T00:00:00+02:00": 1724 + }, + "orders-canceledBy-seller": { + "2024-12-01T00:00:00+02:00": 7 + }, + "guest-quantity-update-cart": { + "2024-12-01T00:00:00+02:00": 1921 + }, + "returns-requested": { + "2024-12-01T00:00:00+02:00": 11 + }, + "user-product-deleted-from-cart": { + "2024-12-01T00:00:00+02:00": 392 + }, + "guest-cart-created": { + "2024-12-01T00:00:00+02:00": 6038 + }, + "orders-shipped": { + "2024-12-01T00:00:00+02:00": 1970 + }, + "guest-product-added-cart": { + "2024-12-01T00:00:00+02:00": 7460 + }, + "customer-signup": { + "2024-12-01T00:00:00+02:00": 136 + }, + "guest-product-deleted-from-cart": { + "2024-12-01T00:00:00+02:00": 7818 + }, + "product-added-cart": { + "2024-12-01T00:00:00+02:00": 182 + }, + "quantity-updated-cart": { + "2024-12-01T00:00:00+02:00": 166 + }, + "canceled-product-from-order": { + "2024-12-01T00:00:00+02:00": 5 + }, + "cart-created": { + "2024-12-01T00:00:00+02:00": 328 + }, + "order-placed": { + "2024-12-01T00:00:00+02:00": 2939 + } + } + }, + "646eaa72e0d0d1b39ac3b281": { + "$overall": { + "2024-12-01T00:00:00+02:00": 799 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 799 + }, + "Adm - General": { + "2024-12-01T00:00:00+02:00": 157 + }, + "Adm with CTA": { + "2024-12-01T00:00:00+02:00": 642 + } + } + }, + "66f0dd46cf609b13436885f5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42 + } + } + }, + "65d5e7fa2d8ee2bc1404fa0f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5278 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5278 + }, + "notify-company-admins-about-credits-from-super-admins": { + "2024-12-01T00:00:00+02:00": 19 + }, + "notify-employee-about-being-added-to-platform": { + "2024-12-01T00:00:00+02:00": 3439 + }, + "notify-employee-about-new-credit-balance": { + "2024-12-01T00:00:00+02:00": 660 + }, + "notify-company-admins-about-credits-assigned-to-one-employee": { + "2024-12-01T00:00:00+02:00": 1042 + }, + "notify-company-admins-about-removed-employee": { + "2024-12-01T00:00:00+02:00": 26 + }, + "notify-employee-about-using-credits": { + "2024-12-01T00:00:00+02:00": 12 + }, + "notify-company-admins-about-credits-assigned-to-bulk-employee": { + "2024-12-01T00:00:00+02:00": 8 + }, + "notify-company-admins-about-new-employee": { + "2024-12-01T00:00:00+02:00": 67 + } + } + }, + "65fbe3a58453b14f2f670e14": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5143 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5143 + }, + "Transaction Updates": { + "2024-12-01T00:00:00+02:00": 532 + }, + "Listing Change Slack Update": { + "2024-12-01T00:00:00+02:00": 187 + }, + "Deal Status Updates": { + "2024-12-01T00:00:00+02:00": 1004 + }, + "Transaction Slack Updates": { + "2024-12-01T00:00:00+02:00": 25 + }, + "New Member Updates": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Listing Detail Updates": { + "2024-12-01T00:00:00+02:00": 3317 + }, + "Deal Status Slack Updates": { + "2024-12-01T00:00:00+02:00": 62 + } + } + }, + "651fca9cb03ff038cef1c54f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2088 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2088 + }, + "Triggered - Pipeline Not Running": { + "2024-12-01T00:00:00+02:00": 259 + }, + "Recovery - Data in 30 Minutes": { + "2024-12-01T00:00:00+02:00": 549 + }, + "Source Actions": { + "2024-12-01T00:00:00+02:00": 113 + }, + "Recovery - Pipeline Is Running": { + "2024-12-01T00:00:00+02:00": 255 + }, + "Triggered - Pipeline Latency greater than 10 minutes": { + "2024-12-01T00:00:00+02:00": 37 + }, + "Triggered - No Data in 30 Minutes": { + "2024-12-01T00:00:00+02:00": 561 + }, + "Recovery - Pipeline Latency less than 10 minutes": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Pipeline Actions": { + "2024-12-01T00:00:00+02:00": 113 + }, + "Destination Actions": { + "2024-12-01T00:00:00+02:00": 165 + } + } + }, + "6673d3288b7329c353ad689d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1058 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1058 + }, + "web-notifications": { + "2024-12-01T00:00:00+02:00": 1058 + } + } + }, + "650c474042707458fe59f367": { + "$overall": { + "2024-12-01T00:00:00+02:00": 82022 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 82022 + }, + "requestlist-actorsaddedtoitem-v1-hipaa": { + "2024-12-01T00:00:00+02:00": 86 + }, + "requestlist-duedatereminders-v1-hipaa": { + "2024-12-01T00:00:00+02:00": 81936 + } + } + }, + "646f26388b0b51ed1734729b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13192 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13192 + }, + "Tasks": { + "2024-12-01T00:00:00+02:00": 7999 + }, + "timesheets-submission-reminder": { + "2024-12-01T00:00:00+02:00": 184 + }, + "Projects": { + "2024-12-01T00:00:00+02:00": 1835 + }, + "Timesheets": { + "2024-12-01T00:00:00+02:00": 3174 + } + } + }, + "64f0638825339d16c5d2738a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 535 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 535 + }, + "Comptes": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Absences": { + "2024-12-01T00:00:00+02:00": 359 + }, + "CET": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Transports": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Télétravail": { + "2024-12-01T00:00:00+02:00": 78 + }, + "Imputations": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Notes de frais": { + "2024-12-01T00:00:00+02:00": 31 + } + } + }, + "65f440088edf3eee31cf371b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 722 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 722 + }, + "Pagamentos": { + "2024-12-01T00:00:00+02:00": 722 + } + } + }, + "65df17f92b39eba95ab6ae95": { + "$overall": { + "2024-12-01T00:00:00+02:00": 466 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 466 + }, + "commentCreated": { + "2024-12-01T00:00:00+02:00": 208 + }, + "externalUserAddedToTask": { + "2024-12-01T00:00:00+02:00": 88 + }, + "externalUserCreatedAndAssigned": { + "2024-12-01T00:00:00+02:00": 7 + }, + "externalUserCreatedAndAddedToTask": { + "2024-12-01T00:00:00+02:00": 22 + }, + "externalAssigneeAdded": { + "2024-12-01T00:00:00+02:00": 22 + }, + "reviewerUpdated": { + "2024-12-01T00:00:00+02:00": 15 + }, + "assigneeUpdated": { + "2024-12-01T00:00:00+02:00": 20 + }, + "commentMentioned": { + "2024-12-01T00:00:00+02:00": 83 + } + } + }, + "653f9eeac93cc0129acf4bcb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23841 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23841 + }, + "Playlist: New song added": { + "2024-12-01T00:00:00+02:00": 16580 + }, + "Playlist: User joined": { + "2024-12-01T00:00:00+02:00": 3217 + }, + "Playlist: Invite": { + "2024-12-01T00:00:00+02:00": 1625 + }, + "Group Invite: Push": { + "2024-12-01T00:00:00+02:00": 504 + }, + "Group Invite: Email": { + "2024-12-01T00:00:00+02:00": 1314 + }, + "Group Invite: In-app": { + "2024-12-01T00:00:00+02:00": 523 + }, + "Playlist: Song added": { + "2024-12-01T00:00:00+02:00": 78 + } + } + }, + "6397389154ca30325edb6391": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3006 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3006 + }, + "Task_Status_Updated": { + "2024-12-01T00:00:00+02:00": 429 + }, + "Auth_Registration_Verification": { + "2024-12-01T00:00:00+02:00": 219 + }, + "Tenant_User_Created": { + "2024-12-01T00:00:00+02:00": 639 + }, + "Auth_Registration_Verified": { + "2024-12-01T00:00:00+02:00": 858 + }, + "Sampling_Ready_To_Review": { + "2024-12-01T00:00:00+02:00": 618 + }, + "Tenant_Created": { + "2024-12-01T00:00:00+02:00": 211 + }, + "Tenant_User_Updated": { + "2024-12-01T00:00:00+02:00": 26 + } + } + }, + "6669f5fec7f96cc1968787d9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16132 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16132 + }, + "filter-segment-materialize": { + "2024-12-01T00:00:00+02:00": 155 + }, + "file-download": { + "2024-12-01T00:00:00+02:00": 727 + }, + "comment-reply": { + "2024-12-01T00:00:00+02:00": 931 + }, + "collaborator-invite": { + "2024-12-01T00:00:00+02:00": 11083 + }, + "comment-mention": { + "2024-12-01T00:00:00+02:00": 3236 + } + } + }, + "64e46fc009b229a7c5c1735c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10779 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10779 + }, + "Simple_In_App": { + "2024-12-01T00:00:00+02:00": 5395 + }, + "Simple_Email": { + "2024-12-01T00:00:00+02:00": 5384 + } + } + }, + "67063d37ba6a0580bfccc7e3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1543 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1543 + }, + "welcome-email": { + "2024-12-01T00:00:00+02:00": 307 + }, + "payment-error": { + "2024-12-01T00:00:00+02:00": 96 + }, + "payment-success": { + "2024-12-01T00:00:00+02:00": 344 + }, + "aparkplus-accepted": { + "2024-12-01T00:00:00+02:00": 169 + }, + "aparkplus-refused": { + "2024-12-01T00:00:00+02:00": 73 + }, + "offstreet-stay-after-enter": { + "2024-12-01T00:00:00+02:00": 554 + } + } + }, + "65bb0ed1516fabd8520d5673": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1091 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1091 + }, + "inbox-thread-digest": { + "2024-12-01T00:00:00+02:00": 1091 + } + } + }, + "6593fa76f58e905ecac67a12": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15357 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15357 + }, + "IN_APP_NEW_LEVEL": { + "2024-12-01T00:00:00+02:00": 15357 + } + } + }, + "66a0f9f7f502999ed8453644": { + "$overall": { + "2024-12-01T00:00:00+02:00": 302 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 302 + }, + "Project Deletion Notifications": { + "2024-12-01T00:00:00+02:00": 103 + }, + "Payment Notifications": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Subscription canceled Notifications": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Subscription update Notifications": { + "2024-12-01T00:00:00+02:00": 15 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Project Creation Notifications": { + "2024-12-01T00:00:00+02:00": 121 + } + } + }, + "64011cb9841d0bacae01f6ff": { + "$overall": { + "2024-12-01T00:00:00+02:00": 470 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 470 + }, + "SMS Only": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Contractor Entry/Exit": { + "2024-12-01T00:00:00+02:00": 141 + }, + "General Messages With Buttons": { + "2024-12-01T00:00:00+02:00": 269 + }, + "Data Exception": { + "2024-12-01T00:00:00+02:00": 40 + } + } + }, + "651c209f8816295152811079": { + "$overall": { + "2024-12-01T00:00:00+02:00": 870 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 870 + }, + "Comment Created": { + "2024-12-01T00:00:00+02:00": 188 + }, + "Step Status Updated": { + "2024-12-01T00:00:00+02:00": 638 + }, + "Member Promoted": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Request Membership": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Step Assigned": { + "2024-12-01T00:00:00+02:00": 30 + } + } + }, + "6663404493a6b815ffefb2f0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 626081 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 626081 + }, + "Made effective": { + "2024-12-01T00:00:00+02:00": 341838 + }, + "Approval received": { + "2024-12-01T00:00:00+02:00": 39108 + }, + "Mentions": { + "2024-12-01T00:00:00+02:00": 54 + }, + "Review complete": { + "2024-12-01T00:00:00+02:00": 12595 + }, + "Approval request": { + "2024-12-01T00:00:00+02:00": 58995 + }, + "Approval complete": { + "2024-12-01T00:00:00+02:00": 12747 + }, + "Training assigned": { + "2024-12-01T00:00:00+02:00": 83929 + }, + "Suggestion added": { + "2024-12-01T00:00:00+02:00": 3388 + }, + "Change request": { + "2024-12-01T00:00:00+02:00": 893 + }, + "Editor assigned": { + "2024-12-01T00:00:00+02:00": 1506 + }, + "Approval declined": { + "2024-12-01T00:00:00+02:00": 4569 + }, + "Approvers updated": { + "2024-12-01T00:00:00+02:00": 124 + }, + "Action assigned": { + "2024-12-01T00:00:00+02:00": 3699 + }, + "Owner assigned": { + "2024-12-01T00:00:00+02:00": 11030 + }, + "Action completed": { + "2024-12-01T00:00:00+02:00": 1490 + }, + "Task Step completed": { + "2024-12-01T00:00:00+02:00": 3161 + }, + "New comment": { + "2024-12-01T00:00:00+02:00": 1569 + }, + "Review request": { + "2024-12-01T00:00:00+02:00": 45129 + }, + "Draft updated to latest template": { + "2024-12-01T00:00:00+02:00": 257 + } + } + }, + "63ff64e6f591ea2e097d64bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3331 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3331 + }, + "[SUPPLIER] Pricing payload created": { + "2024-12-01T00:00:00+02:00": 16 + }, + "[ADMIN] Company created": { + "2024-12-01T00:00:00+02:00": 161 + }, + "[USER] Direct Debit payment collection upcoming": { + "2024-12-01T00:00:00+02:00": 170 + }, + "[ADMIN] User created": { + "2024-12-01T00:00:00+02:00": 48 + }, + "[ADMIN] Site created": { + "2024-12-01T00:00:00+02:00": 214 + }, + "[ADMIN] Direct Debit payment collection upcoming": { + "2024-12-01T00:00:00+02:00": 165 + }, + "[Admin] Site contract created": { + "2024-12-01T00:00:00+02:00": 136 + }, + "[USER] Direct Debit mandate created": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[USER] Invoice Batch Released": { + "2024-12-01T00:00:00+02:00": 948 + }, + "[ADMIN] Utility Quote pricing failed": { + "2024-12-01T00:00:00+02:00": 332 + }, + "[ADMIN] User onboarding complete": { + "2024-12-01T00:00:00+02:00": 12 + }, + "[ADMIN] Account created": { + "2024-12-01T00:00:00+02:00": 155 + }, + "[USER] Site contract created": { + "2024-12-01T00:00:00+02:00": 105 + }, + "[BROKER] Quote CSV prepared": { + "2024-12-01T00:00:00+02:00": 736 + }, + "[USER] Contract start reminder": { + "2024-12-01T00:00:00+02:00": 105 + }, + "[ADMIN] Customer tender deadlines": { + "2024-12-01T00:00:00+02:00": 18 + } + } + }, + "6627ad47fe81f5c852ec1b6a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4131 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4131 + }, + "Toco Receive Notification": { + "2024-12-01T00:00:00+02:00": 292 + }, + "Community Post Reaction Created": { + "2024-12-01T00:00:00+02:00": 78 + }, + "Friend Signup": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Topup Notification": { + "2024-12-01T00:00:00+02:00": 51 + }, + "Community Member Invite Accepted": { + "2024-12-01T00:00:00+02:00": 6 + }, + "First Buy": { + "2024-12-01T00:00:00+02:00": 14 + }, + "First Receive": { + "2024-12-01T00:00:00+02:00": 19 + }, + "First Transfer": { + "2024-12-01T00:00:00+02:00": 24 + }, + "user_welcome": { + "2024-12-01T00:00:00+02:00": 54 + }, + "Kyc Success": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Community Member Invited": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Community Post Created": { + "2024-12-01T00:00:00+02:00": 3570 + } + } + }, + "652ea963fa315318e7925510": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1500 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1500 + }, + "Unread message digest": { + "2024-12-01T00:00:00+02:00": 746 + }, + "In-app notification": { + "2024-12-01T00:00:00+02:00": 754 + } + } + }, + "6680a87553d09da082d4fd31": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1851 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1851 + }, + "Overdue Purchase Orders": { + "2024-12-01T00:00:00+02:00": 420 + }, + "ecomm-quotes": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Items to order": { + "2024-12-01T00:00:00+02:00": 201 + }, + "Overdue Invoices": { + "2024-12-01T00:00:00+02:00": 1215 + } + } + }, + "66cf1c1bcf609b134337b496": { + "$overall": { + "2024-12-01T00:00:00+02:00": 572 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 572 + }, + "notion-mention-notification": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 226 + }, + "notion-comment-notification": { + "2024-12-01T00:00:00+02:00": 116 + }, + "notion-invite-notification": { + "2024-12-01T00:00:00+02:00": 115 + } + } + }, + "6742dd7d1bb91e63d914a510": { + "$overall": { + "2024-12-01T00:00:00+02:00": 571 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 571 + }, + "Habit Start": { + "2024-12-01T00:00:00+02:00": 301 + }, + "Check-in": { + "2024-12-01T00:00:00+02:00": 266 + } + } + }, + "6502ec79f39b9230da7cc89f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2408 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2408 + }, + "Entity onboarding reminder": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Onboarding completed": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Platform user invitation": { + "2024-12-01T00:00:00+02:00": 19 + }, + "Platform invite reminder": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Team Support Request": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Publish roadmap": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Business entity requested": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Doc Processing - Complete": { + "2024-12-01T00:00:00+02:00": 140 + }, + "Bundle verification reminder": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Doc Processing - Failed": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Business field updated": { + "2024-12-01T00:00:00+02:00": 399 + }, + "Entity access invitation": { + "2024-12-01T00:00:00+02:00": 1736 + } + } + }, + "64c94e80fc11bce407229550": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26569 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26569 + }, + "Query Success": { + "2024-12-01T00:00:00+02:00": 26569 + } + } + }, + "6687b6fe3069ddef14178411": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12973 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12973 + }, + "gbc": { + "2024-12-01T00:00:00+02:00": 2837 + }, + "gbcdelay": { + "2024-12-01T00:00:00+02:00": 10136 + } + } + }, + "6481d805720b54f89e143404": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1024 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1024 + }, + "LQI-score-change": { + "2024-12-01T00:00:00+02:00": 1024 + } + } + }, + "66621bc53a586fac83886829": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20094 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20094 + }, + "Alertas Incidentes Críticos": { + "2024-12-01T00:00:00+02:00": 12692 + }, + "Alertas Agentes Desconectados": { + "2024-12-01T00:00:00+02:00": 7402 + } + } + }, + "6684fd53e40a50735b55a981": { + "$overall": { + "2024-12-01T00:00:00+02:00": 897 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 897 + }, + "Welcome": { + "2024-12-01T00:00:00+02:00": 197 + }, + "Verification Code": { + "2024-12-01T00:00:00+02:00": 690 + } + } + }, + "6644fabbfbadc9d325d90248": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1371 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1371 + }, + "Enrollment notifications": { + "2024-12-01T00:00:00+02:00": 1141 + }, + "No scans notifications": { + "2024-12-01T00:00:00+02:00": 221 + }, + "Allocation notifications": { + "2024-12-01T00:00:00+02:00": 9 + } + } + }, + "63c8f9dd69a571f23a1f87d0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "Strategy Shutdown": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Paper Trade Placed": { + "2024-12-01T00:00:00+02:00": 4620 + } + } + }, + "647a49083a4ec8a5997fb67c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 210 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 210 + }, + "TransporterDriver": { + "2024-12-01T00:00:00+02:00": 141 + }, + "AddUserAdmin": { + "2024-12-01T00:00:00+02:00": 46 + }, + "AddUser": { + "2024-12-01T00:00:00+02:00": 22 + } + } + }, + "63d31df842cfbce360a1f91d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 544 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 544 + }, + "Listing Created": { + "2024-12-01T00:00:00+02:00": 43 + }, + "Listing Updated": { + "2024-12-01T00:00:00+02:00": 484 + }, + "Magic Link": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Listing Cancellation Request": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "64ecc8ef96eacf2243a91769": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23295 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23295 + }, + "Welcome admin": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Video in approval": { + "2024-12-01T00:00:00+02:00": 19181 + }, + "Chatbot daily knowledge base update": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Team invite": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Inbox reply scheduled": { + "2024-12-01T00:00:00+02:00": 238 + }, + "Video rejected": { + "2024-12-01T00:00:00+02:00": 50 + }, + "Task assignment": { + "2024-12-01T00:00:00+02:00": 1299 + }, + "Download video": { + "2024-12-01T00:00:00+02:00": 64 + }, + "Inbox reply hardcore": { + "2024-12-01T00:00:00+02:00": 2073 + }, + "Video or caption failed to upload (unknown story)": { + "2024-12-01T00:00:00+02:00": 31 + }, + "Campaign Live": { + "2024-12-01T00:00:00+02:00": 293 + } + } + }, + "66ce471dcf609b1343289560": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21002 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21002 + }, + "welcome-workflow": { + "2024-12-01T00:00:00+02:00": 20779 + }, + "referral-reward": { + "2024-12-01T00:00:00+02:00": 223 + } + } + }, + "64db6d7084fbabb0eef2e7a0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23550 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23550 + }, + "Quota Nearly Reached": { + "2024-12-01T00:00:00+02:00": 3423 + }, + "Quota Reached": { + "2024-12-01T00:00:00+02:00": 13626 + }, + "New Issue": { + "2024-12-01T00:00:00+02:00": 6501 + } + } + }, + "663d16aa34ea4ddc9b9f2f3d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 624 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 624 + }, + "Propertybook Workorder Update Notification": { + "2024-12-01T00:00:00+02:00": 150 + }, + "Send Altitude Link": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Run Daily Checklist Update Task": { + "2024-12-01T00:00:00+02:00": 29 + }, + "benvida checklist weekly batch": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Benvida Workorder Week Batch": { + "2024-12-01T00:00:00+02:00": 67 + }, + "PropertyBook Assigned Workorder Notification": { + "2024-12-01T00:00:00+02:00": 303 + }, + "ChatGPT Deactivation Notification": { + "2024-12-01T00:00:00+02:00": 37 + }, + "Propertybook Checklist Update": { + "2024-12-01T00:00:00+02:00": 15 + } + } + }, + "672e2335a197476669200759": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18073 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18073 + }, + "task-assignment": { + "2024-12-01T00:00:00+02:00": 17 + }, + "org-user-digest": { + "2024-12-01T00:00:00+02:00": 18056 + } + } + }, + "63eaaa4dd1a5554c97db1b86": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2492 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2492 + }, + "emergency": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Email Notification": { + "2024-12-01T00:00:00+02:00": 2480 + }, + "Forgot Password": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "65b03e6d7facd2ac9be61dc4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1076 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1076 + }, + "Statement report": { + "2024-12-01T00:00:00+02:00": 211 + }, + "New order": { + "2024-12-01T00:00:00+02:00": 222 + }, + "Filled": { + "2024-12-01T00:00:00+02:00": 208 + }, + "Cash order created": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Assigned": { + "2024-12-01T00:00:00+02:00": 195 + }, + "Booked": { + "2024-12-01T00:00:00+02:00": 117 + }, + "Settled": { + "2024-12-01T00:00:00+02:00": 113 + } + } + }, + "668708d194330132afefdfcc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3903 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3903 + }, + "digest-notification": { + "2024-12-01T00:00:00+02:00": 543 + }, + "conversation-notification-real-time": { + "2024-12-01T00:00:00+02:00": 3360 + } + } + }, + "64919f0eb5f1ae122b876762": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "Marketplace CRM Notifications": { + "2024-12-01T00:00:00+02:00": 915 + } + } + }, + "6635236c843a6a8496d4d38e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 303 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 303 + }, + "Reconciliation out of balance": { + "2024-12-01T00:00:00+02:00": 29 + }, + "Status Change": { + "2024-12-01T00:00:00+02:00": 274 + } + } + }, + "6414934fda8256b93f957df3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 316 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 316 + }, + "API Load Edit": { + "2024-12-01T00:00:00+02:00": 316 + } + } + }, + "66688112d05b953ba10ab594": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1244 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1244 + }, + "rebalance_execution_run_production": { + "2024-12-01T00:00:00+02:00": 1244 + } + } + }, + "63c7b1ddab8d9270851b219f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 341 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 341 + }, + "MP: Notifications for dispatchers for new sessions": { + "2024-12-01T00:00:00+02:00": 27 + }, + "New Booking Request notification to external Radiographer": { + "2024-12-01T00:00:00+02:00": 57 + }, + "Scanner KVM Edit Alert": { + "2024-12-01T00:00:00+02:00": 233 + }, + "warning-dev": { + "2024-12-01T00:00:00+02:00": 18 + } + } + }, + "65439145e3bcee0f76a5a368": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21388 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21388 + }, + "Neue Dateien hochgeladen": { + "2024-12-01T00:00:00+02:00": 21388 + } + } + }, + "659b604dbfebd8d8d51299ca": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3734 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3734 + }, + "pushnotificationstaging": { + "2024-12-01T00:00:00+02:00": 147 + }, + "pushnotificationprod": { + "2024-12-01T00:00:00+02:00": 3141 + }, + "pushnotificationdev": { + "2024-12-01T00:00:00+02:00": 444 + } + } + }, + "66437ce7b370e6b94e711d3c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 295 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 295 + }, + "[Active] app-order delivery status changed": { + "2024-12-01T00:00:00+02:00": 18 + }, + "[Active] Order placed": { + "2024-12-01T00:00:00+02:00": 30 + }, + "Your email has been changed": { + "2024-12-01T00:00:00+02:00": 247 + } + } + }, + "63a3be9fe0b58885ea9a25b0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 273 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 273 + }, + "Form additional timekeeping": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Form remote, unpaidleave, paidLeave": { + "2024-12-01T00:00:00+02:00": 209 + }, + "OTP_LOGIN": { + "2024-12-01T00:00:00+02:00": 46 + } + } + }, + "65a56e2e8e557ef0afd6f872": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2756 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2756 + }, + "client_workflow_new": { + "2024-12-01T00:00:00+02:00": 36 + }, + "tenant_project_update": { + "2024-12-01T00:00:00+02:00": 2720 + } + } + }, + "65f2f98b79ffb10acbce98c2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1365 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1365 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 5 + }, + "addedTo": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Sign up": { + "2024-12-01T00:00:00+02:00": 10 + }, + "co2Alarm": { + "2024-12-01T00:00:00+02:00": 64 + }, + "airTempAlarm": { + "2024-12-01T00:00:00+02:00": 994 + }, + "noDataAlarm": { + "2024-12-01T00:00:00+02:00": 105 + }, + "Batch Report": { + "2024-12-01T00:00:00+02:00": 180 + } + } + }, + "637daec62610c873786139a1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2954 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2954 + }, + "US_INCORPORATION_FILING": { + "2024-12-01T00:00:00+02:00": 7 + }, + "service_request_client_update_email": { + "2024-12-01T00:00:00+02:00": 165 + }, + "ACCOUNTING_FIRM_ADDED_TO_COMMENDA": { + "2024-12-01T00:00:00+02:00": 6 + }, + "BOI_INFORMATION_COLLECTION": { + "2024-12-01T00:00:00+02:00": 445 + }, + "USER_ADDED_TO_COMPANY": { + "2024-12-01T00:00:00+02:00": 50 + }, + "REVIEW_COMPLIANCE_CALENDAR_MEETING": { + "2024-12-01T00:00:00+02:00": 1124 + }, + "Untitled": { + "2024-12-01T00:00:00+02:00": 5 + }, + "SEND_EMAIL_TO_AUDITOR": { + "2024-12-01T00:00:00+02:00": 5 + }, + "sales_tax_monthly_reminder": { + "2024-12-01T00:00:00+02:00": 155 + }, + "GENERATED_SECURE_INFORMATION_REQUEST": { + "2024-12-01T00:00:00+02:00": 26 + }, + "ACCOUNTING_FIRM_ASSIGNED_TO_CORPORATION": { + "2024-12-01T00:00:00+02:00": 18 + }, + "THREADS_DIGEST_NOTIFICATION": { + "2024-12-01T00:00:00+02:00": 74 + }, + "BACKEND_NOTIFICATION": { + "2024-12-01T00:00:00+02:00": 863 + } + } + }, + "6413051f44e9291a6455e3e7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 477 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 477 + }, + "DashboardKPI Notifications": { + "2024-12-01T00:00:00+02:00": 477 + } + } + }, + "63bb02b5063f6d94cdf18ac9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4400 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4400 + }, + "Admin Reseting Password": { + "2024-12-01T00:00:00+02:00": 16 + }, + "On Site Time Completion": { + "2024-12-01T00:00:00+02:00": 1105 + }, + "visitSummary": { + "2024-12-01T00:00:00+02:00": 520 + }, + "PM Status Change": { + "2024-12-01T00:00:00+02:00": 1563 + }, + "resetPassword": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Basic Certification Reminder": { + "2024-12-01T00:00:00+02:00": 737 + }, + "Visit Assigned Bulk Mail": { + "2024-12-01T00:00:00+02:00": 119 + }, + "certification_expire": { + "2024-12-01T00:00:00+02:00": 287 + }, + "Project Assignment": { + "2024-12-01T00:00:00+02:00": 6 + }, + "welcome": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Cert Expire Digest": { + "2024-12-01T00:00:00+02:00": 18 + } + } + }, + "66d61e9dcf609b134368c516": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4165 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4165 + }, + "charge_receipt": { + "2024-12-01T00:00:00+02:00": 11 + }, + "expense_updated_for_uninvited_tenants": { + "2024-12-01T00:00:00+02:00": 6 + }, + "tenancy_variation_signed": { + "2024-12-01T00:00:00+02:00": 5 + }, + "applicant_shortlisted": { + "2024-12-01T00:00:00+02:00": 5 + }, + "new_enquiry_message": { + "2024-12-01T00:00:00+02:00": 1384 + }, + "confirmation_instructions": { + "2024-12-01T00:00:00+02:00": 59 + }, + "new_tenancy_request_property_manager_variant": { + "2024-12-01T00:00:00+02:00": 25 + }, + "bond_payment_due": { + "2024-12-01T00:00:00+02:00": 22 + }, + "share_with_owner": { + "2024-12-01T00:00:00+02:00": 23 + }, + "property_owner_tenancy_extended": { + "2024-12-01T00:00:00+02:00": 13 + }, + "bond_refund_tenancy_services": { + "2024-12-01T00:00:00+02:00": 7 + }, + "end_of_tenancy_processed": { + "2024-12-01T00:00:00+02:00": 23 + }, + "updated_tenant_expense": { + "2024-12-01T00:00:00+02:00": 44 + }, + "rent_payment_sent": { + "2024-12-01T00:00:00+02:00": 292 + }, + "renter_tenancy_confirmed": { + "2024-12-01T00:00:00+02:00": 4 + }, + "new_tenant_expense": { + "2024-12-01T00:00:00+02:00": 17 + }, + "rental_application_shortlisted": { + "2024-12-01T00:00:00+02:00": 16 + }, + "renter_tenancy_confirmed_property_management_variant": { + "2024-12-01T00:00:00+02:00": 18 + }, + "rental_application_accepted": { + "2024-12-01T00:00:00+02:00": 12 + }, + "listing_approved": { + "2024-12-01T00:00:00+02:00": 14 + }, + "applicant_added": { + "2024-12-01T00:00:00+02:00": 8 + }, + "user_edited_notice": { + "2024-12-01T00:00:00+02:00": 8 + }, + "awaiting_sign_offs": { + "2024-12-01T00:00:00+02:00": 95 + }, + "account_summary": { + "2024-12-01T00:00:00+02:00": 240 + }, + "rent_payment_received": { + "2024-12-01T00:00:00+02:00": 320 + }, + "time_confirmed_with_message": { + "2024-12-01T00:00:00+02:00": 54 + }, + "first_application_made": { + "2024-12-01T00:00:00+02:00": 7 + }, + "rent_split_set": { + "2024-12-01T00:00:00+02:00": 4 + }, + "close_reminder": { + "2024-12-01T00:00:00+02:00": 214 + }, + "tenancy_extension_confirmed": { + "2024-12-01T00:00:00+02:00": 68 + }, + "tenancy_request_accepted": { + "2024-12-01T00:00:00+02:00": 55 + }, + "daily_listing_matches": { + "2024-12-01T00:00:00+02:00": 78 + }, + "uninvited_tenant_variation_document": { + "2024-12-01T00:00:00+02:00": 12 + }, + "property_owner_tenancy_confirmed": { + "2024-12-01T00:00:00+02:00": 12 + }, + "tenancy_services_bond_filing": { + "2024-12-01T00:00:00+02:00": 18 + }, + "landlord_submitted_service_request": { + "2024-12-01T00:00:00+02:00": 9 + }, + "property_manager_tenancy_confirmed": { + "2024-12-01T00:00:00+02:00": 101 + }, + "new_chat_message": { + "2024-12-01T00:00:00+02:00": 330 + }, + "new_rental_application": { + "2024-12-01T00:00:00+02:00": 53 + }, + "send_request_to_property_owner": { + "2024-12-01T00:00:00+02:00": 4 + }, + "send_request_to_supplier": { + "2024-12-01T00:00:00+02:00": 36 + }, + "property_manager_tenancy_locked_in": { + "2024-12-01T00:00:00+02:00": 56 + }, + "rent_payment_overdue": { + "2024-12-01T00:00:00+02:00": 47 + }, + "billing_method_charge_failed": { + "2024-12-01T00:00:00+02:00": 63 + }, + "tenancy_in_arrears": { + "2024-12-01T00:00:00+02:00": 30 + }, + "landlord_has_signed": { + "2024-12-01T00:00:00+02:00": 16 + }, + "background_check_completed": { + "2024-12-01T00:00:00+02:00": 18 + }, + "tenancy_extension_added": { + "2024-12-01T00:00:00+02:00": 13 + }, + "inspection_completed": { + "2024-12-01T00:00:00+02:00": 39 + }, + "payment_remittance": { + "2024-12-01T00:00:00+02:00": 19 + }, + "tenancy_expiring": { + "2024-12-01T00:00:00+02:00": 21 + }, + "migrate_invite_accepted": { + "2024-12-01T00:00:00+02:00": 6 + }, + "job_completed": { + "2024-12-01T00:00:00+02:00": 8 + }, + "reset_password_instructions": { + "2024-12-01T00:00:00+02:00": 7 + }, + "maintenance_created_from_inspection": { + "2024-12-01T00:00:00+02:00": 54 + } + } + }, + "6537ebf5585a37886d9f05b5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7692 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7692 + }, + "Order Complete - Customer": { + "2024-12-01T00:00:00+02:00": 3650 + }, + "Order received - Promoter": { + "2024-12-01T00:00:00+02:00": 3650 + }, + "Event Release - Customers": { + "2024-12-01T00:00:00+02:00": 392 + } + } + }, + "656197541eb377d7c3b258a0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7555 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7555 + }, + "Notification Workflow": { + "2024-12-01T00:00:00+02:00": 7555 + } + } + }, + "665f80fe8e255032572549f2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 355 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 355 + }, + "Machine Down": { + "2024-12-01T00:00:00+02:00": 355 + } + } + }, + "648e433db5f1ae122b746d19": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2784 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2784 + }, + "general-notification": { + "2024-12-01T00:00:00+02:00": 2784 + } + } + }, + "63e9893f8ce4830a19151391": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2526 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2526 + }, + "Exit Location": { + "2024-12-01T00:00:00+02:00": 176 + }, + "Wrapup Email": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Entered Location": { + "2024-12-01T00:00:00+02:00": 152 + }, + "Weekly forgotten Items": { + "2024-12-01T00:00:00+02:00": 502 + }, + "List Updated": { + "2024-12-01T00:00:00+02:00": 1636 + }, + "Closed or Holiday Reminder": { + "2024-12-01T00:00:00+02:00": 45 + } + } + }, + "652d099361752f4c288defb9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 576 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 576 + }, + "Toppy | Return - Processing - In repair": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Toppy | Return - Approved - Pallet Pickup": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Toppy | Return - Requested - Requested": { + "2024-12-01T00:00:00+02:00": 202 + }, + "Toppy | Return - Completed - Repaired": { + "2024-12-01T00:00:00+02:00": 13 + }, + "Stocky | Purchase | Overdue": { + "2024-12-01T00:00:00+02:00": 41 + }, + "Toppy | Return - Completed - Replaced": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Toppy | Return - Approved - Label": { + "2024-12-01T00:00:00+02:00": 156 + }, + "Toppy | Return - Completed - Refunded Full": { + "2024-12-01T00:00:00+02:00": 113 + } + } + }, + "67444c602c32fe389fd89f54": { + "$overall": { + "2024-12-01T00:00:00+02:00": 608 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 608 + }, + "CampaignProductsStopped": { + "2024-12-01T00:00:00+02:00": 86 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4 + }, + "CampaignCategoriesBelowMinBid": { + "2024-12-01T00:00:00+02:00": 232 + }, + "CampaignKeywordsBelowMinBid": { + "2024-12-01T00:00:00+02:00": 286 + } + } + }, + "66b36aa7aa4218d12678f006": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "test-email-notification": { + "2024-12-01T00:00:00+02:00": 59 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 47 + }, + "ttya-journey-workflow-level-2": { + "2024-12-01T00:00:00+02:00": 15 + }, + "ttya-journey-workflow-level-1-inapp": { + "2024-12-01T00:00:00+02:00": 39 + }, + "ttya-journey-workflow-level-3": { + "2024-12-01T00:00:00+02:00": 32 + }, + "ttya-journey-workflow-level-1": { + "2024-12-01T00:00:00+02:00": 125 + }, + "ttya-journey-workflow-level-2-inapp": { + "2024-12-01T00:00:00+02:00": 9 + }, + "test-in-app-notification": { + "2024-12-01T00:00:00+02:00": 25 + } + } + }, + "64362dac4e5fea401a0f19af": { + "$overall": { + "2024-12-01T00:00:00+02:00": 53458 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 53458 + }, + "Partner - Appointment Reschedule": { + "2024-12-01T00:00:00+02:00": 1652 + }, + "Partner - Appointment Flex": { + "2024-12-01T00:00:00+02:00": 3088 + }, + "Partner - Paid Protocol": { + "2024-12-01T00:00:00+02:00": 1911 + }, + "Partner - Appointment Canceled": { + "2024-12-01T00:00:00+02:00": 2473 + }, + "Partner - Appointment": { + "2024-12-01T00:00:00+02:00": 44332 + } + } + }, + "6543a644e3126f05f0cad775": { + "$overall": { + "2024-12-01T00:00:00+02:00": 47972 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 47972 + }, + "Esign Invitation": { + "2024-12-01T00:00:00+02:00": 2123 + }, + "Notification": { + "2024-12-01T00:00:00+02:00": 45849 + } + } + }, + "66a5008b076eb7c94c1adb92": { + "$overall": { + "2024-12-01T00:00:00+02:00": 457 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 457 + }, + "contracts-update": { + "2024-12-01T00:00:00+02:00": 348 + }, + "progress-update": { + "2024-12-01T00:00:00+02:00": 109 + } + } + }, + "64d10e4220f4008b5df1e37a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1255 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1255 + }, + "Account Activity & Transactions": { + "2024-12-01T00:00:00+02:00": 1085 + }, + "User Signed Up": { + "2024-12-01T00:00:00+02:00": 140 + }, + "Rewards": { + "2024-12-01T00:00:00+02:00": 30 + } + } + }, + "6643b1e7fbadc9d325959e25": { + "$overall": { + "2024-12-01T00:00:00+02:00": 732 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 732 + }, + "Change Status": { + "2024-12-01T00:00:00+02:00": 247 + }, + "Add Sick Note": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Mental Health Campaing": { + "2024-12-01T00:00:00+02:00": 14 + }, + "New Appointment": { + "2024-12-01T00:00:00+02:00": 43 + }, + "Implantação": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Update Health Leader": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Alert Appointment Missing Register": { + "2024-12-01T00:00:00+02:00": 224 + }, + "Add Role": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Add Prescription": { + "2024-12-01T00:00:00+02:00": 54 + }, + "Alert Old Open Appointment": { + "2024-12-01T00:00:00+02:00": 59 + } + } + }, + "64e77d4b96eacf22439b13cd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 250 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 250 + }, + "push-email-notification": { + "2024-12-01T00:00:00+02:00": 84 + }, + "sms-workflow": { + "2024-12-01T00:00:00+02:00": 17 + }, + "payment-reminder-past": { + "2024-12-01T00:00:00+02:00": 45 + }, + "iapp-push-notification": { + "2024-12-01T00:00:00+02:00": 102 + } + } + }, + "638a3301ed1c4c44d2a58839": { + "$overall": { + "2024-12-01T00:00:00+02:00": 150900 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 150900 + }, + "AgOnline-ResetPassword": { + "2024-12-01T00:00:00+02:00": 487 + }, + "account-activation": { + "2024-12-01T00:00:00+02:00": 582 + }, + "appointments-next-day": { + "2024-12-01T00:00:00+02:00": 149806 + }, + "auth-code": { + "2024-12-01T00:00:00+02:00": 25 + } + } + }, + "66032532f43359bff28c011f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304678 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304678 + }, + "basepricenudge": { + "2024-12-01T00:00:00+02:00": 67670 + }, + "noteReminder": { + "2024-12-01T00:00:00+02:00": 78 + }, + "minpricenudge": { + "2024-12-01T00:00:00+02:00": 189450 + }, + "onetimenotification": { + "2024-12-01T00:00:00+02:00": 4 + }, + "AIRBNB CONNECTION": { + "2024-12-01T00:00:00+02:00": 42 + }, + "inqdequateminbaseprice": { + "2024-12-01T00:00:00+02:00": 4369 + }, + "NON HLP SMALL USERS LESS THAN 10 LISTINGS": { + "2024-12-01T00:00:00+02:00": 43065 + } + } + }, + "6423f39a2586c27b11d98d84": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42866 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42866 + }, + "therapistAdded": { + "2024-12-01T00:00:00+02:00": 51 + }, + "dailyDigestPatient": { + "2024-12-01T00:00:00+02:00": 12380 + }, + "passwordUpdated": { + "2024-12-01T00:00:00+02:00": 339 + }, + "affiliateAdded": { + "2024-12-01T00:00:00+02:00": 62 + }, + "recordTransferred": { + "2024-12-01T00:00:00+02:00": 138 + }, + "passwordReset": { + "2024-12-01T00:00:00+02:00": 400 + }, + "newOrganisation": { + "2024-12-01T00:00:00+02:00": 86 + }, + "changeEmail": { + "2024-12-01T00:00:00+02:00": 19 + }, + "signUpInvite": { + "2024-12-01T00:00:00+02:00": 7 + }, + "questionnaireReminder": { + "2024-12-01T00:00:00+02:00": 2003 + }, + "removedFromRecord": { + "2024-12-01T00:00:00+02:00": 39 + }, + "therapistDeleted": { + "2024-12-01T00:00:00+02:00": 20 + }, + "interactionReminder": { + "2024-12-01T00:00:00+02:00": 9225 + }, + "chatDigest": { + "2024-12-01T00:00:00+02:00": 4475 + }, + "activityAltered": { + "2024-12-01T00:00:00+02:00": 1439 + }, + "recordInvite": { + "2024-12-01T00:00:00+02:00": 1845 + }, + "changeEmailNotification": { + "2024-12-01T00:00:00+02:00": 19 + }, + "documentDigestPatient": { + "2024-12-01T00:00:00+02:00": 1733 + }, + "emailUpdated": { + "2024-12-01T00:00:00+02:00": 15 + }, + "enableTwoFactor": { + "2024-12-01T00:00:00+02:00": 355 + }, + "confirmIntake": { + "2024-12-01T00:00:00+02:00": 320 + }, + "loginCode": { + "2024-12-01T00:00:00+02:00": 5849 + }, + "documentDigestTherapist": { + "2024-12-01T00:00:00+02:00": 236 + }, + "dailyDigestTherapists": { + "2024-12-01T00:00:00+02:00": 1810 + } + } + }, + "64469b1b4919b8d7cbf845ef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8354 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8354 + }, + "[EN] External-Buy-Order Has Been Delivered": { + "2024-12-01T00:00:00+02:00": 51 + }, + "[TC] External-Quotations-Quotation Ready": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[EN] External-Concierge Consignment- Consignment Approved, Ready for Listing": { + "2024-12-01T00:00:00+02:00": 26 + }, + "[EN] External-Listing Live-Consignment Period Extended": { + "2024-12-01T00:00:00+02:00": 37 + }, + "[EN] External-Offers (Sell)-Offer Cancelled By Buyer": { + "2024-12-01T00:00:00+02:00": 18 + }, + "[EN] External-Concierge Consignment-Watch Received For Authentication": { + "2024-12-01T00:00:00+02:00": 69 + }, + "[EN] External-Quotation-New Quotation Submission Confirmation": { + "2024-12-01T00:00:00+02:00": 173 + }, + "[TC] External-Concierge Consignment-(IF DROP-OFF) Watch Delivery Confirmation": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[EN] External-Concierge Consignment-(IF DROP-OFF) Watch Delivery Confirmation": { + "2024-12-01T00:00:00+02:00": 74 + }, + "[EN] External-Offers (buy)-Your Offer Was Not Accepted": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[EN] External-Listing Live-Sales Listing Published": { + "2024-12-01T00:00:00+02:00": 28 + }, + "[EN] External-Offers (Sell)-Offer Accepted By The Buyer": { + "2024-12-01T00:00:00+02:00": 20 + }, + "External-Whitegolve-Consignemnt-Confirmation-Request": { + "2024-12-01T00:00:00+02:00": 5 + }, + "[EN] External-Concierge Consignment-(Reminder) Arrange Your Watch Delivery To Wristcheck": { + "2024-12-01T00:00:00+02:00": 75 + }, + "[EN] External-Collection-Collection Verification Status Updated: Verified": { + "2024-12-01T00:00:00+02:00": 64 + }, + "[EN] Internal-Buy-Internal: Order Placed": { + "2024-12-01T00:00:00+02:00": 1254 + }, + "[EN] External-Listing Live-Listing Price Update Confirmation": { + "2024-12-01T00:00:00+02:00": 17 + }, + "[Internal] Magic Link": { + "2024-12-01T00:00:00+02:00": 529 + }, + "[EN] External-Offers (buy)-You Have Received A Counteroffer!": { + "2024-12-01T00:00:00+02:00": 43 + }, + "[EN] External-Concierge Consignment-Watch Sold": { + "2024-12-01T00:00:00+02:00": 34 + }, + "[EN] External-Concierge Consignment-Reminder: Complete Consignment": { + "2024-12-01T00:00:00+02:00": 95 + }, + "[EN] External-Concierge Consignment-Consignment Ready: Arrange your watch delivery to Wristcheck": { + "2024-12-01T00:00:00+02:00": 75 + }, + "[EN] External-Offers (Sell)-Counter Offer Confirmation": { + "2024-12-01T00:00:00+02:00": 44 + }, + "[EN] Internal-Concierge Consignment-Internal: New Consignment": { + "2024-12-01T00:00:00+02:00": 88 + }, + "[EN] External-Offers (Sell)-Your counter offer was rejected": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[EN] External-Offers (buy)-Buyer No Response To A Offer Within 24 Hours": { + "2024-12-01T00:00:00+02:00": 43 + }, + "[TC] External-Collection-Watch Data Refreshed From Catalogue": { + "2024-12-01T00:00:00+02:00": 6 + }, + "[EN] External-Signup/Login-Verify Your Email Address": { + "2024-12-01T00:00:00+02:00": 1226 + }, + "[EN] External-Signup/Login-Account Verification Success": { + "2024-12-01T00:00:00+02:00": 644 + }, + "[EN] External-Buy-Order Confirmation (IF Pickup)": { + "2024-12-01T00:00:00+02:00": 145 + }, + "[EN] External-Offers (Sell)-Receive Offer From Bidder": { + "2024-12-01T00:00:00+02:00": 65 + }, + "[EN] External-Quotations-Quotation Ready": { + "2024-12-01T00:00:00+02:00": 162 + }, + "[EN] External-Offers (Sell)-Received Counteroffer From Buyer": { + "2024-12-01T00:00:00+02:00": 26 + }, + "[EN] External-Buy-You Have 24 Hours To Complete Your Payment": { + "2024-12-01T00:00:00+02:00": 11 + }, + "[EN] External-Collection-Watch Data Refreshed From Catalogue": { + "2024-12-01T00:00:00+02:00": 319 + }, + "[EN] External-Quotations-Reject Quotation/Consignment": { + "2024-12-01T00:00:00+02:00": 6 + }, + "[EN] External-Signup/Login-Account Creation (Admin Portal User Creation)": { + "2024-12-01T00:00:00+02:00": 30 + }, + "[EN] External-Buy-Order Confirmation (IF Delivery)": { + "2024-12-01T00:00:00+02:00": 479 + }, + "[EN] External-Listing (live)-Watch consignment period ending soon": { + "2024-12-01T00:00:00+02:00": 62 + }, + "[EN] External-Offers (buy)-Offer Accepted 24 Hours To Complete Payment": { + "2024-12-01T00:00:00+02:00": 20 + }, + "[EN] External-Buy-Confirmation of full payment": { + "2024-12-01T00:00:00+02:00": 595 + }, + "[EN] Internal-Quotations-Internal (Consignment Team): Quotation Approval": { + "2024-12-01T00:00:00+02:00": 178 + }, + "[TC] External-Quotation-New Quotation Submission Confirmation": { + "2024-12-01T00:00:00+02:00": 5 + }, + "[EN] External-Quotations-(Reminder) 3 days Quotation Ready": { + "2024-12-01T00:00:00+02:00": 162 + }, + "[EN] External-Concierge Consignment-Watch Under Authentication": { + "2024-12-01T00:00:00+02:00": 63 + }, + "[EN] External-Concierge Consignment-(IF SHIPPING) (Reminder) Provide Us With The Courier And Shipping Details": { + "2024-12-01T00:00:00+02:00": 21 + }, + "[EN] Internal-Quotations-Internal (Webops, Consignment): New Watch From Quotation": { + "2024-12-01T00:00:00+02:00": 17 + }, + "[EN] External-Concierge Consignment-New Consignment Created": { + "2024-12-01T00:00:00+02:00": 19 + }, + "[TC] External-Quotations-(Reminder) 3 days Quotation Ready": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[EN] Internal-Buy-Internal: Proof Of Payment Upload": { + "2024-12-01T00:00:00+02:00": 44 + }, + "[EN] External-Concierge Consignment-(Individual seller + Dealer) Watch Return to Consignor": { + "2024-12-01T00:00:00+02:00": 8 + }, + "[EN] External-Concierge Consignment-Watch Details Updated Confirmation": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Core Forget Password": { + "2024-12-01T00:00:00+02:00": 130 + }, + "[EN] External-Quotations-Quotation Expired": { + "2024-12-01T00:00:00+02:00": 50 + }, + "[EN] External-Buy-Order On Its Way": { + "2024-12-01T00:00:00+02:00": 437 + }, + "[TC] External-Concierge Consignment-Reminder: Complete Consignment": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[EN] External-Concierge Consignment-Watch Authentication Approved": { + "2024-12-01T00:00:00+02:00": 58 + }, + "[EN] External-Concierge Consignment-Reminder: Schedule your watch drop-off time": { + "2024-12-01T00:00:00+02:00": 32 + }, + "[EN] External-Buy-Confirmation of deposit payment": { + "2024-12-01T00:00:00+02:00": 14 + }, + "[EN] External-Concierge Consignment-Watch Authentication Rejected": { + "2024-12-01T00:00:00+02:00": 5 + }, + "[TC] External-Concierge Consignment-(IF DROP-OFF) (Reminder) Watch Delivery": { + "2024-12-01T00:00:00+02:00": 4 + }, + "[EN] External-Concierge Consignment-Consignment Expired Notification": { + "2024-12-01T00:00:00+02:00": 32 + }, + "[EN] External-Buy-Order Is Ready For Pickup": { + "2024-12-01T00:00:00+02:00": 86 + }, + "[EN] External-Signup/Login-Reset Password Successful": { + "2024-12-01T00:00:00+02:00": 61 + }, + "[EN] External-Offers (buy)-Thank You For Placing An Offer": { + "2024-12-01T00:00:00+02:00": 64 + }, + "[EN] External-Concierge Consignment-Seller Policy Accepted Confirmation": { + "2024-12-01T00:00:00+02:00": 17 + }, + "[EN] External-Concierge Consignment-(IF DROP-OFF) (Reminder) Watch Delivery": { + "2024-12-01T00:00:00+02:00": 74 + } + } + }, + "634826ed27d50dea0ba493f9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24907 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24907 + }, + "single message with url": { + "2024-12-01T00:00:00+02:00": 24907 + } + } + }, + "66432c55c4df36a964927b2c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42654 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42654 + }, + "user-registered-3099-default-deliver-one": { + "2024-12-01T00:00:00+02:00": 7 + }, + "cp-jet-one-to-many-344001-nc2427-deliver-one": { + "2024-12-01T00:00:00+02:00": 36706 + }, + "cp-mediashuttle-344001-nc2427-deliver-one": { + "2024-12-01T00:00:00+02:00": 5070 + }, + "delivery-ftp-3099-default-deliver-one": { + "2024-12-01T00:00:00+02:00": 32 + }, + "delivery-s3-3099-default-deliver-one": { + "2024-12-01T00:00:00+02:00": 16 + }, + "cp-mediashuttle-344001-nc2427-deliver-weekly-freq1": { + "2024-12-01T00:00:00+02:00": 6 + }, + "cp-jet-344001-nc2427-deliver-one": { + "2024-12-01T00:00:00+02:00": 438 + }, + "user-registered-1883004-main-deliver-one": { + "2024-12-01T00:00:00+02:00": 6 + }, + "cp-jet-one-to-many-344001-nc2427-error": { + "2024-12-01T00:00:00+02:00": 233 + }, + "cp-jet-1883004-main-deliver-one": { + "2024-12-01T00:00:00+02:00": 9 + }, + "user-registered-344001-nc2427-deliver-one": { + "2024-12-01T00:00:00+02:00": 48 + }, + "cp-jet-344001-nc2427-error": { + "2024-12-01T00:00:00+02:00": 13 + }, + "user-password-changed-344001-nc2427-deliver-one": { + "2024-12-01T00:00:00+02:00": 10 + }, + "user-password-requested-344001-nc2427-deliver-one": { + "2024-12-01T00:00:00+02:00": 16 + }, + "cp-mediashuttle-344001-nc2427-deliver-daily-freq3": { + "2024-12-01T00:00:00+02:00": 6 + }, + "cp-mediashuttle-3099-default-deliver-one": { + "2024-12-01T00:00:00+02:00": 9 + }, + "delivery-s3-1883004-main-deliver-one": { + "2024-12-01T00:00:00+02:00": 17 + } + } + }, + "65537ecc00c55a508c06f6ce": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4925 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4925 + }, + "New order notification": { + "2024-12-01T00:00:00+02:00": 4925 + } + } + }, + "65e5c6dde5b9e5a88a318d93": { + "$overall": { + "2024-12-01T00:00:00+02:00": 697 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 697 + }, + "Dataset Notification": { + "2024-12-01T00:00:00+02:00": 697 + } + } + }, + "65af718b8e557ef0af46f7c0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9203 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9203 + }, + "User Account": { + "2024-12-01T00:00:00+02:00": 139 + }, + "Approval Request Status": { + "2024-12-01T00:00:00+02:00": 195 + }, + "Set Password": { + "2024-12-01T00:00:00+02:00": 19 + }, + "otp": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Order Canceled": { + "2024-12-01T00:00:00+02:00": 835 + }, + "Request Create": { + "2024-12-01T00:00:00+02:00": 1097 + }, + "Notify Merchant With Request Create": { + "2024-12-01T00:00:00+02:00": 84 + }, + "OTP": { + "2024-12-01T00:00:00+02:00": 100 + }, + "Order Update": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Return Order": { + "2024-12-01T00:00:00+02:00": 422 + }, + "Order Create": { + "2024-12-01T00:00:00+02:00": 6159 + }, + "Order Packed": { + "2024-12-01T00:00:00+02:00": 28 + }, + "payment": { + "2024-12-01T00:00:00+02:00": 24 + }, + "Return Order status Update": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Order Placed": { + "2024-12-01T00:00:00+02:00": 55 + } + } + }, + "6578af0c7500743a91038c4b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 400 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 400 + }, + "Default": { + "2024-12-01T00:00:00+02:00": 400 + } + } + }, + "64e3554548249e7e76aeffc3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3126 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3126 + }, + "On-boarding notification": { + "2024-12-01T00:00:00+02:00": 335 + }, + "Email Approvals Pending": { + "2024-12-01T00:00:00+02:00": 44 + }, + "Pending Email Approvals for 5 days": { + "2024-12-01T00:00:00+02:00": 127 + }, + "Scheduled Sequence is Started": { + "2024-12-01T00:00:00+02:00": 233 + }, + "Link in Email Clicked": { + "2024-12-01T00:00:00+02:00": 696 + }, + "Bulk Email Sender Re-Connect": { + "2024-12-01T00:00:00+02:00": 358 + }, + "Bulk Email Sender Upload Complete": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Reply Recieved": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Email List Verification is Complete": { + "2024-12-01T00:00:00+02:00": 42 + }, + "Email Sender has error": { + "2024-12-01T00:00:00+02:00": 1181 + }, + "Scheduled Sequence all Emails Sent & Tasks Complete": { + "2024-12-01T00:00:00+02:00": 64 + }, + "Deleting Empty List": { + "2024-12-01T00:00:00+02:00": 8 + } + } + }, + "65c17ff93086d5972f17c2d0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 766 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 766 + }, + "Issues updated": { + "2024-12-01T00:00:00+02:00": 312 + }, + "New comments on issues": { + "2024-12-01T00:00:00+02:00": 54 + }, + "New issues created": { + "2024-12-01T00:00:00+02:00": 314 + }, + "Issues assigned to me": { + "2024-12-01T00:00:00+02:00": 61 + }, + "Comments I'm mentioned in": { + "2024-12-01T00:00:00+02:00": 23 + } + } + }, + "63fbb0118920eed9471fa1b2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 645 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 645 + }, + "Intern Test": { + "2024-12-01T00:00:00+02:00": 111 + }, + "Workflow Notification": { + "2024-12-01T00:00:00+02:00": 532 + } + } + }, + "644a988e631887e5f000dae6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7272 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7272 + }, + "failed-outreach": { + "2024-12-01T00:00:00+02:00": 6224 + }, + "Product Created": { + "2024-12-01T00:00:00+02:00": 1048 + } + } + }, + "668d398684227ca750502c57": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31000 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31000 + }, + "Torneo in partenza": { + "2024-12-01T00:00:00+02:00": 4820 + }, + "New Client for Affiliate": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Torneo iniziato": { + "2024-12-01T00:00:00+02:00": 6690 + }, + "Torneo terminato": { + "2024-12-01T00:00:00+02:00": 6612 + }, + "Account affiliato approvato": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Nuova transazione": { + "2024-12-01T00:00:00+02:00": 3929 + }, + "Welcome To Tralent Bonus": { + "2024-12-01T00:00:00+02:00": 516 + }, + "Tournament Subscription Confirmed": { + "2024-12-01T00:00:00+02:00": 1998 + }, + "Welcome To Tralent": { + "2024-12-01T00:00:00+02:00": 76 + }, + "Tournament Unjoin": { + "2024-12-01T00:00:00+02:00": 90 + }, + "Torneo in scadenza": { + "2024-12-01T00:00:00+02:00": 5297 + }, + "KYC Status": { + "2024-12-01T00:00:00+02:00": 944 + } + } + }, + "648079c03a4ec8a5999d3eb1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 299 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 299 + }, + "New Record Notification": { + "2024-12-01T00:00:00+02:00": 299 + } + } + }, + "6685216144e8f8b477105e38": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2916 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2916 + }, + "TATA GCM Push": { + "2024-12-01T00:00:00+02:00": 2915 + } + } + }, + "64e32ac81e192345f283d627": { + "$overall": { + "2024-12-01T00:00:00+02:00": 844 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 844 + }, + "Password Changed": { + "2024-12-01T00:00:00+02:00": 5 + }, + "User Registered": { + "2024-12-01T00:00:00+02:00": 76 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Publisher Channels Disconnected": { + "2024-12-01T00:00:00+02:00": 119 + }, + "Campaign Deactivated": { + "2024-12-01T00:00:00+02:00": 100 + }, + "Publisher Not Active": { + "2024-12-01T00:00:00+02:00": 186 + }, + "Semi-Open Campaign Rejected": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Task Acceptance Requested": { + "2024-12-01T00:00:00+02:00": 25 + }, + "Closed Campaign Approved (advertiser)": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Closed Campaign Approved (influencer)": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Channel Force Disconnected": { + "2024-12-01T00:00:00+02:00": 221 + }, + "Publisher Activated": { + "2024-12-01T00:00:00+02:00": 67 + } + } + }, + "63fa339af93b4fa85aac153d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 486 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 486 + }, + "On-boarding notification": { + "2024-12-01T00:00:00+02:00": 486 + } + } + }, + "652e5833fff93419480c951b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146377 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146377 + }, + "Notification Laravel Stocklear": { + "2024-12-01T00:00:00+02:00": 146377 + } + } + }, + "646f08088b0b51ed17340c31": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18491 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18491 + }, + "ADHOC Notification Template": { + "2024-12-01T00:00:00+02:00": 17393 + }, + "Admin Notification": { + "2024-12-01T00:00:00+02:00": 432 + }, + "New Admin Chat Message": { + "2024-12-01T00:00:00+02:00": 351 + }, + "New task launched": { + "2024-12-01T00:00:00+02:00": 315 + } + } + }, + "665f34e28e2550325700cda9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "Followers": { + "2024-12-01T00:00:00+02:00": 318 + } + } + }, + "64c1760e3ec3e6a351ea3ba1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 707 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 707 + }, + "seed calculated": { + "2024-12-01T00:00:00+02:00": 707 + } + } + }, + "669d47da98a7c2cace1dea46": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304 + }, + "kpi-updates": { + "2024-12-01T00:00:00+02:00": 5 + }, + "task-updates": { + "2024-12-01T00:00:00+02:00": 14 + }, + "initiative-updates": { + "2024-12-01T00:00:00+02:00": 270 + }, + "kpi-target-updates": { + "2024-12-01T00:00:00+02:00": 15 + } + } + }, + "63b4a3edc2c62a5b4b374cc6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 583 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 583 + }, + "Content Published": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Invoice Status Updated": { + "2024-12-01T00:00:00+02:00": 189 + }, + "Content Approved": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Offer Accepted": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Offer Sent": { + "2024-12-01T00:00:00+02:00": 43 + }, + "Collaboration Message Added": { + "2024-12-01T00:00:00+02:00": 62 + }, + "Invoice Sent": { + "2024-12-01T00:00:00+02:00": 47 + }, + "Contact Added": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Content Message Added": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Contract Signature Reminded": { + "2024-12-01T00:00:00+02:00": 74 + }, + "Payout Deposit Updated": { + "2024-12-01T00:00:00+02:00": 55 + } + } + }, + "65ce436d99b1dce753411d4a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "Asset Notifications": { + "2024-12-01T00:00:00+02:00": 746 + } + } + }, + "6568b37faa67fd979c0b94d8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 326 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 326 + }, + "Elevator Price Alert": { + "2024-12-01T00:00:00+02:00": 326 + } + } + }, + "6314b4eb232b8996aaa4c9bc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2942 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2942 + }, + "impact-level": { + "2024-12-01T00:00:00+02:00": 626 + }, + "reminder": { + "2024-12-01T00:00:00+02:00": 70 + }, + "generic": { + "2024-12-01T00:00:00+02:00": 1273 + }, + "welcome": { + "2024-12-01T00:00:00+02:00": 973 + } + } + }, + "64fb853287135ffdc3b410ec": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4040 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4040 + }, + "New Voicemail": { + "2024-12-01T00:00:00+02:00": 458 + }, + "New SMS": { + "2024-12-01T00:00:00+02:00": 2501 + }, + "new-missed-call": { + "2024-12-01T00:00:00+02:00": 1081 + } + } + }, + "65f8f7959343b5be34ab729c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12792 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12792 + }, + "meo": { + "2024-12-01T00:00:00+02:00": 6502 + }, + "Open asset": { + "2024-12-01T00:00:00+02:00": 6290 + } + } + }, + "6433d2fc6e1e72f63f63b5fe": { + "$overall": { + "2024-12-01T00:00:00+02:00": 40483 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 40483 + }, + "Sign up email verification": { + "2024-12-01T00:00:00+02:00": 476 + }, + "AAA_SHARE_SECTION": { + "2024-12-01T00:00:00+02:00": 46 + }, + "AAA_PAGE_VIEW": { + "2024-12-01T00:00:00+02:00": 11391 + }, + "AAA_PAGE_VIEW_BLOCKED": { + "2024-12-01T00:00:00+02:00": 1880 + }, + "AAA_INTERNAL_USERS_ONBOARDING": { + "2024-12-01T00:00:00+02:00": 2889 + }, + "AAA_COMMENT": { + "2024-12-01T00:00:00+02:00": 6 + }, + "AAA_INVITE_PROSPECTS": { + "2024-12-01T00:00:00+02:00": 10289 + }, + "Payment Failed internal": { + "2024-12-01T00:00:00+02:00": 81 + }, + "Someone email update permissions": { + "2024-12-01T00:00:00+02:00": 7131 + }, + "Request Room": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Send reset password email": { + "2024-12-01T00:00:00+02:00": 114 + }, + "Auto-approve Pending-Approval users": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Invite Account Accept Increase Room": { + "2024-12-01T00:00:00+02:00": 26 + }, + "AAA_ARCHIVE_ROOM_VISIT": { + "2024-12-01T00:00:00+02:00": 208 + }, + "AAA_ACCOUNT_ACCEPT_INVITATION": { + "2024-12-01T00:00:00+02:00": 240 + }, + "AAA_OWNER_APPROVAL_USER": { + "2024-12-01T00:00:00+02:00": 56 + }, + "AAA_ACCOUNT_REINVITE_USER": { + "2024-12-01T00:00:00+02:00": 224 + }, + "AAA_ROOM_DUPLICATION": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Room Deleted By Admin": { + "2024-12-01T00:00:00+02:00": 47 + }, + "AAA_EMAIL_VERIFICATION": { + "2024-12-01T00:00:00+02:00": 240 + }, + "AAA_COMMENT_WITH_REPLAY": { + "2024-12-01T00:00:00+02:00": 2925 + }, + "AAA_ROOM_COLLABORATION": { + "2024-12-01T00:00:00+02:00": 463 + }, + "AAA_INVITE_PROSPECTS_REMINDER": { + "2024-12-01T00:00:00+02:00": 800 + }, + "AAA_ACCOUNT_INVITE_USER": { + "2024-12-01T00:00:00+02:00": 443 + }, + "AAA_OVERDUE_TASK": { + "2024-12-01T00:00:00+02:00": 133 + }, + "AAA_NUDGE_BUYER": { + "2024-12-01T00:00:00+02:00": 62 + }, + "CallToAction section Buyer Reply": { + "2024-12-01T00:00:00+02:00": 110 + }, + "Account Plan Canceled": { + "2024-12-01T00:00:00+02:00": 43 + }, + "AAA_NOTIFY_ASSIGN": { + "2024-12-01T00:00:00+02:00": 32 + }, + "AAA_OWNER_APPROVED_USER": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Payment Failed": { + "2024-12-01T00:00:00+02:00": 59 + } + } + }, + "66cedf34cf609b134361bfa7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "generic-push": { + "2024-12-01T00:00:00+02:00": 4626 + } + } + }, + "660b31f5b551758561fb037c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 370758 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 370758 + }, + "requestlist-duedatereminders-v1": { + "2024-12-01T00:00:00+02:00": 366052 + }, + "requestlist-actorsaddedtoitem-v1": { + "2024-12-01T00:00:00+02:00": 4706 + } + } + }, + "66b9e7e99c11077f0298542c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "assignee-added-in-defect": { + "2024-12-01T00:00:00+02:00": 56 + }, + "jobs-notification": { + "2024-12-01T00:00:00+02:00": 318 + } + } + }, + "65e0b87e3a2387ff89a82beb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 705 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 705 + }, + "trigger-in-app": { + "2024-12-01T00:00:00+02:00": 291 + }, + "Sign In": { + "2024-12-01T00:00:00+02:00": 414 + } + } + }, + "65887da2f14b6f3ef002d584": { + "$overall": { + "2024-12-01T00:00:00+02:00": 739 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 739 + }, + "success": { + "2024-12-01T00:00:00+02:00": 739 + } + } + }, + "654eb4b8d71fd8620c6d174e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9821 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9821 + }, + "Transport Order Delivered": { + "2024-12-01T00:00:00+02:00": 597 + }, + "Special Order At Warehouse": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Transport Order Scheduled": { + "2024-12-01T00:00:00+02:00": 158 + }, + "Special Order Created": { + "2024-12-01T00:00:00+02:00": 3443 + }, + "Outbound Order Staged": { + "2024-12-01T00:00:00+02:00": 1622 + }, + "Inbound Order Appt Late": { + "2024-12-01T00:00:00+02:00": 467 + }, + "Special Order Delivered": { + "2024-12-01T00:00:00+02:00": 48 + }, + "Transport Order At Warehouse": { + "2024-12-01T00:00:00+02:00": 191 + }, + "Outbound Order Appt Late": { + "2024-12-01T00:00:00+02:00": 425 + }, + "Outbound Order Appt Booked": { + "2024-12-01T00:00:00+02:00": 251 + }, + "Outbound Order Ship Qty Discrepancy": { + "2024-12-01T00:00:00+02:00": 24 + }, + "Inbound Order Created": { + "2024-12-01T00:00:00+02:00": 138 + }, + "Outbound Order Created": { + "2024-12-01T00:00:00+02:00": 1655 + }, + "Inbound Order Appt Booked": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Special Order Out For Delivery": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Transport Order Canceled": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Outbound Order Ship Date Passed": { + "2024-12-01T00:00:00+02:00": 750 + } + } + }, + "64d37f84045bf0282da7b498": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3184 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3184 + }, + "Notifications: upvote": { + "2024-12-01T00:00:00+02:00": 5 + }, + "One off meeting cancelled": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Package Bought Mentor": { + "2024-12-01T00:00:00+02:00": 144 + }, + "Webinar: Daily Analytics for Mentor": { + "2024-12-01T00:00:00+02:00": 24 + }, + "Package Bought Mentee": { + "2024-12-01T00:00:00+02:00": 142 + }, + "Auth: User Verification": { + "2024-12-01T00:00:00+02:00": 2269 + }, + "One-Off Meeting: Payment link Mentee": { + "2024-12-01T00:00:00+02:00": 588 + } + } + }, + "6593f529f58e905ecac5cf4b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18210 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18210 + }, + "Add Beneficiary": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Payment Rejected": { + "2024-12-01T00:00:00+02:00": 3233 + }, + "Bulk Payment Request Approval": { + "2024-12-01T00:00:00+02:00": 59 + }, + "Exchange Failed": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Payment Request Status": { + "2024-12-01T00:00:00+02:00": 163 + }, + "Outbound Notification": { + "2024-12-01T00:00:00+02:00": 2433 + }, + "verification-code": { + "2024-12-01T00:00:00+02:00": 61 + }, + "Bulk Payment Request": { + "2024-12-01T00:00:00+02:00": 651 + }, + "Daily Balance": { + "2024-12-01T00:00:00+02:00": 5086 + }, + "Daily Balance Summary": { + "2024-12-01T00:00:00+02:00": 1210 + }, + "Update Beneficiary": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Send Email Credentials": { + "2024-12-01T00:00:00+02:00": 26 + }, + "Access Persona Granted": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Inbound Notification": { + "2024-12-01T00:00:00+02:00": 4338 + }, + "Payment Request": { + "2024-12-01T00:00:00+02:00": 805 + }, + "Exchange Pending": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Welcome Email": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Exchange Completed": { + "2024-12-01T00:00:00+02:00": 35 + }, + "Account Closure": { + "2024-12-01T00:00:00+02:00": 10 + } + } + }, + "65f9e3b139829e6c76826cb5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 552563 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 552563 + }, + "Visit starting": { + "2024-12-01T00:00:00+02:00": 19088 + }, + "Late Clock In - Office": { + "2024-12-01T00:00:00+02:00": 518877 + }, + "Late Clock Out - Visitor": { + "2024-12-01T00:00:00+02:00": 1812 + }, + "Message Sent": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Late Clock In - Visitor": { + "2024-12-01T00:00:00+02:00": 12776 + } + } + }, + "62a0b9433de29f001cb6626f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2812 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2812 + }, + "Place 1st Order": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Resupply EOY Push 2024 Communications": { + "2024-12-01T00:00:00+02:00": 380 + }, + "Resupply Order Request Confirmation": { + "2024-12-01T00:00:00+02:00": 131 + }, + "hq-initial-email-betterconcierge": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Medical Records Approved": { + "2024-12-01T00:00:00+02:00": 4 + }, + "initial HQ reminder sms": { + "2024-12-01T00:00:00+02:00": 510 + }, + "Follow-up-HQ-initial": { + "2024-12-01T00:00:00+02:00": 455 + }, + "PS Session no show - reschedule confirmation & assist": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Post Peer Support Session feedback - reminder": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Overutilization Paperwork Needed": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Samples Request - Triggered via Awell": { + "2024-12-01T00:00:00+02:00": 8 + }, + "HQ initial email": { + "2024-12-01T00:00:00+02:00": 11 + }, + "ABN (Advance Beneficiary Notice) Needed": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Standard Written Order (SWO) Accepted": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Post Peer Support - Alliance and CSAT": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Wound Care Evaluation Needed": { + "2024-12-01T00:00:00+02:00": 7 + }, + "5th-day-HQ-reminder": { + "2024-12-01T00:00:00+02:00": 440 + }, + "Day3 HQ reminder - email": { + "2024-12-01T00:00:00+02:00": 454 + }, + "1st Email (All except E-commerce Transaction)": { + "2024-12-01T00:00:00+02:00": 196 + }, + "Resupply V2 Reminder Email (-1 Days)": { + "2024-12-01T00:00:00+02:00": 38 + }, + "Verbal Confirmation Received": { + "2024-12-01T00:00:00+02:00": 11 + }, + "NPS detractor-passive notification": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Home Health Discharge Verbal Confirmation Needed": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Resupply V2 Reminder Email (5 Days)": { + "2024-12-01T00:00:00+02:00": 5 + } + } + }, + "647e50e6720b54f89e06480e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 251 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 251 + }, + "000-1b Bestätigungscode Veranstalter": { + "2024-12-01T00:00:00+02:00": 12 + }, + "010-3-2 Direct Request Confirmation for Organizer": { + "2024-12-01T00:00:00+02:00": 5 + }, + "010-3-1 Direct Request Organizer to Formation": { + "2024-12-01T00:00:00+02:00": 5 + }, + "004-1 Passwort zurücksetzen": { + "2024-12-01T00:00:00+02:00": 6 + }, + "030-2 Participation Update for Musician": { + "2024-12-01T00:00:00+02:00": 6 + }, + "010-4 Invitation to Apply": { + "2024-12-01T00:00:00+02:00": 74 + }, + "000-2b Reminder Bestätigungscode Veranstalter": { + "2024-12-01T00:00:00+02:00": 5 + }, + "020-1 | New Package Booking": { + "2024-12-01T00:00:00+02:00": 6 + }, + "008-1 Invitation to Project New User": { + "2024-12-01T00:00:00+02:00": 40 + }, + "009-1 Invitation Project for existing User": { + "2024-12-01T00:00:00+02:00": 41 + }, + "030-1 Participation Insert for Musician": { + "2024-12-01T00:00:00+02:00": 27 + }, + "010-2 Message Formation to Organizer": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "64477125ac1c08f04edc14aa": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9881 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9881 + }, + "Comment Mention": { + "2024-12-01T00:00:00+02:00": 9881 + } + } + }, + "64aa3f5d5f8a9af8437ea498": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7861 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7861 + }, + "Upgrade tier": { + "2024-12-01T00:00:00+02:00": 320 + }, + "E-wallet registration": { + "2024-12-01T00:00:00+02:00": 117 + }, + "E-wallet top-up": { + "2024-12-01T00:00:00+02:00": 5372 + }, + "Promotion approved to Property Admin": { + "2024-12-01T00:00:00+02:00": 98 + }, + "Verify moblie number by AIS": { + "2024-12-01T00:00:00+02:00": 537 + }, + "Promotion is waiting for your approval AWC Admin": { + "2024-12-01T00:00:00+02:00": 169 + }, + "Sender friend is joining pikul": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Upcoming Coupon expiry": { + "2024-12-01T00:00:00+02:00": 193 + }, + "email-verification": { + "2024-12-01T00:00:00+02:00": 20 + }, + "User gets a coupon as a gift (B2B gift)": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Welcome to Pikul": { + "2024-12-01T00:00:00+02:00": 303 + }, + "Reset Password OTP": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Downgrade tier": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Verify Mobile Phone Number": { + "2024-12-01T00:00:00+02:00": 49 + }, + "Complete Profile": { + "2024-12-01T00:00:00+02:00": 285 + }, + "transfer-coupon-successful": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Pikul point received": { + "2024-12-01T00:00:00+02:00": 6 + }, + "successful-coupon-claim": { + "2024-12-01T00:00:00+02:00": 95 + }, + "Upcoming Membership expiration": { + "2024-12-01T00:00:00+02:00": 189 + }, + "User gets a gift coupon (Giveaway coupon)": { + "2024-12-01T00:00:00+02:00": 10 + } + } + }, + "62f93267cd5afb6ad39b12b1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 349 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 349 + }, + "popup-notifications": { + "2024-12-01T00:00:00+02:00": 64 + }, + "Ai Gen Notifications": { + "2024-12-01T00:00:00+02:00": 285 + } + } + }, + "64b4e554d82471a0444f8415": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "LeaderBoard Update": { + "2024-12-01T00:00:00+02:00": 45 + }, + "Claim Rewards": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Team Submission": { + "2024-12-01T00:00:00+02:00": 55 + } + } + }, + "6600f0d38453b14f2ff41c7d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "Job Needs Attention": { + "2024-12-01T00:00:00+02:00": 178 + }, + "Transform Finished in App": { + "2024-12-01T00:00:00+02:00": 252 + } + } + }, + "63d548c1a9b6cc61d4c3beb3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5307 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5307 + }, + "Work Cancelled": { + "2024-12-01T00:00:00+02:00": 252 + }, + "Start Work Soon": { + "2024-12-01T00:00:00+02:00": 277 + }, + "Duel Invited": { + "2024-12-01T00:00:00+02:00": 690 + }, + "Actions": { + "2024-12-01T00:00:00+02:00": 258 + }, + "Expensive Skill": { + "2024-12-01T00:00:00+02:00": 3504 + }, + "Start Work Reminder": { + "2024-12-01T00:00:00+02:00": 326 + } + } + }, + "64135799799e3c974d3f6426": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5047881 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5047881 + }, + "New Match": { + "2024-12-01T00:00:00+02:00": 4114525 + }, + "Allstar Gaming": { + "2024-12-01T00:00:00+02:00": 7148 + }, + "New Squad Clip": { + "2024-12-01T00:00:00+02:00": 426 + }, + "New Comment": { + "2024-12-01T00:00:00+02:00": 9 + }, + "New Follow": { + "2024-12-01T00:00:00+02:00": 3688 + }, + "New Clips": { + "2024-12-01T00:00:00+02:00": 816269 + }, + "New Mobile Clips": { + "2024-12-01T00:00:00+02:00": 105816 + } + } + }, + "640f33277df3c830240b71b4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 380 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 380 + }, + "Question support": { + "2024-12-01T00:00:00+02:00": 63 + }, + "Weekly family report": { + "2024-12-01T00:00:00+02:00": 133 + }, + "Invite for kid": { + "2024-12-01T00:00:00+02:00": 183 + } + } + }, + "65cb7ceb619fe4f9cf882165": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5543 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5543 + }, + "Push Notification": { + "2024-12-01T00:00:00+02:00": 5541 + } + } + }, + "6627a8d783dccfeec76eb3f3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2716 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2716 + }, + "logicballs-free-users": { + "2024-12-01T00:00:00+02:00": 2558 + }, + "logicballs-paid-users": { + "2024-12-01T00:00:00+02:00": 158 + } + } + }, + "64d7bb315b5e6bb444d4dd86": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7661 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7661 + }, + "timecard-submitted-on-behalf": { + "2024-12-01T00:00:00+02:00": 271 + }, + "Loan Out Approval Requested": { + "2024-12-01T00:00:00+02:00": 202 + }, + "Onboarding Edited": { + "2024-12-01T00:00:00+02:00": 566 + }, + "Timecard Changes Made": { + "2024-12-01T00:00:00+02:00": 2814 + }, + "timecard-submitted": { + "2024-12-01T00:00:00+02:00": 3612 + }, + "Loan Out Declined": { + "2024-12-01T00:00:00+02:00": 33 + }, + "timecard-changes-requested": { + "2024-12-01T00:00:00+02:00": 122 + }, + "Loan Out Approved": { + "2024-12-01T00:00:00+02:00": 41 + } + } + }, + "65fb16744fe3628e5e65fe2e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 379 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 379 + }, + "Closed-coupon-email-InApp-notif": { + "2024-12-01T00:00:00+02:00": 32 + }, + "Document Signature Completion": { + "2024-12-01T00:00:00+02:00": 4 + }, + "SendEmail": { + "2024-12-01T00:00:00+02:00": 24 + }, + "Live-coupon-email-InApp-notif": { + "2024-12-01T00:00:00+02:00": 26 + }, + "Live-coupon-InApp": { + "2024-12-01T00:00:00+02:00": 48 + }, + "cfc-80-percent-in-app": { + "2024-12-01T00:00:00+02:00": 24 + }, + "Closed-coupon-InApp": { + "2024-12-01T00:00:00+02:00": 220 + } + } + }, + "6639346438754624b559d51d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 277 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 277 + }, + "echo-notification": { + "2024-12-01T00:00:00+02:00": 277 + } + } + }, + "671f768afb21db27362e8d5f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8917 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8917 + }, + "in-app-notification": { + "2024-12-01T00:00:00+02:00": 8917 + } + } + }, + "63a988938099fc7fe0b9f12d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 409 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 409 + }, + "Crypto Transactions Email": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Update Information (KYC Failed)": { + "2024-12-01T00:00:00+02:00": 4 + }, + "fund-User-Account-from-elphinstone account": { + "2024-12-01T00:00:00+02:00": 32 + }, + "sign-up-non-us": { + "2024-12-01T00:00:00+02:00": 12 + }, + "Account Approved by Alpaca": { + "2024-12-01T00:00:00+02:00": 10 + }, + "cancel-pending-order": { + "2024-12-01T00:00:00+02:00": 20 + }, + "withdraw-funds-from-user-account": { + "2024-12-01T00:00:00+02:00": 10 + }, + "funds_update": { + "2024-12-01T00:00:00+02:00": 301 + } + } + }, + "656d49757b44306b3c820521": { + "$overall": { + "2024-12-01T00:00:00+02:00": 255 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 255 + }, + "new-opportunity-created": { + "2024-12-01T00:00:00+02:00": 255 + } + } + }, + "667b514853d09da0827f2c20": { + "$overall": { + "2024-12-01T00:00:00+02:00": 50 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 50 + }, + "account-verification-code": { + "2024-12-01T00:00:00+02:00": 34 + }, + "account-verification-code-sms": { + "2024-12-01T00:00:00+02:00": 16 + } + } + }, + "6634cbe4612e6f34a400b05e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 241 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 241 + }, + "View Updated": { + "2024-12-01T00:00:00+02:00": 11 + }, + "Updated assets": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Unknown reports": { + "2024-12-01T00:00:00+02:00": 117 + }, + "Request Documentation": { + "2024-12-01T00:00:00+02:00": 102 + } + } + }, + "650b644a42707458fe431762": { + "$overall": { + "2024-12-01T00:00:00+02:00": 125 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 125 + }, + "challenge.created": { + "2024-12-01T00:00:00+02:00": 40 + }, + "challenge.user.join": { + "2024-12-01T00:00:00+02:00": 13 + }, + "challenge.complete.winner.winner": { + "2024-12-01T00:00:00+02:00": 55 + }, + "challenge.started": { + "2024-12-01T00:00:00+02:00": 15 + } + } + }, + "673b3b592f10dba8e8616a90": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1396 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1396 + }, + "task-assignment": { + "2024-12-01T00:00:00+02:00": 40 + }, + "org-user-digest": { + "2024-12-01T00:00:00+02:00": 1354 + } + } + }, + "638241fa15685362a30e0365": { + "$overall": { + "2024-12-01T00:00:00+02:00": 480 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 480 + }, + "assignor-erp-integration-success": { + "2024-12-01T00:00:00+02:00": 98 + }, + "assignor-erp-integration-failure": { + "2024-12-01T00:00:00+02:00": 7 + }, + "operational-pending-issues": { + "2024-12-01T00:00:00+02:00": 148 + }, + "Notify ccb operation status": { + "2024-12-01T00:00:00+02:00": 227 + } + } + }, + "64341d3fd766fd13ee96b6a1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 830 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 830 + }, + "Experiment Created": { + "2024-12-01T00:00:00+02:00": 428 + }, + "Experiment Finished": { + "2024-12-01T00:00:00+02:00": 402 + } + } + }, + "65eb2863bd6a1b3de8913c21": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2661 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2661 + }, + "User Invited (Local and External)": { + "2024-12-01T00:00:00+02:00": 248 + }, + "The Community - Global Email": { + "2024-12-01T00:00:00+02:00": 284 + }, + "The Community - Global In-app": { + "2024-12-01T00:00:00+02:00": 2129 + } + } + }, + "64ef9990faeddba41ef3caae": { + "$overall": { + "2024-12-01T00:00:00+02:00": 689 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 689 + }, + "Notifica transação efetivada": { + "2024-12-01T00:00:00+02:00": 278 + }, + "Notifica reativação pares transacionais": { + "2024-12-01T00:00:00+02:00": 18 + }, + "Notifica pre autorização de reserva": { + "2024-12-01T00:00:00+02:00": 9 + }, + "notifica-fatura-fechada": { + "2024-12-01T00:00:00+02:00": 125 + }, + "Notifica Proposta Pendente de Aprovação": { + "2024-12-01T00:00:00+02:00": 259 + } + } + }, + "646327aed6925ea19b9c43ea": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4276 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4276 + }, + "credentials-changed-notification-template": { + "2024-12-01T00:00:00+02:00": 4276 + } + } + }, + "65f3db2b4599fa000c2becc7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 575 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 575 + }, + "sendOrderPushNotificationToClient": { + "2024-12-01T00:00:00+02:00": 19 + }, + "Sent Otp to Sms": { + "2024-12-01T00:00:00+02:00": 556 + } + } + }, + "63a81723bee1d5aed77eeecc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 246 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 246 + }, + "login-notification": { + "2024-12-01T00:00:00+02:00": 246 + } + } + }, + "6523e5f01941f73be45e3ac3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 875 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 875 + }, + "Plaintiff Characteristic Changes Submitted": { + "2024-12-01T00:00:00+02:00": 22 + }, + "Plaintiff Finding - Running Campaign": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Plaintiff Finding - Characteristics Suggested": { + "2024-12-01T00:00:00+02:00": 23 + }, + "Plaintiff Finding - Characteristics Revised": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Plaintiff Finding - Plaintiff Status Change": { + "2024-12-01T00:00:00+02:00": 309 + }, + "Static - Report was completed": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Where Is Efi": { + "2024-12-01T00:00:00+02:00": 30 + }, + "New communication - Darrow side": { + "2024-12-01T00:00:00+02:00": 187 + }, + "Plaintiff Finding - Potential Plaintiff Identified": { + "2024-12-01T00:00:00+02:00": 65 + }, + "Plaintiff Finding - Potential Plaintiff Reminder": { + "2024-12-01T00:00:00+02:00": 34 + }, + "New communication - User side": { + "2024-12-01T00:00:00+02:00": 54 + }, + "New Case Assignment": { + "2024-12-01T00:00:00+02:00": 92 + }, + "Plaintiff Finding - Mass Arbitration - New Plaintiff's Reminder": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "65e5b2bac09e1cf82ec747bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 514 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 514 + }, + "Network - user answer follow request": { + "2024-12-01T00:00:00+02:00": 168 + }, + "Onboarding": { + "2024-12-01T00:00:00+02:00": 64 + }, + "Network - user create follow request": { + "2024-12-01T00:00:00+02:00": 281 + } + } + }, + "63362369e2a2de81df9b0573": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1493 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1493 + }, + "ORDER_CHANGE_REQUEST_UPDATED": { + "2024-12-01T00:00:00+02:00": 683 + }, + "SUBSCRIPTION_INVOICE_PAID": { + "2024-12-01T00:00:00+02:00": 61 + }, + "Order change request added": { + "2024-12-01T00:00:00+02:00": 195 + }, + "ORDER_CHANGE_REQUEST_NEW_COMMENT": { + "2024-12-01T00:00:00+02:00": 174 + }, + "ORDER_CHANGE_REQUEST_ARCHIVED": { + "2024-12-01T00:00:00+02:00": 10 + }, + "ORDER_CHANGE_REQUEST_USER_MENTIONED_IN_COMMENT": { + "2024-12-01T00:00:00+02:00": 36 + }, + "ORDER_CHANGE_REQUEST_ASSIGNEE_CHANGED": { + "2024-12-01T00:00:00+02:00": 103 + }, + "UPLOAD_SESSION_FILE_WILL_BE_DELETED": { + "2024-12-01T00:00:00+02:00": 68 + }, + "SUBSCRIPTION_INVOICE_UPCOMING": { + "2024-12-01T00:00:00+02:00": 43 + }, + "CSC_LICENSE_KEY_EXPIRED": { + "2024-12-01T00:00:00+02:00": 34 + }, + "SUBSCRIPTION_PAYMENT_FAILED": { + "2024-12-01T00:00:00+02:00": 84 + } + } + }, + "653fbf348928fc83db032ef4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 600 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 600 + }, + "Email confirmed": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Email Confirmed": { + "2024-12-01T00:00:00+02:00": 52 + }, + "Password Reset Request": { + "2024-12-01T00:00:00+02:00": 19 + }, + "On Boarding Notification": { + "2024-12-01T00:00:00+02:00": 498 + }, + "Password Reset": { + "2024-12-01T00:00:00+02:00": 18 + } + } + }, + "64c3f5e72df653eabdc06c32": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3964 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3964 + }, + "deletelist_error": { + "2024-12-01T00:00:00+02:00": 28 + }, + "Generic_Notification": { + "2024-12-01T00:00:00+02:00": 3936 + } + } + }, + "66cbf5decf609b134349ac56": { + "$overall": { + "2024-12-01T00:00:00+02:00": 925 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 925 + }, + "BRAND_SPONSORSHIP_INCREASE": { + "2024-12-01T00:00:00+02:00": 370 + }, + "CATEGORY_SPONSORSHIP_TOTAL": { + "2024-12-01T00:00:00+02:00": 227 + }, + "BRAND_SPEND_INCREASE": { + "2024-12-01T00:00:00+02:00": 328 + } + } + }, + "6554c9199139d6b01f88625d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "Order Placed - Admin": { + "2024-12-01T00:00:00+02:00": 33 + }, + "Customer Password Reset": { + "2024-12-01T00:00:00+02:00": 29 + }, + "User verified": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Offer Update Created": { + "2024-12-01T00:00:00+02:00": 110 + }, + "Order Placed": { + "2024-12-01T00:00:00+02:00": 33 + }, + "Channel Message Created": { + "2024-12-01T00:00:00+02:00": 115 + }, + "Order Shipment Created": { + "2024-12-01T00:00:00+02:00": 24 + } + } + }, + "63bcf68d35958e9aa59578ff": { + "$overall": { + "2024-12-01T00:00:00+02:00": 498 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 498 + }, + "cnc-notification": { + "2024-12-01T00:00:00+02:00": 498 + } + } + }, + "66cb2b9ecf609b1343ac5d85": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2170 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2170 + }, + "admin-subscriptions": { + "2024-12-01T00:00:00+02:00": 42 + }, + "admin-accounts": { + "2024-12-01T00:00:00+02:00": 2128 + } + } + }, + "6448e3efe2067a03ba33cbb7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3527 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3527 + }, + "fcm-task-scheduled-msg-stage": { + "2024-12-01T00:00:00+02:00": 3527 + } + } + }, + "642d9001c6b53aa5dd5124f5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 734024 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 734024 + }, + "Newclus Digest": { + "2024-12-01T00:00:00+02:00": 3120 + }, + "Daily Digest": { + "2024-12-01T00:00:00+02:00": 137090 + }, + "Cluster In-App": { + "2024-12-01T00:00:00+02:00": 593814 + } + } + }, + "63ecb58fd38e757796a68c1c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3793037 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3793037 + }, + "bidding_started": { + "2024-12-01T00:00:00+02:00": 77143 + }, + "Magic Link": { + "2024-12-01T00:00:00+02:00": 23912 + }, + "Achievement - Top Selling Broker": { + "2024-12-01T00:00:00+02:00": 52 + }, + "myhomevaluationupdate": { + "2024-12-01T00:00:00+02:00": 132964 + }, + "Achievement - Top Clicked Listing": { + "2024-12-01T00:00:00+02:00": 279 + }, + "firsttimeforsale": { + "2024-12-01T00:00:00+02:00": 3756 + }, + "(FDF) Second payment reminder": { + "2024-12-01T00:00:00+02:00": 777 + }, + "newlistings": { + "2024-12-01T00:00:00+02:00": 3552380 + }, + "(FDF) First payment reminder": { + "2024-12-01T00:00:00+02:00": 1432 + }, + "livestream": { + "2024-12-01T00:00:00+02:00": 342 + } + } + }, + "66ab0c482a0b42870f2dadef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5080 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5080 + }, + "welcome-member": { + "2024-12-01T00:00:00+02:00": 1640 + }, + "unlock-reward": { + "2024-12-01T00:00:00+02:00": 1911 + }, + "reward-summary": { + "2024-12-01T00:00:00+02:00": 1502 + }, + "reward-summary-sms": { + "2024-12-01T00:00:00+02:00": 27 + } + } + }, + "64e793a5dd99c21f1ef1ddcb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 39739 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 39739 + }, + "Reset Password": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Student Passport - Request Completed": { + "2024-12-01T00:00:00+02:00": 37 + }, + "The Community - Global Email": { + "2024-12-01T00:00:00+02:00": 22079 + }, + "The Community - Global In-app": { + "2024-12-01T00:00:00+02:00": 17459 + }, + "Student Passport - New Request Notifications": { + "2024-12-01T00:00:00+02:00": 18 + }, + "User Invited (Local and External)": { + "2024-12-01T00:00:00+02:00": 135 + } + } + }, + "667d2415de5890bc6c29b3cc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5781 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5781 + }, + "GBC": { + "2024-12-01T00:00:00+02:00": 1088 + }, + "GBC_Delay": { + "2024-12-01T00:00:00+02:00": 4693 + } + } + }, + "674586592c32fe389f95879e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95 + }, + "AdvertiserBalanceLow": { + "2024-12-01T00:00:00+02:00": 91 + } + } + }, + "6494e6cab1ef6a7f8830e871": { + "$overall": { + "2024-12-01T00:00:00+02:00": 279 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 279 + }, + "Resume Rejected Hors domaine": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Poste expiré": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Resume Rejected Candidature internationale": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Apply Candidate": { + "2024-12-01T00:00:00+02:00": 76 + }, + "Votre poste est retourné en haut de liste": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Votre profil a été approuvé": { + "2024-12-01T00:00:00+02:00": 92 + }, + "Visibilité de votre profil expiré": { + "2024-12-01T00:00:00+02:00": 48 + } + } + }, + "658e6a3b0ad62708782a93bf": { + "$overall": { + "2024-12-01T00:00:00+02:00": 308 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 308 + }, + "In App Notification": { + "2024-12-01T00:00:00+02:00": 308 + } + } + }, + "62ac67523de29f001cb8bfdb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 329 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 329 + }, + "Invite to Werk test": { + "2024-12-01T00:00:00+02:00": 329 + } + } + }, + "659d3b40f58e905eca1793b0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 354 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 354 + }, + "Test notification": { + "2024-12-01T00:00:00+02:00": 354 + } + } + }, + "655c93211a91da1b109bea70": { + "$overall": { + "2024-12-01T00:00:00+02:00": 632 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 632 + }, + "Inbox updates": { + "2024-12-01T00:00:00+02:00": 440 + }, + "Comment": { + "2024-12-01T00:00:00+02:00": 99 + }, + "Campaign updates": { + "2024-12-01T00:00:00+02:00": 34 + }, + "Direct mention": { + "2024-12-01T00:00:00+02:00": 59 + } + } + }, + "64df0f4ea9172aa4b7052247": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11734 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11734 + }, + "task-summary": { + "2024-12-01T00:00:00+02:00": 694 + }, + "primary-workflow": { + "2024-12-01T00:00:00+02:00": 7354 + }, + "secondary-workflow": { + "2024-12-01T00:00:00+02:00": 3686 + } + } + }, + "6605a26d8b3193b7f042cff3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 250 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 250 + }, + "[GFI Research] Xác minh thay đổi Email": { + "2024-12-01T00:00:00+02:00": 13 + }, + "[GFI Research] Nạp tiền thành công": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Untitled": { + "2024-12-01T00:00:00+02:00": 5 + }, + "[GFI Research] Send notification with mail": { + "2024-12-01T00:00:00+02:00": 55 + }, + "[GFI Research] Kích hoạt tài khoản của bạn": { + "2024-12-01T00:00:00+02:00": 24 + }, + "[GFI Research] Thông báo bài viết mới": { + "2024-12-01T00:00:00+02:00": 45 + }, + "[GFI Research] Xác minh đăng nhập": { + "2024-12-01T00:00:00+02:00": 81 + }, + "[GFI Research] Khôi phục mật khẩu": { + "2024-12-01T00:00:00+02:00": 9 + } + } + }, + "63cea3496779056a3f2fff8d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "firstTimeOrderConfirmation for subscriber 352": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Admin Webhook Disabled": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Admin New Patient": { + "2024-12-01T00:00:00+02:00": 158 + }, + "First Time Order Confirmation": { + "2024-12-01T00:00:00+02:00": 112 + }, + "New Refill": { + "2024-12-01T00:00:00+02:00": 5 + }, + "firstTimeOrderConfirmation for subscriber 421": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Admin Daily Report": { + "2024-12-01T00:00:00+02:00": 92 + }, + "Patient Welcome for subscriber 423": { + "2024-12-01T00:00:00+02:00": 6 + }, + "Admin New Order": { + "2024-12-01T00:00:00+02:00": 213 + }, + "Patient Welcome": { + "2024-12-01T00:00:00+02:00": 126 + }, + "Order Confirmation": { + "2024-12-01T00:00:00+02:00": 70 + }, + "Patient OTP": { + "2024-12-01T00:00:00+02:00": 339 + }, + "Checkin Renewal for subscriber 437": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Order Receipt": { + "2024-12-01T00:00:00+02:00": 79 + } + } + }, + "6463ebef60f1803b3a6fbf6b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95170 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95170 + }, + "Adjustment Charges": { + "2024-12-01T00:00:00+02:00": 3158 + }, + "Cancellations": { + "2024-12-01T00:00:00+02:00": 2904 + }, + "Pickups": { + "2024-12-01T00:00:00+02:00": 26808 + }, + "PRO Number Updates": { + "2024-12-01T00:00:00+02:00": 9533 + }, + "Reschedules": { + "2024-12-01T00:00:00+02:00": 25847 + }, + "Deliveries": { + "2024-12-01T00:00:00+02:00": 26919 + } + } + }, + "67475e932c32fe389fa51052": { + "$overall": { + "2024-12-01T00:00:00+02:00": 486 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 486 + }, + "in-app-only": { + "2024-12-01T00:00:00+02:00": 486 + } + } + }, + "651fa9f835fbd6284965127c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2551 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2551 + }, + "New Vulnerability": { + "2024-12-01T00:00:00+02:00": 257 + }, + "New report": { + "2024-12-01T00:00:00+02:00": 2290 + } + } + }, + "643d4f7130bdc004e35b8b0e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1325 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1325 + }, + "new-news-in-favorite": { + "2024-12-01T00:00:00+02:00": 1325 + } + } + }, + "6335791aee1316a5c89b6d93": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7964 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7964 + }, + "offer_accepted": { + "2024-12-01T00:00:00+02:00": 139 + }, + "Offer/Order: Generic Message": { + "2024-12-01T00:00:00+02:00": 1667 + }, + "Subcontractor Assignment Decision": { + "2024-12-01T00:00:00+02:00": 336 + }, + "Tasks: Generic Message": { + "2024-12-01T00:00:00+02:00": 193 + }, + "new_task": { + "2024-12-01T00:00:00+02:00": 310 + }, + "Subcontractor Assignment Generic Message": { + "2024-12-01T00:00:00+02:00": 5319 + } + } + }, + "6447d7ccf2e1143129042903": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5661 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5661 + }, + "email-update-otp": { + "2024-12-01T00:00:00+02:00": 9 + }, + "iapp-push-notification": { + "2024-12-01T00:00:00+02:00": 2230 + }, + "push-email-notification": { + "2024-12-01T00:00:00+02:00": 1945 + }, + "payment-reminder": { + "2024-12-01T00:00:00+02:00": 42 + }, + "reset-password-email": { + "2024-12-01T00:00:00+02:00": 5 + }, + "invite-contact": { + "2024-12-01T00:00:00+02:00": 84 + }, + "reset-pass-alert": { + "2024-12-01T00:00:00+02:00": 6 + }, + "contact-signature": { + "2024-12-01T00:00:00+02:00": 8 + }, + "payment-reminder-past": { + "2024-12-01T00:00:00+02:00": 497 + }, + "sms-workflow": { + "2024-12-01T00:00:00+02:00": 835 + } + } + }, + "639c385254ca30325e86f445": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17518 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17518 + }, + "2 days before next installment": { + "2024-12-01T00:00:00+02:00": 936 + }, + "Merchant's credit line application rejected": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Pending Installment Payment Successful": { + "2024-12-01T00:00:00+02:00": 835 + }, + "Credit line unblocked by the admin": { + "2024-12-01T00:00:00+02:00": 4 + }, + "Invoice Completely Paid": { + "2024-12-01T00:00:00+02:00": 119 + }, + "Installment auto-debited from wallet": { + "2024-12-01T00:00:00+02:00": 1268 + }, + "Chasback has expired": { + "2024-12-01T00:00:00+02:00": 9 + }, + "Change in company details by admin": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Invoice Due For Payment": { + "2024-12-01T00:00:00+02:00": 23 + }, + "1 day before next installment": { + "2024-12-01T00:00:00+02:00": 1087 + }, + "Admin custom installment notifications": { + "2024-12-01T00:00:00+02:00": 6960 + }, + "Cashback has been won": { + "2024-12-01T00:00:00+02:00": 14 + }, + "New Invoice Request Received": { + "2024-12-01T00:00:00+02:00": 191 + }, + "Cashback about to expire": { + "2024-12-01T00:00:00+02:00": 52 + }, + "ADMIN_CUSTOM_NOTIFICATION": { + "2024-12-01T00:00:00+02:00": 800 + }, + "Wallet has been topped-up successfully": { + "2024-12-01T00:00:00+02:00": 50 + }, + "Installment Overdue": { + "2024-12-01T00:00:00+02:00": 4039 + }, + "On due date of an installment": { + "2024-12-01T00:00:00+02:00": 1099 + } + } + }, + "64747ec18b0b51ed1741923d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "adminPanel-workflow": { + "2024-12-01T00:00:00+02:00": 28 + }, + "channelLikes-workflow-Russian": { + "2024-12-01T00:00:00+02:00": 72 + }, + "sharePage-workflow": { + "2024-12-01T00:00:00+02:00": 241 + }, + "sharePage-workflow-Russian": { + "2024-12-01T00:00:00+02:00": 349 + }, + "unregisteredChannel-workflow": { + "2024-12-01T00:00:00+02:00": 7 + }, + "unregisteredChannel-workflow-Russian": { + "2024-12-01T00:00:00+02:00": 5 + }, + "channelLikes-workflow": { + "2024-12-01T00:00:00+02:00": 44 + } + } + }, + "64c7be962df653eabd0a53dd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "Technical Debt Alert": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Build Completed": { + "2024-12-01T00:00:00+02:00": 656 + } + } + }, + "63215ba3a4ca4df9242c24c4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "Reset Password": { + "2024-12-01T00:00:00+02:00": 13 + }, + "FILE_UPLOAD": { + "2024-12-01T00:00:00+02:00": 187 + }, + "User Welcome Email": { + "2024-12-01T00:00:00+02:00": 20 + }, + "incorrect-password": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Client UserAccount verification": { + "2024-12-01T00:00:00+02:00": 14 + }, + "Account Verification": { + "2024-12-01T00:00:00+02:00": 27 + }, + "Schedule Project": { + "2024-12-01T00:00:00+02:00": 392 + } + } + }, + "65799faaab5221590f7f1cc1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 305 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 305 + }, + "Installer App": { + "2024-12-01T00:00:00+02:00": 130 + }, + "Beta Survey": { + "2024-12-01T00:00:00+02:00": 15 + }, + "Customer Onboarding": { + "2024-12-01T00:00:00+02:00": 160 + } + } + }, + "64ee088296eacf2243b8b25b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2759 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2759 + }, + "Due Date Reminder": { + "2024-12-01T00:00:00+02:00": 903 + }, + "Task Assigned": { + "2024-12-01T00:00:00+02:00": 473 + }, + "Task Pending": { + "2024-12-01T00:00:00+02:00": 16 + }, + "Ticket Deleted": { + "2024-12-01T00:00:00+02:00": 398 + }, + "Core Field Changed": { + "2024-12-01T00:00:00+02:00": 94 + }, + "Message Notification": { + "2024-12-01T00:00:00+02:00": 8 + }, + "Comment Added": { + "2024-12-01T00:00:00+02:00": 330 + }, + "Task Claimed": { + "2024-12-01T00:00:00+02:00": 37 + }, + "Ticket Created": { + "2024-12-01T00:00:00+02:00": 55 + }, + "Daily Summary": { + "2024-12-01T00:00:00+02:00": 358 + }, + "Due Date Crossed": { + "2024-12-01T00:00:00+02:00": 20 + }, + "Task Assigned To Be Claimed": { + "2024-12-01T00:00:00+02:00": 67 + } + } + }, + "6524263d72a8166dd08346c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6441 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6441 + }, + "partners-create-indication": { + "2024-12-01T00:00:00+02:00": 53 + }, + "partner-alert-notification": { + "2024-12-01T00:00:00+02:00": 5413 + }, + "status-comercial-vendas": { + "2024-12-01T00:00:00+02:00": 10 + }, + "RMA-SOLICITACAO-FABRICA": { + "2024-12-01T00:00:00+02:00": 40 + }, + "STATUS-RMA-CONCESSIONARIO": { + "2024-12-01T00:00:00+02:00": 9 + }, + "criado-venda": { + "2024-12-01T00:00:00+02:00": 33 + }, + "STATUS-RMA-FABRICA": { + "2024-12-01T00:00:00+02:00": 438 + }, + "STATUS-RMA-CLIENTE": { + "2024-12-01T00:00:00+02:00": 29 + }, + "partners-update-nf": { + "2024-12-01T00:00:00+02:00": 178 + }, + "partners-update-indication": { + "2024-12-01T00:00:00+02:00": 234 + } + } + }, + "6572fd669788e6811d7b4d64": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4915 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4915 + }, + "Gallery Download": { + "2024-12-01T00:00:00+02:00": 3575 + }, + "Selection Notify": { + "2024-12-01T00:00:00+02:00": 859 + }, + "Favorite Photo Comment": { + "2024-12-01T00:00:00+02:00": 343 + }, + "Review Received": { + "2024-12-01T00:00:00+02:00": 138 + } + } + }, + "67219003d36466abaeb1f995": { + "$overall": { + "2024-12-01T00:00:00+02:00": 348 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 348 + }, + "crm-notification": { + "2024-12-01T00:00:00+02:00": 348 + } + } + }, + "647d42173a4ec8a59984c750": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13970 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13970 + }, + "Allocation Success Driver": { + "2024-12-01T00:00:00+02:00": 4495 + }, + "Allocation Manual Success": { + "2024-12-01T00:00:00+02:00": 1852 + }, + "Allocation Success": { + "2024-12-01T00:00:00+02:00": 2469 + }, + "Allocation Manual": { + "2024-12-01T00:00:00+02:00": 988 + }, + "Order Create": { + "2024-12-01T00:00:00+02:00": 2411 + }, + "Order Drop Off": { + "2024-12-01T00:00:00+02:00": 1653 + }, + "Add Leads": { + "2024-12-01T00:00:00+02:00": 102 + } + } + }, + "65453e2c44cca773bdf1cdd7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19 + }, + "Account Activation": { + "2024-12-01T00:00:00+02:00": 19 + } + } + }, + "63b86f5db775d8ef0ed8f08f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20721 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20721 + }, + "SUPO In-App notification": { + "2024-12-01T00:00:00+02:00": 20721 + } + } + }, + "630cb844fafbba9bf010f186": { + "$overall": { + "2024-12-01T00:00:00+02:00": 45977 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 45977 + }, + "Equipment Document Expiry Alerts": { + "2024-12-01T00:00:00+02:00": 1710 + }, + "Upcoming maintenance alerts": { + "2024-12-01T00:00:00+02:00": 144 + }, + "Restricted Geofence Violation": { + "2024-12-01T00:00:00+02:00": 28695 + }, + "Idling Alerts": { + "2024-12-01T00:00:00+02:00": 13895 + }, + "Crash Detection Violations": { + "2024-12-01T00:00:00+02:00": 523 + }, + "New Request Update": { + "2024-12-01T00:00:00+02:00": 75 + }, + "New Ad-Hoc Request": { + "2024-12-01T00:00:00+02:00": 36 + }, + "Equipment Request Update": { + "2024-12-01T00:00:00+02:00": 399 + }, + "Equipment Order Created": { + "2024-12-01T00:00:00+02:00": 5 + }, + "Low Fuel Alerts (Tanks)": { + "2024-12-01T00:00:00+02:00": 417 + }, + "New Maintenance Assigned": { + "2024-12-01T00:00:00+02:00": 10 + }, + "Maintenance Updated": { + "2024-12-01T00:00:00+02:00": 68 + } + } + }, + "674e32b62c32fe389f0ea40a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 339 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 339 + }, + "overstock-workflow": { + "2024-12-01T00:00:00+02:00": 7 + }, + "suggested-restocks-workflow": { + "2024-12-01T00:00:00+02:00": 233 + }, + "overdue-po-workflow": { + "2024-12-01T00:00:00+02:00": 34 + }, + "a-new-member-joining-the-team": { + "2024-12-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15 + }, + "daily-summary-workflow": { + "2024-12-01T00:00:00+02:00": 41 + } + } + }, + "6540cb89c086274eec8fb0b1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11329 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11329 + }, + "Transaction": { + "2024-12-01T00:00:00+02:00": 78 + }, + "Transactions": { + "2024-12-01T00:00:00+02:00": 10704 + }, + "Invoice Overdue": { + "2024-12-01T00:00:00+02:00": 519 + }, + "Inbox Match": { + "2024-12-01T00:00:00+02:00": 17 + }, + "Invoice Paid": { + "2024-12-01T00:00:00+02:00": 9 + } + } + }, + "636044f61fbb8368897eadbc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 36118 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 36118 + }, + "GoogleAccountLink": { + "2024-12-01T00:00:00+02:00": 193 + }, + "SaladStoreSurvey5-30-24": { + "2024-12-01T00:00:00+02:00": 5 + }, + "NotStarChef": { + "2024-12-01T00:00:00+02:00": 6 + }, + "3090/4080ReactivationDec-2024": { + "2024-12-01T00:00:00+02:00": 3615 + }, + "MinerRestartBlast": { + "2024-12-01T00:00:00+02:00": 638 + }, + "PasskeyAdded": { + "2024-12-01T00:00:00+02:00": 380 + }, + "Target Reward: 25% Progress": { + "2024-12-01T00:00:00+02:00": 1545 + }, + "BackupCodesRegen": { + "2024-12-01T00:00:00+02:00": 44 + }, + "PayPalAccountLink": { + "2024-12-01T00:00:00+02:00": 747 + }, + "PasskeyRemovedLast": { + "2024-12-01T00:00:00+02:00": 21 + }, + "Target Reward: 75% Progress": { + "2024-12-01T00:00:00+02:00": 1961 + }, + "BackupCodesViewed": { + "2024-12-01T00:00:00+02:00": 498 + }, + "SatisfactionSurveyDec-2024": { + "2024-12-01T00:00:00+02:00": 6684 + }, + "StarChefNotification": { + "2024-12-01T00:00:00+02:00": 16080 + }, + "Target Rewards: 100% Progress": { + "2024-12-01T00:00:00+02:00": 1691 + }, + "EarningThresholdSurveyNov2024": { + "2024-12-01T00:00:00+02:00": 7 + }, + "Target Reward: 50% Progress": { + "2024-12-01T00:00:00+02:00": 1993 + }, + "DemandMonitorGpu": { + "2024-12-01T00:00:00+02:00": 10 + } + } + }, + "64654f8125b1fb30f26b3ce3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 129601 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 129601 + }, + "Employer Reward Requested": { + "2024-12-01T00:00:00+02:00": 2572 + }, + "Public Profile Activity": { + "2024-12-01T00:00:00+02:00": 10066 + }, + "PublicProfilePostVisit": { + "2024-12-01T00:00:00+02:00": 51222 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 46 + }, + "Points Flex Reward Availability": { + "2024-12-01T00:00:00+02:00": 2382 + }, + "EmployeeNewLead": { + "2024-12-01T00:00:00+02:00": 27 + }, + "EmployeeWeeklySmsFeedback": { + "2024-12-01T00:00:00+02:00": 35631 + }, + "RewardSettingsUpdated": { + "2024-12-01T00:00:00+02:00": 199 + }, + "NewJobSatisfactionSurvey": { + "2024-12-01T00:00:00+02:00": 1238 + }, + "EmployeeNewOnlineMentionV2": { + "2024-12-01T00:00:00+02:00": 24573 + }, + "NoPointsRewardEarned": { + "2024-12-01T00:00:00+02:00": 1457 + }, + "EmployeeProfileNewLead": { + "2024-12-01T00:00:00+02:00": 188 + } + } + }, + "62cd681212f9e10011655a35": { + "$overall": { + "2024-12-01T00:00:00+02:00": 817476 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 817476 + }, + "Neue Nachricht an Assignee": { + "2024-12-01T00:00:00+02:00": 15098 + }, + "Export verfügbar": { + "2024-12-01T00:00:00+02:00": 39 + }, + "Mitarbeiter zugewiesen": { + "2024-12-01T00:00:00+02:00": 1985 + }, + "Mitarbeiter erwähnt": { + "2024-12-01T00:00:00+02:00": 232 + }, + "Neue Nachricht": { + "2024-12-01T00:00:00+02:00": 800122 + } + } + }, + "654e95e71b0a1377ffe4f755": { + "$overall": { + "2024-12-01T00:00:00+02:00": 63234 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 63234 + }, + "Nemt WebApp-Trips-Notifications": { + "2024-12-01T00:00:00+02:00": 50130 + }, + "Hrlux-Prod WebApp-Trips-Notifications": { + "2024-12-01T00:00:00+02:00": 13104 + } + } + }, + "670d176b8b5274f547d231c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 316 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 316 + }, + "after-send-order-workflow": { + "2024-12-01T00:00:00+02:00": 8 + }, + "sticker-pickup": { + "2024-12-01T00:00:00+02:00": 139 + }, + "after-choosing-npu-lottery": { + "2024-12-01T00:00:00+02:00": 13 + }, + "dukaty-purchase": { + "2024-12-01T00:00:00+02:00": 10 + }, + "after-buy-weelet": { + "2024-12-01T00:00:00+02:00": 122 + }, + "sticker-send-info": { + "2024-12-01T00:00:00+02:00": 14 + }, + "after-buy-products-workflow": { + "2024-12-01T00:00:00+02:00": 6 + }, + "dukaty-topup-workflow": { + "2024-12-01T00:00:00+02:00": 4 + } + } + }, + "64d2121ee443560425c07189": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1135 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1135 + }, + "Snoozed has ended": { + "2024-12-01T00:00:00+02:00": 1135 + } + } + }, + "65bbbfe9cadbf9deb57b546e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 622 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 622 + }, + "Invite by Email": { + "2024-12-01T00:00:00+02:00": 7 + }, + "surgeryApproval": { + "2024-12-01T00:00:00+02:00": 68 + }, + "Surgical Surgery Create": { + "2024-12-01T00:00:00+02:00": 547 + } + } + }, + "63c146116c33f15eefc12c8d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 916 + }, + "undefined": { + "$overall": { + "2024-12-01T00:00:00+02:00": 916 + }, + "Non-critical Alarm [v1]": { + "2024-12-01T00:00:00+02:00": 916 + } + } + } + }, + "B. Process Workflow Step - [Triggers] [Total Events]": { + "$overall": { + "2024-12-01T00:00:00+02:00": 59361868 + }, + "668fa1064111ae088df8ecd3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 712 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 356 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 356 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 356 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 356 + } + } + }, + "64e32ac81e192345f283d627": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1946 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 844 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 844 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 285 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 285 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 817 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 817 + } + } + }, + "636975131fbb836889d6f696": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13114 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3743 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3743 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3016 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3016 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 852 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 852 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5503 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5503 + } + } + }, + "64b4e554d82471a0444f8415": { + "$overall": { + "2024-12-01T00:00:00+02:00": 456 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 114 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 114 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 114 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 114 + } + } + }, + "646eaa72e0d0d1b39ac3b281": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1598 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 799 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 799 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 799 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 799 + } + } + }, + "63c146116c33f15eefc12c8d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3760 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 445 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 445 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 890 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 890 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 148 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 148 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 445 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 445 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 916 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 916 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 916 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 916 + } + } + }, + "65bb0ed1516fabd8520d5673": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1281 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 95 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 95 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1091 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1091 + } + } + }, + "6400caeef591ea2e090f6040": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8145697 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 41660 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 41660 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1350944 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1350944 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1351177 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1351177 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1350204 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1350204 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1350199 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1350199 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1350200 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1350200 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1351313 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1351313 + } + } + }, + "6734a5a33b50565012d8dce0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1038 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 513 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 513 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 518 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 518 + } + } + }, + "64e4824819860000717aecb9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15466 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6884 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6884 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8582 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8582 + } + } + }, + "65c67ec9b637cdb23e09edef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 704 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 352 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 352 + } + } + }, + "63b4a3edc2c62a5b4b374cc6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1521 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 39 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 39 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 772 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 772 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 127 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 127 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 583 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 583 + } + } + }, + "6644fabbfbadc9d325d90248": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4195 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1702 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1702 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 561 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 561 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1371 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1371 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 561 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 561 + } + } + }, + "64092d0773a1721d0476baa9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2048 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 106 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 106 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 798 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 798 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 203 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 203 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 803 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 803 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 136 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 136 + } + } + }, + "66ea0719cf609b1343a50a19": { + "$overall": { + "2024-12-01T00:00:00+02:00": 793 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 226 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 226 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 306 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 306 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 261 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 261 + } + } + }, + "648c0658616db8f05a735ef4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5616 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1503 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1503 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 683 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 683 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1613 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1613 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1817 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1817 + } + } + }, + "666c096bb3464b7775094768": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1765 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 487 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 487 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 291 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 291 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 173 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 173 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 814 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 814 + } + } + }, + "66ab0c482a0b42870f2dadef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9550 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5080 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5080 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 27 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4443 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4443 + } + } + }, + "6721fd6e30d1c09960214146": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3022 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 818 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 818 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 411 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 411 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 155 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 155 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 819 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 819 + } + }, + "custom": { + "$overall": { + "2024-12-01T00:00:00+02:00": 819 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 819 + } + } + }, + "64e77d4b96eacf22439b13cd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 500 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 131 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 131 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 102 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 102 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 250 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 250 + } + } + }, + "65af718b8e557ef0af46f7c0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18794 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9201 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9201 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 381 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 381 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9203 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9203 + } + } + }, + "63c1debfe84f99fee270acf7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17045 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3546 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3546 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3541 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3541 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3541 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3541 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 600 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 600 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5817 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5817 + } + } + }, + "6478b60f3a95df70dfeab13c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14208 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7104 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7104 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7104 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7104 + } + } + }, + "651e2d9e8816295152897198": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2064 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1032 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1032 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1032 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1032 + } + } + }, + "669187bb9efb8372ce7c6483": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2233 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1117 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1117 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1116 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1116 + } + } + }, + "674e32b62c32fe389f0ea40a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 403 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 339 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 339 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 45 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 45 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 18 + } + } + }, + "652ea963fa315318e7925510": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3126 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 754 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 754 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 436 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 436 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 436 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 436 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1500 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1500 + } + } + }, + "641df7485d9af70da9c29397": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2569 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 609 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 609 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 371 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 371 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 609 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 609 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 980 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 980 + } + } + }, + "646f26388b0b51ed1734729b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 39576 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13192 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13192 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13192 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13192 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13192 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13192 + } + } + }, + "6408720f46fde50c6d4affe5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5676 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1414 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1414 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1424 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1424 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1414 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1414 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1424 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1424 + } + } + }, + "639c385254ca30325e86f445": { + "$overall": { + "2024-12-01T00:00:00+02:00": 35036 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17518 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17518 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17518 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17518 + } + } + }, + "63cfe876ab8d9270851c178d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4676 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 138 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 138 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1018 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1018 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3520 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3520 + } + } + }, + "6637e82483488a7091d0513d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1829 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 550 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 550 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 702 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 702 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 577 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 577 + } + } + }, + "6582723f08be7e008ad65128": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12844 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5142 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5142 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5141 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5141 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2561 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2561 + } + } + }, + "654eb4b8d71fd8620c6d174e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 39284 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9821 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9821 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9821 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9821 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9821 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9821 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9821 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9821 + } + } + }, + "6439d814d3f2f7f8eb014099": { + "$overall": { + "2024-12-01T00:00:00+02:00": 564 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 282 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 282 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 282 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 282 + } + } + }, + "65bbbfe9cadbf9deb57b546e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1791 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 615 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 615 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 554 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 554 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 622 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 622 + } + } + }, + "674586592c32fe389f95879e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 169 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 74 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 74 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 95 + } + } + }, + "63d548c1a9b6cc61d4c3beb3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10614 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5307 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5307 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 258 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 258 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5049 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5049 + } + } + }, + "66cbf5decf609b134349ac56": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1850 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 925 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 925 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 925 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 925 + } + } + }, + "671bba5a0ab03d946718eb3b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2576 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 177 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 177 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1053 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1053 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1331 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1331 + } + } + }, + "63e9893f8ce4830a19151391": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4770 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2526 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2526 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 502 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 502 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1727 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1727 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15 + } + } + }, + "62ac67523de29f001cb8bfdb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 658 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 329 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 329 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 329 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 329 + } + } + }, + "6516702d73891288fc1ca032": { + "$overall": { + "2024-12-01T00:00:00+02:00": 49104 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16368 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16368 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16368 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16368 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16368 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16368 + } + } + }, + "63a32471bee1d5aed72cc01d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11460 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5730 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5730 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5730 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5730 + } + } + }, + "66437ce7b370e6b94e711d3c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 641 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 310 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 310 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 295 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 295 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 36 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 36 + } + } + }, + "62f93267cd5afb6ad39b12b1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 698 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 349 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 349 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 349 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 349 + } + } + }, + "651aea5133924ee69071720d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 78215 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23447 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23447 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6805 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6805 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23380 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23380 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6930 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6930 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17653 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17653 + } + } + }, + "66d9e408cf609b134331065f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12662 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7646 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7646 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 596 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 596 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2035 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2035 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 417 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 417 + } + }, + "custom": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1968 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1968 + } + } + }, + "64135799799e3c974d3f6426": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14873624 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4866259 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4866259 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 100164 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 100164 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4859199 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4859199 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5048002 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5048002 + } + } + }, + "65fa38148453b14f2f5aeea2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 822 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 186 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 186 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 254 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 254 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 261 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 261 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 121 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 121 + } + } + }, + "6742dd7d1bb91e63d914a510": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1327 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 377 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 377 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 377 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 377 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 571 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 571 + } + } + }, + "6554c9199139d6b01f88625d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2803 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 786 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 786 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 833 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 833 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 833 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 833 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 351 + } + } + }, + "64480a48771e7bed3dc3600e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 79301 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 51613 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 51613 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23863 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23863 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3819 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3819 + } + } + }, + "66d61e9dcf609b134368c516": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10313 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4154 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4154 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1994 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1994 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4165 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4165 + } + } + }, + "64ecc8ef96eacf2243a91769": { + "$overall": { + "2024-12-01T00:00:00+02:00": 58147 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5152 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5152 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4951 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4951 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24749 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 24749 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23295 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23295 + } + } + }, + "630ca7b800f7dbd3faf2d726": { + "$overall": { + "2024-12-01T00:00:00+02:00": 96986 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1823 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1823 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 93065 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 93065 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2098 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2098 + } + } + }, + "6524263d72a8166dd08346c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12922 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 615 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 615 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 40 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 40 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5826 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5826 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6441 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6441 + } + } + }, + "64341d3fd766fd13ee96b6a1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2490 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 830 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 830 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 830 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 830 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 830 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 830 + } + } + }, + "664c96c0e6f72af294ae867a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2070 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 656 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 656 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 497 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 497 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 539 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 539 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 378 + } + } + }, + "6639eeff0c0215ee78621015": { + "$overall": { + "2024-12-01T00:00:00+02:00": 83838 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 41919 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 41919 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 41779 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 41779 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 140 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 140 + } + } + }, + "656d49757b44306b3c820521": { + "$overall": { + "2024-12-01T00:00:00+02:00": 504 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 249 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 249 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 255 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 255 + } + } + }, + "6627a8d783dccfeec76eb3f3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16304 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6794 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6794 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2716 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2716 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6794 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6794 + } + } + }, + "66a5008b076eb7c94c1adb92": { + "$overall": { + "2024-12-01T00:00:00+02:00": 889 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 432 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 432 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 457 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 457 + } + } + }, + "672e25d0a1974766693e1703": { + "$overall": { + "2024-12-01T00:00:00+02:00": 674 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 319 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 319 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 63 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 63 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 292 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 292 + } + } + }, + "652e95466c3964c5a2832222": { + "$overall": { + "2024-12-01T00:00:00+02:00": 679 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 191 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 191 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 237 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 237 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 244 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 244 + } + } + }, + "636a6b4d9e04bb11b575cf74": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6090 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2820 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2820 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 225 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 225 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3045 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3045 + } + } + }, + "6685216144e8f8b477105e38": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5832 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2916 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2916 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2916 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2916 + } + } + }, + "647a49083a4ec8a5997fb67c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 421 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 211 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 211 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 210 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 210 + } + } + }, + "66f0dd46cf609b13436885f5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 126 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42 + } + } + }, + "647817a98b0b51ed174db1a8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 47181 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 22430 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2071 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2071 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 22430 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 250 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 250 + } + } + }, + "669559c51c484e3d9a0e1839": { + "$overall": { + "2024-12-01T00:00:00+02:00": 530 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 265 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 265 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 265 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 265 + } + } + }, + "642d9001c6b53aa5dd5124f5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1358751 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 593812 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 593812 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15458 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15458 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15458 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15458 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 734023 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 734023 + } + } + }, + "656197541eb377d7c3b258a0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22185 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7555 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7555 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7075 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7075 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7555 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7555 + } + } + }, + "651eff411df1b46454f4c05a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 38674 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12181 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12181 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9365 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9365 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9380 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9380 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1598 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1598 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4283 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4283 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1867 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1867 + } + } + }, + "669d47da98a7c2cace1dea46": { + "$overall": { + "2024-12-01T00:00:00+02:00": 701 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 303 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 303 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 47 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 47 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 47 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 47 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 304 + } + } + }, + "64fb853287135ffdc3b410ec": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14915 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4040 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4040 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3979 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3979 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3979 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3979 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2466 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2466 + } + }, + "custom": { + "$overall": { + "2024-12-01T00:00:00+02:00": 451 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 451 + } + } + }, + "6670ed6e78b0832675c76f6a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2627 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 902 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 902 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 823 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 823 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 902 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 902 + } + } + }, + "62fa8155227ab843d407b3f5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23406 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6820 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6820 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3157 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3157 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5013 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5013 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8416 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8416 + } + } + }, + "66b997fe9c11077f0257d94e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 261 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 22 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 217 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 217 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 22 + } + } + }, + "6727412d456590b1d8992d83": { + "$overall": { + "2024-12-01T00:00:00+02:00": 292 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 146 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 146 + } + } + }, + "64c94e80fc11bce407229550": { + "$overall": { + "2024-12-01T00:00:00+02:00": 79707 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26569 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 26569 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26569 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 26569 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26569 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 26569 + } + } + }, + "63ff64e6f591ea2e097d64bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6518 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 65 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 65 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2044 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2044 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 912 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 912 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 166 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 166 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3331 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3331 + } + } + }, + "66b36aa7aa4218d12678f006": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1227 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 237 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 237 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 280 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 280 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 64 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 64 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 71 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 71 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 343 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 343 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 232 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 232 + } + } + }, + "66fc55c5cf609b13433a677d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9646 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4823 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4823 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4823 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4823 + } + } + }, + "646e25734c1d7d4ec22acfa5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 51658 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 25514 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 25514 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 281 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 281 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15485 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15485 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10378 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10378 + } + } + }, + "6680a87553d09da082d4fd31": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3702 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1851 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1851 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1851 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1851 + } + } + }, + "652efbf06c3964c5a2845118": { + "$overall": { + "2024-12-01T00:00:00+02:00": 704 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 352 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 243 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 109 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 109 + } + } + }, + "646f08088b0b51ed17340c31": { + "$overall": { + "2024-12-01T00:00:00+02:00": 54375 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18140 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 18140 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18491 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 18491 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17744 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17744 + } + } + }, + "64d10e4220f4008b5df1e37a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10168 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8813 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8813 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 103 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 103 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1252 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1252 + } + } + }, + "650002893cc619d36e43a166": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2315 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 574 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 574 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 574 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 574 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 574 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 574 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 593 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 593 + } + } + }, + "638a3301ed1c4c44d2a58839": { + "$overall": { + "2024-12-01T00:00:00+02:00": 451594 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 150894 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 150894 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 150894 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 150894 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 149806 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 149806 + } + } + }, + "650b644a42707458fe431762": { + "$overall": { + "2024-12-01T00:00:00+02:00": 305 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 125 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 125 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 125 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 125 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 55 + } + } + }, + "65cb7ceb619fe4f9cf882165": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11087 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5542 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5542 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5543 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5543 + } + } + }, + "6580bfe12c7e267bc3af8dc2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14607 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4869 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4869 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4869 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4869 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4869 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4869 + } + } + }, + "65a56e2e8e557ef0afd6f872": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5896 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2756 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2756 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2756 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2756 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 384 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 384 + } + } + }, + "650d24f8f39b9230da78520b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2264 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1132 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1132 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1132 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1132 + } + } + }, + "662a58724b6cd9280bf5139d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 536 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 268 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 268 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 268 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 268 + } + } + }, + "63bcf68d35958e9aa59578ff": { + "$overall": { + "2024-12-01T00:00:00+02:00": 996 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 498 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 498 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 498 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 498 + } + } + }, + "67235ab730d1c099604bf849": { + "$overall": { + "2024-12-01T00:00:00+02:00": 674 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 133 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 133 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 133 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 133 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 408 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 408 + } + } + }, + "667b514853d09da0827f2c20": { + "$overall": { + "2024-12-01T00:00:00+02:00": 134 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 34 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 50 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 50 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 50 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 50 + } + } + }, + "65c17ff93086d5972f17c2d0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2334 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 766 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 766 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 400 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 400 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 402 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 402 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 766 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 766 + } + } + }, + "646327aed6925ea19b9c43ea": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12828 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4276 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4276 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4276 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4276 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4276 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4276 + } + } + }, + "64b03bae2eb78d11de58c1bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20090 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10045 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10045 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10045 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10045 + } + } + }, + "671f768afb21db27362e8d5f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17834 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8917 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8917 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8917 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8917 + } + } + }, + "63ac163b2588b530704387fc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1599 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 533 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 533 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 533 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 533 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 533 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 533 + } + } + }, + "65ce436d99b1dce753411d4a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1740 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 746 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 124 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 124 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 124 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 124 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 746 + } + } + }, + "66cb2b9ecf609b1343ac5d85": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4340 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2170 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2170 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2170 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2170 + } + } + }, + "6758633bd0bc5c5859e4d0b0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 619 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 56 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 56 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 378 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 185 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 185 + } + } + }, + "63c7b1ddab8d9270851b219f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 682 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 341 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 341 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 341 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 341 + } + } + }, + "66fd558bcf609b1343268e49": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55292 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27646 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 27646 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27646 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 27646 + } + } + }, + "666b875bb3464b7775f56472": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2624 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1312 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1312 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1312 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1312 + } + } + }, + "660ef03291bd69a79e31a321": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18674 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9337 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9337 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9337 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9337 + } + } + }, + "6421cf785876c8840c441642": { + "$overall": { + "2024-12-01T00:00:00+02:00": 689 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 275 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 275 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 275 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 275 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 139 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 139 + } + } + }, + "66b9e7e99c11077f0298542c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 756 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 377 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 377 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 378 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 378 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1 + } + } + }, + "6671df91f4a238f107fe9f56": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2136 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 260 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 260 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 138 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 138 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 758 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 758 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 360 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 360 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 620 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 620 + } + } + }, + "6423f39a2586c27b11d98d84": { + "$overall": { + "2024-12-01T00:00:00+02:00": 112463 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42859 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42859 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14471 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14471 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34196 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 34196 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20937 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 20937 + } + } + }, + "653f9eeac93cc0129acf4bcb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 78017 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23841 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23841 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13302 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13302 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22023 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 22023 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7956 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7956 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10895 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10895 + } + } + }, + "66b1fe79aa4218d12657d85b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1704 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 851 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 851 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 853 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 853 + } + } + }, + "62b8aeda9bbe840018528c47": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1575 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 525 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 525 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 525 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 525 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 525 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 525 + } + } + }, + "641c3bb95d9af70da93f09a9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3477 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 934 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 934 + } + }, + "custom": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1201 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1201 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1342 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1342 + } + } + }, + "6447d7ccf2e1143129042903": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11322 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 835 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 835 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2230 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2230 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2596 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2596 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5661 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5661 + } + } + }, + "66621bc53a586fac83886829": { + "$overall": { + "2024-12-01T00:00:00+02:00": 52880 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20094 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 20094 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20094 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 20094 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12692 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12692 + } + } + }, + "658c15eae2d5aed98bef8f80": { + "$overall": { + "2024-12-01T00:00:00+02:00": 33693 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10732 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10732 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1664 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1664 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5801 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5801 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3351 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3351 + } + }, + "custom": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4635 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4635 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7510 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7510 + } + } + }, + "6321e40f1a3ff48f5712daa8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 38138 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19069 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 19069 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19069 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 19069 + } + } + }, + "66cde6ffcf609b13433bff6b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4196 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2098 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2098 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2098 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2098 + } + } + }, + "660b31f5b551758561fb037c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 417867 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 370760 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 370760 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6906 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6906 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6906 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6906 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6906 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6906 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26389 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 26389 + } + } + }, + "6669f5fec7f96cc1968787d9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 38463 + }, + "custom": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9184 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9184 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9970 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9970 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8923 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8923 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10386 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10386 + } + } + }, + "65df17f92b39eba95ab6ae95": { + "$overall": { + "2024-12-01T00:00:00+02:00": 927 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 462 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 462 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 465 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 465 + } + } + }, + "64197347da8256b93fd7bbb8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1912 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 956 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 956 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 956 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 956 + } + } + }, + "63cea3496779056a3f2fff8d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7548 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1257 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1257 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1257 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1257 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1257 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1257 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1257 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "64919f0eb5f1ae122b876762": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1830 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 915 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 915 + } + } + }, + "65af6ad4f58e905ecab29441": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4533741 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2266867 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2266867 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2266874 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2266874 + } + } + }, + "64f6ffa51bb9daae5164392a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23368 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11683 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11683 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11685 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11685 + } + } + }, + "6643b1e7fbadc9d325959e25": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2069 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 784 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 784 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 591 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 591 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 43 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 43 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 651 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 651 + } + } + }, + "6537ebf5585a37886d9f05b5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18135 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3005 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3005 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7047 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7047 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 392 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 392 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7691 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7691 + } + } + }, + "64eda93c14b8a3ace6f4c5e9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16523 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1692 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1692 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2363 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2363 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2375 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2375 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2375 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2375 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7718 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7718 + } + } + }, + "65113f461a7614493dc5a9f0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 127964 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42913 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42913 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42635 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42635 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42416 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42416 + } + } + }, + "63ecb58fd38e757796a68c1c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15037991 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3709587 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3709587 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3766582 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3766582 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3766580 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3766580 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3793033 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3793033 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2209 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2209 + } + } + }, + "654e95e71b0a1377ffe4f755": { + "$overall": { + "2024-12-01T00:00:00+02:00": 126468 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 63234 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 63234 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 63234 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 63234 + } + } + }, + "63b86f5db775d8ef0ed8f08f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 41442 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20721 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 20721 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 20721 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 20721 + } + } + }, + "651add0cb03ff038cedc7448": { + "$overall": { + "2024-12-01T00:00:00+02:00": 517089 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 74 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 74 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 258508 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 258508 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 258507 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 258507 + } + } + }, + "640f33277df3c830240b71b4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1073 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 562 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 562 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 380 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 380 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 131 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 131 + } + } + }, + "651fa9f835fbd6284965127c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5616 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3065 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3065 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2551 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2551 + } + } + }, + "66b35706aa4218d126bbbf49": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3380 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1125 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1125 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1125 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1125 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1130 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1130 + } + } + }, + "655f20b2afd4055e0df6ae1d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2143 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 526 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 526 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1119 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1119 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 498 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 498 + } + } + }, + "66f19c98cf609b134304a0f6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4568 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1553 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1553 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1554 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1554 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1461 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1461 + } + } + }, + "63fbb0118920eed9471fa1b2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1043 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 173 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 173 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 156 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 156 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 69 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 69 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 645 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 645 + } + } + }, + "656b003c666d47dc7d25648c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7212 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2389 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2389 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2389 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2389 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2434 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2434 + } + } + }, + "64d37f84045bf0282da7b498": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7555 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 881 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 881 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 907 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 907 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 295 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 295 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2288 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2288 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3184 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3184 + } + } + }, + "6337ca88ee1316a5c8a9009e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1290 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 430 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 430 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 430 + } + } + }, + "673b3b592f10dba8e8616a90": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2567 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1393 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1393 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 983 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 983 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 191 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 191 + } + } + }, + "6501cc0935286a5ea69aa722": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1336 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 668 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 668 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 668 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 668 + } + } + }, + "6414934fda8256b93f957df3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 632 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 316 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 316 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 316 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 316 + } + } + }, + "63ad63d5a3d6d6f6e46334a0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9466 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2684 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2684 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2684 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2684 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 707 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 707 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3391 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3391 + } + } + }, + "6361ae479e04bb11b51b9401": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5353 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 663 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 663 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2051 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2051 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 259 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 259 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 148 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 148 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2232 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2232 + } + } + }, + "64654f8125b1fb30f26b3ce3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 301164 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 129019 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 129019 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 37543 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 37543 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 76308 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 76308 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12043 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12043 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 46251 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 46251 + } + } + }, + "6463ebef60f1803b3a6fbf6b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 199311 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 86731 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 86731 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95170 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 95170 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17410 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17410 + } + } + }, + "657312d2fd6a606fd6eaa203": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3758 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1204 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1204 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1277 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1277 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1277 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1277 + } + } + }, + "67063d37ba6a0580bfccc7e3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3532 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 552 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 552 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 887 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 887 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 550 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 550 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1543 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1543 + } + } + }, + "666a0c480f48d9a01fea8e2c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1856 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1389 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1389 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 467 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 467 + } + } + }, + "66688112d05b953ba10ab594": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3774 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1244 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1244 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1228 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1228 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 58 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 58 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1244 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1244 + } + } + }, + "6408f2f0dd5f589fe2ca61b4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3734 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 934 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 934 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 933 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 933 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1867 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1867 + } + } + }, + "65d5e7fa2d8ee2bc1404fa0f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10556 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5278 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5278 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5278 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5278 + } + } + }, + "637daec62610c873786139a1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5900 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2954 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2954 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2913 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2913 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 33 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 33 + } + } + }, + "65fd55c44f991166e7a7335e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2600 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 814 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 814 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 557 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 557 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 330 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 330 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 735 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 735 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 44 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 44 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 120 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 120 + } + } + }, + "672e2335a197476669200759": { + "$overall": { + "2024-12-01T00:00:00+02:00": 36078 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17082 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17082 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18016 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 18016 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 980 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 980 + } + } + }, + "647e50e6720b54f89e06480e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 506 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 251 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 251 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 251 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 251 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4 + } + } + }, + "6494e6cab1ef6a7f8830e871": { + "$overall": { + "2024-12-01T00:00:00+02:00": 558 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 279 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 279 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 279 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 279 + } + } + }, + "64747ec18b0b51ed1741923d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1492 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 746 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 746 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 746 + } + } + }, + "637b2240c58b301920b2f70c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 38278 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9383 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9383 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9383 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9383 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9383 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9383 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10129 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10129 + } + } + }, + "645863ebd6925ea19b7d2456": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2514 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 114 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2286 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2286 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 114 + } + } + }, + "63fe730e5787050c5df466a9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7743 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2965 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2965 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2110 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2110 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2275 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2275 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 243 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 150 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 150 + } + } + }, + "630cb844fafbba9bf010f186": { + "$overall": { + "2024-12-01T00:00:00+02:00": 165051 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 45978 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 45978 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4299 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4299 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 45978 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 45978 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34124 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 34124 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34672 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 34672 + } + } + }, + "6663404493a6b815ffefb2f0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1877856 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 595014 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 595014 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 595014 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 595014 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 61747 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 61747 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 626081 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 626081 + } + } + }, + "66cf1c1bcf609b134337b496": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1139 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 567 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 567 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 572 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 572 + } + } + }, + "660c351dbfb1f0d56f7a6fcc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 884 + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 202 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 202 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 86 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 86 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 86 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 86 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 86 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 86 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 424 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 424 + } + } + }, + "662f0d0e843a6a8496596159": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1039 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 326 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 326 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 361 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 361 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 352 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 352 + } + } + }, + "641d8c2fda8256b93f228fd0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 62446 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31223 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 31223 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31223 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 31223 + } + } + }, + "6439210da97b5d90d4874f30": { + "$overall": { + "2024-12-01T00:00:00+02:00": 79591 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16592 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16592 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17563 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17563 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15441 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15441 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14691 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14691 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15303 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15303 + } + } + }, + "63b85858b775d8ef0ed805cb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 50973 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16994 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16994 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16995 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16995 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16984 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16984 + } + } + }, + "6523e5f01941f73be45e3ac3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1750 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 875 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 875 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 875 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 875 + } + } + }, + "6314b4eb232b8996aaa4c9bc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5880 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2940 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2940 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2940 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2940 + } + } + }, + "668708d194330132afefdfcc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7806 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3903 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3903 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3903 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3903 + } + } + }, + "64c3f5e72df653eabdc06c32": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7928 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3964 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3964 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3964 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3964 + } + } + }, + "643d4f7130bdc004e35b8b0e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3760 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1325 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1325 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 555 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 555 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 555 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 555 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1325 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1325 + } + } + }, + "65d368c9a1dfc9ae299cbd1e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2819 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 503 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 503 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 613 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 613 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1703 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1703 + } + } + }, + "65887da2f14b6f3ef002d584": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1478 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 739 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 739 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 739 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 739 + } + } + }, + "66362cc66c5885a3257940bb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4446 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2223 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2223 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2219 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2219 + } + } + }, + "64362dac4e5fea401a0f19af": { + "$overall": { + "2024-12-01T00:00:00+02:00": 106916 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 53458 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 53458 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 53456 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 53456 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2 + } + } + }, + "634d5b1a27d50dea0bbfa3bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31967 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 119 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 119 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7720 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7720 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12041 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12041 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12087 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12087 + } + } + }, + "62cd681212f9e10011655a35": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2454382 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 817480 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 817480 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2217 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2217 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 817207 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 817207 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 817478 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 817478 + } + } + }, + "64011cb9841d0bacae01f6ff": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1916 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 456 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 456 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 144 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 144 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 416 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 416 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 470 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 470 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 430 + } + } + }, + "6569c906478e147113dd7a9e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 992 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 490 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 490 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 496 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 496 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "67463a802c32fe389fa61341": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2047 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1024 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1024 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 896 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 896 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 127 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 127 + } + } + }, + "66704e3f30319d13334f4306": { + "$overall": { + "2024-12-01T00:00:00+02:00": 850592 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 324 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 324 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 366818 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 366818 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 483450 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 483450 + } + } + }, + "66319137a95d2d5be0cffdd5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2876 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1438 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1438 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1438 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1438 + } + } + }, + "64d2121ee443560425c07189": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2270 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1135 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1135 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1135 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1135 + } + } + }, + "65453e2c44cca773bdf1cdd7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 38 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 19 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 19 + } + } + }, + "65b03e6d7facd2ac9be61dc4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2152 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1076 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1076 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 862 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 862 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 214 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 214 + } + } + }, + "65799faaab5221590f7f1cc1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 740 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 305 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 305 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 130 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 130 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 175 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 175 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 130 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 130 + } + } + }, + "6568b37faa67fd979c0b94d8": { + "$overall": { + "2024-12-01T00:00:00+02:00": 770 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 148 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 148 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 148 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 148 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 148 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 148 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 326 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 326 + } + } + }, + "6437a1cdc3f9dd9ef6a22609": { + "$overall": { + "2024-12-01T00:00:00+02:00": 29065 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9687 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9687 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9687 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9687 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9689 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9689 + } + } + }, + "6525396bae3f3225a9475db0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23311 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 285 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 285 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6696 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6696 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8432 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8432 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2170 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2170 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 858 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 858 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4870 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4870 + } + } + }, + "64dbea7b28a0b10b3b77239e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5928 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2964 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2964 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2964 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2964 + } + } + }, + "63317d6327d50dea0b03d16e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1112 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1034 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1034 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 48 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 48 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 30 + } + } + }, + "652d099361752f4c288defb9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1152 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 576 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 576 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 576 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 576 + } + } + }, + "665f34e28e2550325700cda9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 636 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 318 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 318 + } + } + }, + "63a32b86bee1d5aed72d7f15": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12903 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2432 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2432 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2904 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2904 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 472 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 472 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4663 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4663 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2432 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2432 + } + } + }, + "659d3b40f58e905eca1793b0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 708 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 354 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 354 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 354 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 354 + } + } + }, + "63bb02b5063f6d94cdf18ac9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12973 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4001 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4001 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1499 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1499 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3015 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3015 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 63 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 63 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4395 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4395 + } + } + }, + "6572fd669788e6811d7b4d64": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14745 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4915 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4915 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4915 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4915 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4915 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4915 + } + } + }, + "64e3554548249e7e76aeffc3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13526 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2791 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2791 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2744 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2744 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2074 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2074 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2791 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2791 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3126 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3126 + } + } + }, + "654fe30fc36c6d67b96de432": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5806 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2903 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2903 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2903 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2903 + } + } + }, + "63b6208e711db04e8129df6b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12017 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4483 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4483 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3051 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3051 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4483 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4483 + } + } + }, + "6627ff494ad60adb146eca32": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6346 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1371 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1371 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 458 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 458 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1638 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1638 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 849 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 849 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2030 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2030 + } + } + }, + "65c1f64ef94456f501d98f49": { + "$overall": { + "2024-12-01T00:00:00+02:00": 209344 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 104672 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 104672 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 104672 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 104672 + } + } + }, + "657006a1d69593bcb426d80e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1364 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 682 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 682 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 682 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 682 + } + } + }, + "63a988938099fc7fe0b9f12d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 828 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 409 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 409 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 419 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 419 + } + } + }, + "64c1760e3ec3e6a351ea3ba1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1414 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 707 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 707 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 707 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 707 + } + } + }, + "647d42173a4ec8a59984c750": { + "$overall": { + "2024-12-01T00:00:00+02:00": 44321 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13970 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13970 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13970 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13970 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2411 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2411 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13970 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13970 + } + } + }, + "66b3c633abc563f5ee1c4ffa": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8020 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1287 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1287 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2723 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2723 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4010 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4010 + } + } + }, + "6433d2fc6e1e72f63f63b5fe": { + "$overall": { + "2024-12-01T00:00:00+02:00": 80764 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 40382 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 40382 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 40382 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 40382 + } + } + }, + "6422c50c5876c8840c8b4668": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12794 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6397 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6397 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6397 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6397 + } + } + }, + "653fbf348928fc83db032ef4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1200 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 600 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 600 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 600 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 600 + } + } + }, + "668d398684227ca750502c57": { + "$overall": { + "2024-12-01T00:00:00+02:00": 230706 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30999 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 30999 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 90157 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 90157 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 107662 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 107662 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1888 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1888 + } + } + }, + "628f82923c3e82001812b7cf": { + "$overall": { + "2024-12-01T00:00:00+02:00": 490 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 245 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 245 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 245 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 245 + } + } + }, + "6635236c843a6a8496d4d38e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 606 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 303 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 303 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 303 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 303 + } + } + }, + "65f2f98b79ffb10acbce98c2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2730 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1163 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1163 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 202 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 202 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1365 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1365 + } + } + }, + "63b80e5704fdc888671f3820": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1026 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 423 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 423 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 513 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 513 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 90 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 90 + } + } + }, + "64e46fc009b229a7c5c1735c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21558 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5384 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5384 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5395 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5395 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10779 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10779 + } + } + }, + "63b3f614749085d8f285703a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27350 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6187 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6187 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6549 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6549 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6540 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6540 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 135 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 135 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7939 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7939 + } + } + }, + "667d2415de5890bc6c29b3cc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16153 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5730 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5730 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4642 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4642 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5781 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5781 + } + } + }, + "648e433db5f1ae122b746d19": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5568 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2784 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2784 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2784 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2784 + } + } + }, + "64b703eb90b5785d4734577a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4350 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 773 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 773 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1800 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1800 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 69 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 69 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1708 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1708 + } + } + }, + "6641cac9c4df36a9648c8dd5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17739 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6280 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6280 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5674 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5674 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5785 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5785 + } + } + }, + "66fa9de25d6b8aa393727348": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12504 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4316 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4316 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4114 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4114 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4074 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4074 + } + } + }, + "63eaaa4dd1a5554c97db1b86": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4984 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2486 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2486 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2492 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2492 + } + } + }, + "654bab8b191027742aa28ec7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5522 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1841 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1841 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1840 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1840 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1841 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1841 + } + } + }, + "66d536cdcf609b1343d0e115": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2184 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 800 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 800 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 513 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 513 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 871 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 871 + } + } + }, + "65ceaef2535ad490c942a13c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 39639 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2718 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2718 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2718 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2718 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1239 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1239 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30382 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 30382 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2582 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2582 + } + } + }, + "66a79f82dfafba8038bc3399": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3085 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 874 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 874 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1092 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1092 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1119 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1119 + } + } + }, + "652d210133aa2d8c68b1bea6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24345 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8115 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8115 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8115 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8115 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8115 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8115 + } + } + }, + "65f086bfeb4977909f034ec2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1720 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 860 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 860 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 860 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 860 + } + } + }, + "6335791aee1316a5c89b6d93": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15928 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7964 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7964 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7964 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7964 + } + } + }, + "65439145e3bcee0f76a5a368": { + "$overall": { + "2024-12-01T00:00:00+02:00": 33168 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2945 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2945 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2945 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2945 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2945 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2945 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2945 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2945 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21388 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 21388 + } + } + }, + "624c1d9fdd3137001824f6ef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23996 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11998 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11998 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11998 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11998 + } + } + }, + "667afbe4231acc7b876e0a8a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1167 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 195 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 195 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 243 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 243 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 243 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 243 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 243 + } + } + }, + "656dbe9f27f644ad0ecba9ae": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1830 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 915 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 915 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 915 + } + } + }, + "64c03a19bab542bccfebc4c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 37866 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1495 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1495 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 35078 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 35078 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1293 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1293 + } + } + }, + "6593fa76f58e905ecac67a12": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30713 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15356 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15356 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15357 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 15357 + } + } + }, + "651d2708e1b82d64b37fb064": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1544 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 772 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 772 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 772 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 772 + } + } + }, + "64db6d7084fbabb0eef2e7a0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 70650 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23550 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23550 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23550 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23550 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23550 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23550 + } + } + }, + "64469b1b4919b8d7cbf845ef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23278 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3344 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3344 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7837 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7837 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3344 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3344 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 399 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 399 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8354 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8354 + } + } + }, + "658a048acb274a771b085163": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2430 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1215 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1215 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1215 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1215 + } + } + }, + "655c93211a91da1b109bea70": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1656 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 632 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 632 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 275 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 275 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 117 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 117 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 632 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 632 + } + } + }, + "651ea1381df1b46454f21192": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3174 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1587 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1587 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1587 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1587 + } + } + }, + "64df0f4ea9172aa4b7052247": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42556 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11734 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11734 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11040 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11040 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8048 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8048 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11734 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11734 + } + } + }, + "63edbed95f1718af27dc2f2f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 35145 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11715 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11715 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11715 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11715 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11715 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11715 + } + } + }, + "67444c602c32fe389fd89f54": { + "$overall": { + "2024-12-01T00:00:00+02:00": 616 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 607 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 607 + } + } + }, + "6397389154ca30325edb6391": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5934 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1029 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1029 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1937 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1937 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2965 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2965 + } + } + }, + "6507114e90b85787fd58b6d2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 54493 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2278 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2278 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14361 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14361 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 17501 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 17501 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 377 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 377 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19976 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 19976 + } + } + }, + "6543a644e3126f05f0cad775": { + "$overall": { + "2024-12-01T00:00:00+02:00": 95943 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 47971 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 47971 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2123 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2123 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 45849 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 45849 + } + } + }, + "6502d39087135ffdc35caf67": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19536 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16808 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16808 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1364 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1364 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1364 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1364 + } + } + }, + "634826ed27d50dea0ba493f9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 49814 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24907 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 24907 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24907 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 24907 + } + } + }, + "65f3db2b4599fa000c2becc7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1149 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 574 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 574 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 19 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 556 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 556 + } + } + }, + "6615460e6df43c247a0e01bb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 44007 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14669 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14669 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14669 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14669 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14669 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14669 + } + } + }, + "65caa89e619fe4f9cf723907": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34972 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5623 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5623 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23726 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 23726 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5623 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5623 + } + } + }, + "650c474042707458fe59f367": { + "$overall": { + "2024-12-01T00:00:00+02:00": 83813 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 300 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 300 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 300 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 300 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 300 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 300 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 892 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 892 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 82021 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 82021 + } + } + }, + "64ee088296eacf2243b8b25b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7447 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2401 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2401 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2759 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2759 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2287 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2287 + } + } + }, + "6413051f44e9291a6455e3e7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1431 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 477 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 477 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 477 + } + } + }, + "644a988e631887e5f000dae6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14544 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7272 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7272 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7272 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7272 + } + } + }, + "64f0638825339d16c5d2738a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1746 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 535 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 535 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 335 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 335 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 535 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 535 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 341 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 341 + } + } + }, + "6549444cb6c1c9448db38bc2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 60 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 34 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 34 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 13 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 13 + } + } + }, + "64aa3f5d5f8a9af8437ea498": { + "$overall": { + "2024-12-01T00:00:00+02:00": 23744 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 85 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 85 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6896 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6896 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6950 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6950 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1424 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1424 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 537 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 537 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7852 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7852 + } + } + }, + "6329fc7ae2a2de81df4b10a6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7722 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3781 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3781 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 113 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 113 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3828 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3828 + } + } + }, + "64f0c28825339d16c5d8131a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 576 + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 288 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 288 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 288 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 288 + } + } + }, + "6557f01a8c7cd7ff32f2d475": { + "$overall": { + "2024-12-01T00:00:00+02:00": 133868 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26402 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 26402 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27331 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 27331 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26402 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 26402 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27331 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 27331 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26402 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 26402 + } + } + }, + "65aad6098e557ef0afa191c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7085 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1420 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1420 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1420 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1420 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1420 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1420 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1405 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1405 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1420 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1420 + } + } + }, + "6639346438754624b559d51d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 615 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 30 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 277 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 277 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 31 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 31 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 277 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 277 + } + } + }, + "6571c58bfd6a606fd6c8f3f0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 592 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 296 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 296 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 296 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 296 + } + } + }, + "63cf21de42cfbce360219228": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1004 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 502 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 502 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 502 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 502 + } + } + }, + "667abaa4218289a1c466b985": { + "$overall": { + "2024-12-01T00:00:00+02:00": 560 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 280 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 280 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 280 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 280 + } + } + }, + "65129c6a87135ffdc368e7a3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3109 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 940 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 940 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 970 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 970 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1001 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1001 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 198 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 198 + } + } + }, + "63f586fd589ed09e95f0010f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1494 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 747 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 747 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 747 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 747 + } + } + }, + "64c7be962df653eabd0a53dd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2019 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 673 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 673 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 673 + } + } + }, + "64d7bb315b5e6bb444d4dd86": { + "$overall": { + "2024-12-01T00:00:00+02:00": 19218 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7661 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7661 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3896 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3896 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7661 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 7661 + } + } + }, + "663d16aa34ea4ddc9b9f2f3d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1248 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 624 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 624 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 624 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 624 + } + } + }, + "6673d3288b7329c353ad689d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2116 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1058 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1058 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1058 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1058 + } + } + }, + "66cedf34cf609b134361bfa7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9254 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4627 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4627 + } + } + }, + "64e793a5dd99c21f1ef1ddcb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 73593 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11192 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11192 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5863 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5863 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16799 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16799 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 39739 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 39739 + } + } + }, + "64ca38d1a936a1d182441a27": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1528 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 764 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 764 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 764 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 764 + } + } + }, + "6635b78bbe41ef77518aaba0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 60153 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30076 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 30076 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30077 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 30077 + } + } + }, + "65f440088edf3eee31cf371b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1444 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 722 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 722 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 722 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 722 + } + } + }, + "65537ecc00c55a508c06f6ce": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9850 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4925 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4925 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4925 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4925 + } + } + }, + "63ed36d0f38aed64140c6720": { + "$overall": { + "2024-12-01T00:00:00+02:00": 593 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 278 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 278 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 185 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 185 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 130 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 130 + } + } + }, + "653ba5e0583a1ec8f82b3589": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2968 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1484 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1484 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1484 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1484 + } + } + }, + "627cf999d4869d0018625c67": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7475 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3692 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3692 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 91 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 91 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3692 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3692 + } + } + }, + "65f8f7959343b5be34ab729c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 25584 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12792 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12792 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12792 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12792 + } + } + }, + "6687b6fe3069ddef14178411": { + "$overall": { + "2024-12-01T00:00:00+02:00": 15808 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2835 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2835 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12973 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12973 + } + } + }, + "62a0b9433de29f001cb6626f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7289 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2190 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2190 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 112 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 112 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2812 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2812 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2175 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2175 + } + } + }, + "651fca9cb03ff038cef1c54f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8352 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2088 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2088 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2088 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2088 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2088 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2088 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2088 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2088 + } + } + }, + "650af582c016453d5bdfb209": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1046 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 523 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 523 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 523 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 523 + } + } + }, + "64c78706e994a8dc20cdb2e1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 510 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 255 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 255 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 255 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 255 + } + } + }, + "6634cbe4612e6f34a400b05e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 507 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 241 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 241 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 241 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 241 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 22 + } + } + }, + "67475e932c32fe389fa51052": { + "$overall": { + "2024-12-01T00:00:00+02:00": 963 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 477 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 486 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 486 + } + } + }, + "670d176b8b5274f547d231c9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 626 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 310 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 310 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 316 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 316 + } + } + }, + "671faf6b285bc655d85f6e65": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1050 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 534 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 534 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 55 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 461 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 461 + } + } + }, + "6600f0d38453b14f2ff41c7d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1038 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 430 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 178 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 178 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 430 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 430 + } + } + }, + "66ce471dcf609b1343289560": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42003 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21003 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 21003 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21000 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 21000 + } + } + }, + "64f09213faeddba41e0137d9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2558 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 634 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 634 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 734 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 734 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 172 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 172 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 348 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 348 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 670 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 670 + } + } + }, + "65718e1d37b5f612059c62ef": { + "$overall": { + "2024-12-01T00:00:00+02:00": 145961 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 121536 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 121536 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24425 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 24425 + } + } + }, + "63a3be9fe0b58885ea9a25b0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 546 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 273 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 273 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 273 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 273 + } + } + }, + "632cae5927d50dea0bf3898b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3816 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1273 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1273 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1270 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1270 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1273 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1273 + } + } + }, + "6502ec79f39b9230da7cc89f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5754 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2408 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2408 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 548 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 548 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2798 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2798 + } + } + }, + "648079c03a4ec8a5999d3eb1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 598 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 299 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 299 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 299 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 299 + } + } + }, + "653ffc80c93cc0129ad126ab": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1065 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 183 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 183 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 294 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 294 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 294 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 294 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 294 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 294 + } + } + }, + "671dcbd5fb21db27364e8179": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9231 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3047 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3047 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3918 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3918 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2266 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2266 + } + } + }, + "65fbe3a58453b14f2f670e14": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16175 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5143 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5143 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1020 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1020 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4869 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4869 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4869 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4869 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 274 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 274 + } + } + }, + "64ef9990faeddba41ef3caae": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1544 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 772 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 772 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 689 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 689 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 83 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 83 + } + } + }, + "658e6a3b0ad62708782a93bf": { + "$overall": { + "2024-12-01T00:00:00+02:00": 616 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 308 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 308 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 308 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 308 + } + } + }, + "6684fd53e40a50735b55a981": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1794 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 894 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 894 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 894 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 894 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6 + } + } + }, + "65e5b2bac09e1cf82ec747bd": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1028 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 514 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 514 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 514 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 514 + } + } + }, + "65af69c5aeb88319ddace25a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 110286 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55143 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 55143 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55143 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 55143 + } + } + }, + "6481d805720b54f89e143404": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2048 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1024 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1024 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1024 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1024 + } + } + }, + "66a0f9f7f502999ed8453644": { + "$overall": { + "2024-12-01T00:00:00+02:00": 899 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 301 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 301 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 298 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 298 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 300 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 300 + } + } + }, + "643e8d58b6a53d8ae70721c2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 43110 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21555 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 21555 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21555 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 21555 + } + } + }, + "655cccfb8c7cd7ff32031773": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3245 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 649 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 649 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1298 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1298 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1298 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1298 + } + } + }, + "6448e3efe2067a03ba33cbb7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 7054 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3527 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3527 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3527 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3527 + } + } + }, + "66432c55c4df36a964927b2c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 85498 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42654 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42654 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42645 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42645 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 194 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 194 + } + } + }, + "6630a51483064b959c801961": { + "$overall": { + "2024-12-01T00:00:00+02:00": 67700 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6257 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6257 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 33850 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 33850 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 27593 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 27593 + } + } + }, + "65fb16744fe3628e5e65fe2e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 762 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 87 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 87 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 296 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 296 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 379 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 379 + } + } + }, + "652e5833fff93419480c951b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 292754 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146377 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 146377 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 146377 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 146377 + } + } + }, + "65f9e3b139829e6c76826cb5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1072146 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 184418 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 184418 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 150740 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 150740 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 184424 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 184424 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 552564 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 552564 + } + } + }, + "67212578d50b4e9ff9a6cc1f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 459 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 151 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 151 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 100 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 100 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 208 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 208 + } + } + }, + "6540cb89c086274eec8fb0b1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22658 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11329 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11329 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5220 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5220 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6109 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6109 + } + } + }, + "671bcf830ab03d9467221e9b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 636 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 318 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 318 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 318 + } + } + }, + "66032532f43359bff28c011f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 609354 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304677 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 304677 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304677 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 304677 + } + } + }, + "63215ba3a4ca4df9242c24c4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1536 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 673 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 190 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 190 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 673 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 673 + } + } + }, + "6593f529f58e905ecac5cf4b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 60125 + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4558 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4558 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12276 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12276 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16868 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 16868 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 8213 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 8213 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18210 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 18210 + } + } + }, + "642552b70136cef86a79373c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1205 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 481 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 481 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 222 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 222 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 21 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 21 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 481 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 481 + } + } + }, + "661541fa6df43c247a0a31f9": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1905 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 895 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 895 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 895 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 895 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 115 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 115 + } + } + }, + "66828021e73f8d95adbb100f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9080 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2370 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2370 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2170 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2170 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 153 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 153 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4387 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4387 + } + } + }, + "63a81723bee1d5aed77eeecc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 369 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 123 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 123 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 123 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 123 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 123 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 123 + } + } + }, + "63362369e2a2de81df9b0573": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5508 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1483 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1483 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1271 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1271 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1261 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1261 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1493 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1493 + } + } + }, + "6508ba6e7722fc74ea9637ec": { + "$overall": { + "2024-12-01T00:00:00+02:00": 16466 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2507 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2507 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3550 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3550 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2898 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2898 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1043 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1043 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6468 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6468 + } + } + }, + "643682a035c8dd9a2c46ac2b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 107320 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 57733 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 57733 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14979 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14979 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14979 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14979 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9870 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9870 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9759 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9759 + } + } + }, + "6523dfc76b6e9b692e5b79d6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1950 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 975 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 975 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 975 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 975 + } + } + }, + "6759b8ec6b43e4625123293e": { + "$overall": { + "2024-12-01T00:00:00+02:00": 632 + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 233 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 233 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 55 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 55 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 302 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 302 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 42 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 42 + } + } + }, + "6453755860f1803b3a3fba83": { + "$overall": { + "2024-12-01T00:00:00+02:00": 775 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 270 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 270 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 270 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 270 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 235 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 235 + } + } + }, + "659b604dbfebd8d8d51299ca": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11202 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3734 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3734 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3734 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3734 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3734 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3734 + } + } + }, + "63320239ee1316a5c87e38d1": { + "$overall": { + "2024-12-01T00:00:00+02:00": 36924 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18462 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 18462 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 18462 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 18462 + } + } + }, + "62fe5f8f227ab843d4272a38": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4394 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1416 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1416 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1488 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1488 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1490 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1490 + } + } + }, + "6578af0c7500743a91038c4b": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1200 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 400 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 400 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 400 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 400 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 400 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 400 + } + } + }, + "63a059f5bee1d5aed7e4d95c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4239 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1413 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1413 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1413 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1413 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1413 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1413 + } + } + }, + "6322333a2d7b721933bd8cf6": { + "$overall": { + "2024-12-01T00:00:00+02:00": 30410 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10656 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10656 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9980 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9980 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9774 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9774 + } + } + }, + "644c1877631887e5f006a54f": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3573 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1191 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1191 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1191 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1191 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1191 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1191 + } + } + }, + "657752b62682a8ccf9887a7c": { + "$overall": { + "2024-12-01T00:00:00+02:00": 298157 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 149115 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 149115 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 304 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 304 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 148669 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 148669 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 58 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 58 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 11 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 11 + } + } + }, + "65eb2863bd6a1b3de8913c21": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5027 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 532 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 532 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 775 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 775 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2661 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2661 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1059 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1059 + } + } + }, + "63d31df842cfbce360a1f91d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2047 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 512 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 512 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 533 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 533 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 458 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 458 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 544 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 544 + } + } + }, + "65e5c6dde5b9e5a88a318d93": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1159 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 231 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 231 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 697 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 697 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 231 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 231 + } + } + }, + "651c209f8816295152811079": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2513 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 22 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 22 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 751 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 751 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 870 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 870 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 870 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 870 + } + } + }, + "636044f61fbb8368897eadbc": { + "$overall": { + "2024-12-01T00:00:00+02:00": 72240 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 36120 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 36120 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 36120 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 36120 + } + } + }, + "669ba0033c94be87b123b8c5": { + "$overall": { + "2024-12-01T00:00:00+02:00": 24392 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12196 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12196 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12196 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 12196 + } + } + }, + "646d9f170b49196df3ab5f80": { + "$overall": { + "2024-12-01T00:00:00+02:00": 28812 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14406 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14406 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 14406 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 14406 + } + } + }, + "64ae84fa90b5785d4716e362": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2824 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1412 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1412 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1412 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1412 + } + } + }, + "66ac042fb11ac224eaf4f23a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 32302 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10782 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10782 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10782 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10782 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 10738 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 10738 + } + } + }, + "6298723bbf5f05001986dd80": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1230 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 615 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 615 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 615 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 615 + } + } + }, + "63c8f9dd69a571f23a1f87d0": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9259 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4627 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 5 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4627 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4627 + } + } + }, + "64a079225cccb636d843bd26": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3306 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1653 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1653 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1653 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1653 + } + } + }, + "6436e7094f087a109c0322a7": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12680 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6340 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6340 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 6340 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 6340 + } + } + }, + "656f1ea74663d4c5f711bce4": { + "$overall": { + "2024-12-01T00:00:00+02:00": 714 + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 219 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 219 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 219 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 219 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 276 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 276 + } + } + }, + "665f80fe8e255032572549f2": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1759 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 351 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 351 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 351 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 355 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 355 + } + }, + "sms": { + "$overall": { + "2024-12-01T00:00:00+02:00": 351 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 351 + } + } + }, + "6605a26d8b3193b7f042cff3": { + "$overall": { + "2024-12-01T00:00:00+02:00": 461 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 199 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 199 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 25 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 25 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 29 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 29 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 208 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 208 + } + } + }, + "6627ad47fe81f5c852ec1b6a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 12270 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4014 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4014 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 117 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 117 + } + }, + "push": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4008 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4008 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 4131 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 4131 + } + } + }, + "64477125ac1c08f04edc14aa": { + "$overall": { + "2024-12-01T00:00:00+02:00": 26330 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9881 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9881 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3284 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3284 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 3284 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 3284 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 9881 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 9881 + } + } + }, + "63fa339af93b4fa85aac153d": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1312 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 486 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 486 + } + }, + "digest": { + "$overall": { + "2024-12-01T00:00:00+02:00": 413 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 413 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 413 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 413 + } + } + }, + "65e0b87e3a2387ff89a82beb": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1410 + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 414 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 414 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 705 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 705 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 291 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 291 + } + } + }, + "638241fa15685362a30e0365": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1440 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 480 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 480 + } + }, + "delay": { + "$overall": { + "2024-12-01T00:00:00+02:00": 480 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 480 + } + }, + "chat": { + "$overall": { + "2024-12-01T00:00:00+02:00": 480 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 480 + } + } + }, + "6578cf542c7e267bc3e3897a": { + "$overall": { + "2024-12-01T00:00:00+02:00": 5828 + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2090 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2090 + } + }, + "email": { + "$overall": { + "2024-12-01T00:00:00+02:00": 1648 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 1648 + } + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 2090 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 2090 + } + } + }, + "67219003d36466abaeb1f995": { + "$overall": { + "2024-12-01T00:00:00+02:00": 696 + }, + "in_app": { + "$overall": { + "2024-12-01T00:00:00+02:00": 348 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 348 + } + }, + "trigger": { + "$overall": { + "2024-12-01T00:00:00+02:00": 348 + }, + "undefined": { + "2024-12-01T00:00:00+02:00": 348 + } + } + } + } + }, + "time_comparison": { + "date_range": { + "from_date": "2024-11-01T00:00:00+02:00", + "to_date": "2024-11-30T23:59:59.999000+02:00" + }, + "series": { + "A. Notification Subscriber Event Trigger [Total Events]": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25243970 + }, + "63d31df842cfbce360a1f91d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 632 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 632 + }, + "Listing Updated": { + "2024-11-01T00:00:00+02:00": 562 + }, + "Listing Cancellation Request": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Listing Created": { + "2024-11-01T00:00:00+02:00": 43 + }, + "Magic Link": { + "2024-11-01T00:00:00+02:00": 16 + } + } + }, + "6680a87553d09da082d4fd31": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4402 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4402 + }, + "Overdue Invoices": { + "2024-11-01T00:00:00+02:00": 1701 + }, + "Items to order": { + "2024-11-01T00:00:00+02:00": 2113 + }, + "Overdue Purchase Orders": { + "2024-11-01T00:00:00+02:00": 588 + } + } + }, + "645863ebd6925ea19b7d2456": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2821 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2821 + }, + "Workflow Notification": { + "2024-11-01T00:00:00+02:00": 2821 + } + } + }, + "6337ca88ee1316a5c8a9009e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 922 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 922 + }, + "Projects": { + "2024-11-01T00:00:00+02:00": 524 + }, + "Tasks": { + "2024-11-01T00:00:00+02:00": 295 + }, + "Timesheets": { + "2024-11-01T00:00:00+02:00": 100 + } + } + }, + "660c351dbfb1f0d56f7a6fcc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2468 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2468 + }, + "requestlist-actorsaddedtoitem-v1": { + "2024-11-01T00:00:00+02:00": 86 + }, + "requestlist-duedatereminders-v1": { + "2024-11-01T00:00:00+02:00": 2382 + } + } + }, + "643682a035c8dd9a2c46ac2b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 112587 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 112587 + }, + "ConjunctionStatusUpdate": { + "2024-11-01T00:00:00+02:00": 11768 + }, + "FileFailureProcessing": { + "2024-11-01T00:00:00+02:00": 33 + }, + "ChatRoomCreated": { + "2024-11-01T00:00:00+02:00": 2513 + }, + "ManoeuvreScreeningSummaryUpdate": { + "2024-11-01T00:00:00+02:00": 9174 + }, + "ConjunctionSummaryUpdate": { + "2024-11-01T00:00:00+02:00": 89099 + } + } + }, + "664c96c0e6f72af294ae867a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 525 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 525 + }, + "Add On": { + "2024-11-01T00:00:00+02:00": 40 + }, + "Independent Request Acceptance": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Associate Disconnection": { + "2024-11-01T00:00:00+02:00": 23 + }, + "Independent Association Request": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Place Order": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Independent Request Rejection": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Sign Contract": { + "2024-11-01T00:00:00+02:00": 306 + }, + "Subscription": { + "2024-11-01T00:00:00+02:00": 45 + } + } + }, + "6549444cb6c1c9448db38bc2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1052 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1052 + }, + "Subscription Notice": { + "2024-11-01T00:00:00+02:00": 1052 + } + } + }, + "659d3b40f58e905eca1793b0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 122 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 122 + }, + "Test notification": { + "2024-11-01T00:00:00+02:00": 122 + } + } + }, + "66cb2b9ecf609b1343ac5d85": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7628 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7628 + }, + "admin-subscriptions": { + "2024-11-01T00:00:00+02:00": 474 + }, + "admin-accounts": { + "2024-11-01T00:00:00+02:00": 7154 + } + } + }, + "66d61e9dcf609b134368c516": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6299 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6299 + }, + "landlord_tenancy_confirmed": { + "2024-11-01T00:00:00+02:00": 9 + }, + "send_request_to_supplier": { + "2024-11-01T00:00:00+02:00": 85 + }, + "maintenance_created_from_inspection": { + "2024-11-01T00:00:00+02:00": 130 + }, + "property_owner_tenancy_extended": { + "2024-11-01T00:00:00+02:00": 11 + }, + "new_tenant_expense": { + "2024-11-01T00:00:00+02:00": 16 + }, + "bond_payment_received": { + "2024-11-01T00:00:00+02:00": 11 + }, + "private_viewing_reminder_non_user": { + "2024-11-01T00:00:00+02:00": 11 + }, + "reset_password_instructions": { + "2024-11-01T00:00:00+02:00": 15 + }, + "new_chat_message": { + "2024-11-01T00:00:00+02:00": 376 + }, + "new_tenancy_request_property_manager_variant": { + "2024-11-01T00:00:00+02:00": 56 + }, + "rent_payment_sent": { + "2024-11-01T00:00:00+02:00": 408 + }, + "inspection_completed": { + "2024-11-01T00:00:00+02:00": 41 + }, + "tenancy_extension_added": { + "2024-11-01T00:00:00+02:00": 15 + }, + "landlord_has_signed": { + "2024-11-01T00:00:00+02:00": 11 + }, + "rent_payment_overdue": { + "2024-11-01T00:00:00+02:00": 75 + }, + "tenancy_in_arrears": { + "2024-11-01T00:00:00+02:00": 33 + }, + "applicant_added": { + "2024-11-01T00:00:00+02:00": 35 + }, + "daily_listing_matches": { + "2024-11-01T00:00:00+02:00": 184 + }, + "private_viewing_confirmed": { + "2024-11-01T00:00:00+02:00": 22 + }, + "rent_payment_received": { + "2024-11-01T00:00:00+02:00": 464 + }, + "renter_tenancy_confirmed_property_management_variant": { + "2024-11-01T00:00:00+02:00": 35 + }, + "send_request_to_property_owner": { + "2024-11-01T00:00:00+02:00": 11 + }, + "share_with_owner": { + "2024-11-01T00:00:00+02:00": 45 + }, + "close_reminder": { + "2024-11-01T00:00:00+02:00": 253 + }, + "reminder_to_confirm": { + "2024-11-01T00:00:00+02:00": 11 + }, + "tenancy_invite_accepted_landlord": { + "2024-11-01T00:00:00+02:00": 14 + }, + "tenancy_request_accepted": { + "2024-11-01T00:00:00+02:00": 99 + }, + "payment_remittance": { + "2024-11-01T00:00:00+02:00": 21 + }, + "rental_application_unsuccessful": { + "2024-11-01T00:00:00+02:00": 20 + }, + "property_manager_tenancy_locked_in": { + "2024-11-01T00:00:00+02:00": 90 + }, + "new_enquiry_message": { + "2024-11-01T00:00:00+02:00": 2154 + }, + "expense_updated_for_uninvited_tenants": { + "2024-11-01T00:00:00+02:00": 14 + }, + "confirmation_instructions": { + "2024-11-01T00:00:00+02:00": 116 + }, + "account_summary": { + "2024-11-01T00:00:00+02:00": 297 + }, + "awaiting_sign_offs": { + "2024-11-01T00:00:00+02:00": 84 + }, + "tenancy_invite_accepted": { + "2024-11-01T00:00:00+02:00": 8 + }, + "external_bond_filed": { + "2024-11-01T00:00:00+02:00": 6 + }, + "open_home_reminder": { + "2024-11-01T00:00:00+02:00": 8 + }, + "tenancy_services_bond_filing": { + "2024-11-01T00:00:00+02:00": 18 + }, + "tenancy_variation_signed": { + "2024-11-01T00:00:00+02:00": 11 + }, + "bond_payment_due": { + "2024-11-01T00:00:00+02:00": 85 + }, + "new_rental_application": { + "2024-11-01T00:00:00+02:00": 91 + }, + "background_check_completed": { + "2024-11-01T00:00:00+02:00": 26 + }, + "time_confirmed_with_message": { + "2024-11-01T00:00:00+02:00": 62 + }, + "billing_method_charge_failed": { + "2024-11-01T00:00:00+02:00": 94 + }, + "rent_split_set": { + "2024-11-01T00:00:00+02:00": 8 + }, + "charge_receipt": { + "2024-11-01T00:00:00+02:00": 25 + }, + "uninvited_tenant_variation_document": { + "2024-11-01T00:00:00+02:00": 9 + }, + "tenancy_expiring": { + "2024-11-01T00:00:00+02:00": 59 + }, + "listing_approved": { + "2024-11-01T00:00:00+02:00": 43 + }, + "property_owner_tenancy_confirmed": { + "2024-11-01T00:00:00+02:00": 18 + }, + "rent_in_advance_reminder": { + "2024-11-01T00:00:00+02:00": 45 + }, + "user_edited_notice": { + "2024-11-01T00:00:00+02:00": 19 + }, + "renter_tenancy_confirmed": { + "2024-11-01T00:00:00+02:00": 15 + }, + "private_viewing_reminder": { + "2024-11-01T00:00:00+02:00": 12 + }, + "rental_application_accepted": { + "2024-11-01T00:00:00+02:00": 24 + }, + "tenancy_extension_confirmed": { + "2024-11-01T00:00:00+02:00": 61 + }, + "rental_application_shortlisted": { + "2024-11-01T00:00:00+02:00": 25 + }, + "updated_tenant_expense": { + "2024-11-01T00:00:00+02:00": 62 + }, + "first_application_made": { + "2024-11-01T00:00:00+02:00": 18 + }, + "applicant_shortlisted": { + "2024-11-01T00:00:00+02:00": 17 + }, + "property_manager_tenancy_confirmed": { + "2024-11-01T00:00:00+02:00": 97 + } + } + }, + "653ffc80c93cc0129ad126ab": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "Account Threshold Notification": { + "2024-11-01T00:00:00+02:00": 379 + }, + "In-App notification": { + "2024-11-01T00:00:00+02:00": 495 + } + } + }, + "63fbb0118920eed9471fa1b2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22178 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22178 + }, + "Workflow Notification": { + "2024-11-01T00:00:00+02:00": 22113 + }, + "Intern Test": { + "2024-11-01T00:00:00+02:00": 60 + } + } + }, + "656197541eb377d7c3b258a0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5677 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5677 + }, + "Notification Workflow": { + "2024-11-01T00:00:00+02:00": 5677 + } + } + }, + "641d8c2fda8256b93f228fd0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 33164 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 33164 + }, + "order-placed": { + "2024-11-01T00:00:00+02:00": 3006 + }, + "user-product-deleted-from-cart": { + "2024-11-01T00:00:00+02:00": 391 + }, + "notify-me-alerts": { + "2024-11-01T00:00:00+02:00": 382 + }, + "guest-quantity-update-cart": { + "2024-11-01T00:00:00+02:00": 1824 + }, + "orders-canceledBy-seller": { + "2024-11-01T00:00:00+02:00": 11 + }, + "returns-requested": { + "2024-11-01T00:00:00+02:00": 17 + }, + "guest-cart-created": { + "2024-11-01T00:00:00+02:00": 7193 + }, + "guest-product-added-cart": { + "2024-11-01T00:00:00+02:00": 6588 + }, + "customer-signup": { + "2024-11-01T00:00:00+02:00": 147 + }, + "product-added-cart": { + "2024-11-01T00:00:00+02:00": 208 + }, + "canceled-product-from-order": { + "2024-11-01T00:00:00+02:00": 18 + }, + "orders-shipped": { + "2024-11-01T00:00:00+02:00": 3841 + }, + "cart-created": { + "2024-11-01T00:00:00+02:00": 342 + }, + "orders-delivered": { + "2024-11-01T00:00:00+02:00": 2071 + }, + "quantity-updated-cart": { + "2024-11-01T00:00:00+02:00": 131 + }, + "guest-product-deleted-from-cart": { + "2024-11-01T00:00:00+02:00": 6992 + } + } + }, + "65aad6098e557ef0afa191c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "RTUT General": { + "2024-11-01T00:00:00+02:00": 27 + }, + "One-Time-Code": { + "2024-11-01T00:00:00+02:00": 12 + } + } + }, + "64d7bb315b5e6bb444d4dd86": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4034 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4034 + }, + "Onboarding Edited": { + "2024-11-01T00:00:00+02:00": 366 + }, + "Loan Out Approval Requested": { + "2024-11-01T00:00:00+02:00": 213 + }, + "Timecard Changes Made": { + "2024-11-01T00:00:00+02:00": 140 + }, + "timecard-submitted": { + "2024-11-01T00:00:00+02:00": 2936 + }, + "timecard-submitted-on-behalf": { + "2024-11-01T00:00:00+02:00": 225 + }, + "timecard-changes-requested": { + "2024-11-01T00:00:00+02:00": 154 + } + } + }, + "6537ebf5585a37886d9f05b5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9211 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9211 + }, + "Order received - Promoter": { + "2024-11-01T00:00:00+02:00": 4428 + }, + "Order Complete - Customer": { + "2024-11-01T00:00:00+02:00": 4428 + }, + "Event Release - Customers": { + "2024-11-01T00:00:00+02:00": 355 + } + } + }, + "665f34e28e2550325700cda9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58 + }, + "Followers": { + "2024-11-01T00:00:00+02:00": 58 + } + } + }, + "63a32471bee1d5aed72cc01d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7231 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7231 + }, + "Lead created": { + "2024-11-01T00:00:00+02:00": 3871 + }, + "Offer campaign created": { + "2024-11-01T00:00:00+02:00": 2649 + }, + "Advisory report campaign created": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Offer insurance module export": { + "2024-11-01T00:00:00+02:00": 675 + }, + "Broker integration access granted": { + "2024-11-01T00:00:00+02:00": 19 + } + } + }, + "660ef03291bd69a79e31a321": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9414 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9414 + }, + "Tarefa Compartilhada": { + "2024-11-01T00:00:00+02:00": 22 + }, + "Tarefa Atribuída": { + "2024-11-01T00:00:00+02:00": 9380 + }, + "Notas de Item": { + "2024-11-01T00:00:00+02:00": 12 + } + } + }, + "65129c6a87135ffdc368e7a3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1031 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1031 + }, + "Nouvelle Action": { + "2024-11-01T00:00:00+02:00": 110 + }, + "AM complet": { + "2024-11-01T00:00:00+02:00": 27 + }, + "Non-conformité": { + "2024-11-01T00:00:00+02:00": 42 + }, + "newOrderProductReturn": { + "2024-11-01T00:00:00+02:00": 76 + }, + "commentaire Action": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Rappel Action": { + "2024-11-01T00:00:00+02:00": 684 + }, + "Nouvel AM": { + "2024-11-01T00:00:00+02:00": 49 + }, + "Changement état Action": { + "2024-11-01T00:00:00+02:00": 11 + } + } + }, + "65e5c6dde5b9e5a88a318d93": { + "$overall": { + "2024-11-01T00:00:00+02:00": 498 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 498 + }, + "Dataset Notification": { + "2024-11-01T00:00:00+02:00": 498 + } + } + }, + "64fb853287135ffdc3b410ec": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3977 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3977 + }, + "New Voicemail": { + "2024-11-01T00:00:00+02:00": 480 + }, + "New SMS": { + "2024-11-01T00:00:00+02:00": 3497 + } + } + }, + "63b80e5704fdc888671f3820": { + "$overall": { + "2024-11-01T00:00:00+02:00": 855 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 855 + }, + "Email Notification": { + "2024-11-01T00:00:00+02:00": 675 + }, + "SMS Notification": { + "2024-11-01T00:00:00+02:00": 180 + } + } + }, + "6494e6cab1ef6a7f8830e871": { + "$overall": { + "2024-11-01T00:00:00+02:00": 412 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 412 + }, + "Votre profil a été approuvé": { + "2024-11-01T00:00:00+02:00": 118 + }, + "Votre poste est retourné en haut de liste": { + "2024-11-01T00:00:00+02:00": 64 + }, + "Apply Candidate": { + "2024-11-01T00:00:00+02:00": 116 + }, + "Poste expiré": { + "2024-11-01T00:00:00+02:00": 36 + }, + "Visibilité de votre profil expiré": { + "2024-11-01T00:00:00+02:00": 68 + } + } + }, + "66a79f82dfafba8038bc3399": { + "$overall": { + "2024-11-01T00:00:00+02:00": 249 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 249 + }, + "account-verification-code": { + "2024-11-01T00:00:00+02:00": 229 + }, + "account-verification-code-sms": { + "2024-11-01T00:00:00+02:00": 20 + } + } + }, + "63ac163b2588b530704387fc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 599 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 599 + }, + "Patient sent a message": { + "2024-11-01T00:00:00+02:00": 96 + }, + "Dashboard Patient Activity": { + "2024-11-01T00:00:00+02:00": 83 + }, + "Internal message notification": { + "2024-11-01T00:00:00+02:00": 420 + } + } + }, + "6439d814d3f2f7f8eb014099": { + "$overall": { + "2024-11-01T00:00:00+02:00": 307 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 307 + }, + "invitation created (unregistered)": { + "2024-11-01T00:00:00+02:00": 93 + }, + "Reset password": { + "2024-11-01T00:00:00+02:00": 26 + }, + "subscription upgraded": { + "2024-11-01T00:00:00+02:00": 12 + }, + "invitation created (registered)": { + "2024-11-01T00:00:00+02:00": 56 + }, + "Confirmation instructions": { + "2024-11-01T00:00:00+02:00": 67 + }, + "Invitation accepted": { + "2024-11-01T00:00:00+02:00": 49 + } + } + }, + "641df7485d9af70da9c29397": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1473 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1473 + }, + "common-alerts-email": { + "2024-11-01T00:00:00+02:00": 81 + }, + "common-alerts": { + "2024-11-01T00:00:00+02:00": 829 + }, + "reports": { + "2024-11-01T00:00:00+02:00": 556 + } + } + }, + "6663404493a6b815ffefb2f0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 831074 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 831074 + }, + "Approval request": { + "2024-11-01T00:00:00+02:00": 75486 + }, + "Made effective": { + "2024-11-01T00:00:00+02:00": 439977 + }, + "Action assigned": { + "2024-11-01T00:00:00+02:00": 8787 + }, + "Change request": { + "2024-11-01T00:00:00+02:00": 1402 + }, + "Editors Removed": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Approval complete": { + "2024-11-01T00:00:00+02:00": 15036 + }, + "Editors added": { + "2024-11-01T00:00:00+02:00": 43 + }, + "Action completed": { + "2024-11-01T00:00:00+02:00": 2029 + }, + "Approval received": { + "2024-11-01T00:00:00+02:00": 50264 + }, + "Mentions": { + "2024-11-01T00:00:00+02:00": 77 + }, + "Editor Assigned": { + "2024-11-01T00:00:00+02:00": 126 + }, + "Approvers updated": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Approval declined": { + "2024-11-01T00:00:00+02:00": 5298 + }, + "Editors removed": { + "2024-11-01T00:00:00+02:00": 30 + }, + "Draft updated to latest template": { + "2024-11-01T00:00:00+02:00": 1632 + }, + "Editors Added": { + "2024-11-01T00:00:00+02:00": 31 + }, + "Review request": { + "2024-11-01T00:00:00+02:00": 62960 + }, + "Comment added": { + "2024-11-01T00:00:00+02:00": 75 + }, + "Suggestion added": { + "2024-11-01T00:00:00+02:00": 257 + }, + "New Comment Test Workflow": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Editor assigned": { + "2024-11-01T00:00:00+02:00": 244 + }, + "Owner assigned": { + "2024-11-01T00:00:00+02:00": 20759 + }, + "Review complete": { + "2024-11-01T00:00:00+02:00": 16420 + }, + "Mention in a comment": { + "2024-11-01T00:00:00+02:00": 52 + }, + "New comment": { + "2024-11-01T00:00:00+02:00": 1407 + }, + "Training assigned": { + "2024-11-01T00:00:00+02:00": 124384 + }, + "Task Step completed": { + "2024-11-01T00:00:00+02:00": 4249 + } + } + }, + "6408720f46fde50c6d4affe5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4296 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4296 + }, + "User assigned to a key role": { + "2024-11-01T00:00:00+02:00": 163 + }, + "User invited to an event": { + "2024-11-01T00:00:00+02:00": 236 + }, + "A new feedback": { + "2024-11-01T00:00:00+02:00": 30 + }, + "User mentioned in chat": { + "2024-11-01T00:00:00+02:00": 35 + }, + "User mentioned in a feedback comment": { + "2024-11-01T00:00:00+02:00": 36 + }, + "Note added to a task": { + "2024-11-01T00:00:00+02:00": 79 + }, + "Undone task": { + "2024-11-01T00:00:00+02:00": 3625 + }, + "Invalid value provided in a task": { + "2024-11-01T00:00:00+02:00": 92 + } + } + }, + "6502d39087135ffdc35caf67": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14224 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14224 + }, + "events-dynamo-trigger": { + "2024-11-01T00:00:00+02:00": 4858 + }, + "user-add": { + "2024-11-01T00:00:00+02:00": 8 + }, + "events-changed-status": { + "2024-11-01T00:00:00+02:00": 9358 + } + } + }, + "63c146116c33f15eefc12c8d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2422 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2422 + }, + "Non-critical Alarm [v1]": { + "2024-11-01T00:00:00+02:00": 2422 + } + } + }, + "671b580c7cf00cbadbb9b0c3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 634 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 634 + }, + "Onboarding Workflow": { + "2024-11-01T00:00:00+02:00": 634 + } + } + }, + "6569c906478e147113dd7a9e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23 + }, + "DayTrade Welcome Email": { + "2024-11-01T00:00:00+02:00": 12 + }, + "SEBI RA Account Activated": { + "2024-11-01T00:00:00+02:00": 10 + } + } + }, + "6644fabbfbadc9d325d90248": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1428 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1428 + }, + "Allocation notifications": { + "2024-11-01T00:00:00+02:00": 27 + }, + "No scans notifications": { + "2024-11-01T00:00:00+02:00": 472 + }, + "Persona Notifications": { + "2024-11-01T00:00:00+02:00": 41 + }, + "Enrollment notifications": { + "2024-11-01T00:00:00+02:00": 883 + } + } + }, + "64e77d4b96eacf22439b13cd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1322 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1322 + }, + "invite-contact": { + "2024-11-01T00:00:00+02:00": 6 + }, + "iapp-push-notification": { + "2024-11-01T00:00:00+02:00": 549 + }, + "payment-reminder-past": { + "2024-11-01T00:00:00+02:00": 58 + }, + "push-email-notification": { + "2024-11-01T00:00:00+02:00": 442 + }, + "payment-reminder": { + "2024-11-01T00:00:00+02:00": 49 + }, + "sms-workflow": { + "2024-11-01T00:00:00+02:00": 199 + } + } + }, + "66fc55c5cf609b13433a677d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5988 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5988 + }, + "nda-document-preprocessing": { + "2024-11-01T00:00:00+02:00": 201 + }, + "nda-document-processing-failure": { + "2024-11-01T00:00:00+02:00": 60 + }, + "nda-document-processing": { + "2024-11-01T00:00:00+02:00": 3582 + }, + "nda-document-processed": { + "2024-11-01T00:00:00+02:00": 2145 + } + } + }, + "669d47da98a7c2cace1dea46": { + "$overall": { + "2024-11-01T00:00:00+02:00": 84 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 84 + }, + "task-updates": { + "2024-11-01T00:00:00+02:00": 50 + }, + "initiative-updates": { + "2024-11-01T00:00:00+02:00": 34 + } + } + }, + "652e95466c3964c5a2832222": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5233 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5233 + }, + "The Community - Global Email": { + "2024-11-01T00:00:00+02:00": 2581 + }, + "The Community - Global In-app": { + "2024-11-01T00:00:00+02:00": 2542 + }, + "Student Passport - New Request Notifications": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Local-Environment-CBeach": { + "2024-11-01T00:00:00+02:00": 97 + } + } + }, + "6639346438754624b559d51d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 718 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 718 + }, + "echo-notification": { + "2024-11-01T00:00:00+02:00": 717 + } + } + }, + "6578af0c7500743a91038c4b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 121 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 121 + }, + "Default": { + "2024-11-01T00:00:00+02:00": 121 + } + } + }, + "65df17f92b39eba95ab6ae95": { + "$overall": { + "2024-11-01T00:00:00+02:00": 869 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 869 + }, + "externalUserCreatedAndAssigned": { + "2024-11-01T00:00:00+02:00": 56 + }, + "commentCreated": { + "2024-11-01T00:00:00+02:00": 466 + }, + "descriptionMentioned": { + "2024-11-01T00:00:00+02:00": 14 + }, + "externalAssigneeAdded": { + "2024-11-01T00:00:00+02:00": 98 + }, + "reviewerUpdated": { + "2024-11-01T00:00:00+02:00": 41 + }, + "assigneeUpdated": { + "2024-11-01T00:00:00+02:00": 63 + }, + "commentMentioned": { + "2024-11-01T00:00:00+02:00": 131 + } + } + }, + "628f82923c3e82001812b7cf": { + "$overall": { + "2024-11-01T00:00:00+02:00": 200 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 200 + }, + "Employee Activation": { + "2024-11-01T00:00:00+02:00": 10 + }, + "EMAIL_OTP": { + "2024-11-01T00:00:00+02:00": 190 + } + } + }, + "63362369e2a2de81df9b0573": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1731 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1731 + }, + "CSC_LICENSE_KEY_EXPIRED": { + "2024-11-01T00:00:00+02:00": 43 + }, + "ORDER_CHANGE_REQUEST_USER_MENTIONED_IN_COMMENT": { + "2024-11-01T00:00:00+02:00": 25 + }, + "ORDER_CHANGE_REQUEST_UPDATED": { + "2024-11-01T00:00:00+02:00": 582 + }, + "SUBSCRIPTION_INVOICE_PAID": { + "2024-11-01T00:00:00+02:00": 103 + }, + "SUBSCRIPTION_INVOICE_UPCOMING": { + "2024-11-01T00:00:00+02:00": 40 + }, + "UPLOAD_SESSION_FILE_WILL_BE_DELETED": { + "2024-11-01T00:00:00+02:00": 208 + }, + "SUBSCRIPTION_PAYMENT_FAILED": { + "2024-11-01T00:00:00+02:00": 83 + }, + "Order change request added": { + "2024-11-01T00:00:00+02:00": 384 + }, + "ORDER_CHANGE_REQUEST_ASSIGNEE_CHANGED": { + "2024-11-01T00:00:00+02:00": 126 + }, + "ORDER_CHANGE_REQUEST_ARCHIVED": { + "2024-11-01T00:00:00+02:00": 9 + }, + "ORDER_CHANGE_REQUEST_NEW_COMMENT": { + "2024-11-01T00:00:00+02:00": 128 + } + } + }, + "6523dfc76b6e9b692e5b79d6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1253 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1253 + }, + "Sale Notification": { + "2024-11-01T00:00:00+02:00": 1253 + } + } + }, + "65e5b2bac09e1cf82ec747bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 783 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 783 + }, + "Onboarding": { + "2024-11-01T00:00:00+02:00": 82 + }, + "Network - user create follow request": { + "2024-11-01T00:00:00+02:00": 365 + }, + "Kanban - User assigned to a task": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Network - user answer follow request": { + "2024-11-01T00:00:00+02:00": 324 + } + } + }, + "639c385254ca30325e86f445": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14633 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14633 + }, + "Chasback has expired": { + "2024-11-01T00:00:00+02:00": 15 + }, + "ADMIN_CUSTOM_NOTIFICATION": { + "2024-11-01T00:00:00+02:00": 237 + }, + "Badge targets updated by the admin": { + "2024-11-01T00:00:00+02:00": 486 + }, + "Admin custom installment notifications": { + "2024-11-01T00:00:00+02:00": 6419 + }, + "Merchant's credit line application rejected": { + "2024-11-01T00:00:00+02:00": 19 + }, + "New Invoice Request Received": { + "2024-11-01T00:00:00+02:00": 526 + }, + "Invoice amount refunded by admin": { + "2024-11-01T00:00:00+02:00": 94 + }, + "Installment Overdue": { + "2024-11-01T00:00:00+02:00": 2863 + }, + "Merchant's credit line application approved": { + "2024-11-01T00:00:00+02:00": 66 + }, + "Installment auto-debited from wallet": { + "2024-11-01T00:00:00+02:00": 101 + }, + "Pending Installment Payment Successful": { + "2024-11-01T00:00:00+02:00": 1074 + }, + "Invoice Completely Paid": { + "2024-11-01T00:00:00+02:00": 280 + }, + "Invoice Due For Payment": { + "2024-11-01T00:00:00+02:00": 152 + }, + "2 days before next installment": { + "2024-11-01T00:00:00+02:00": 424 + }, + "Wallet has been topped-up successfully": { + "2024-11-01T00:00:00+02:00": 103 + }, + "On due date of an installment": { + "2024-11-01T00:00:00+02:00": 993 + }, + "1 day before next installment": { + "2024-11-01T00:00:00+02:00": 563 + }, + "Cashback about to expire": { + "2024-11-01T00:00:00+02:00": 128 + }, + "Merchant submits credit line application": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Cashback has been won": { + "2024-11-01T00:00:00+02:00": 45 + }, + "merchant deactivated due to risk transaction": { + "2024-11-01T00:00:00+02:00": 14 + } + } + }, + "6627a8d783dccfeec76eb3f3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4163 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4163 + }, + "logicballs-free-users": { + "2024-11-01T00:00:00+02:00": 3975 + }, + "logicballs-paid-users": { + "2024-11-01T00:00:00+02:00": 188 + } + } + }, + "6578cf542c7e267bc3e3897a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5078 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5078 + }, + "TIMESHEET:REJECT": { + "2024-11-01T00:00:00+02:00": 28 + }, + "TIMESHEET:CREATE": { + "2024-11-01T00:00:00+02:00": 466 + }, + "TIMESHEET:DELETE": { + "2024-11-01T00:00:00+02:00": 153 + }, + "PAYRUN:FAILED": { + "2024-11-01T00:00:00+02:00": 43 + }, + "LEAVE-REQUEST:CREATE": { + "2024-11-01T00:00:00+02:00": 232 + }, + "LEAVE-REQUEST:UPDATE": { + "2024-11-01T00:00:00+02:00": 88 + }, + "LEAVE-REQUEST:REJECT": { + "2024-11-01T00:00:00+02:00": 10 + }, + "LEAVE-REQUEST:APPROVE": { + "2024-11-01T00:00:00+02:00": 83 + }, + "PAYRUN:FILED": { + "2024-11-01T00:00:00+02:00": 3547 + }, + "TIMESHEET:APPROVE": { + "2024-11-01T00:00:00+02:00": 217 + }, + "LEAVE-REQUEST:CANCEL": { + "2024-11-01T00:00:00+02:00": 24 + }, + "TIMESHEET:UPDATE": { + "2024-11-01T00:00:00+02:00": 185 + } + } + }, + "667d2415de5890bc6c29b3cc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6982 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6982 + }, + "GBC": { + "2024-11-01T00:00:00+02:00": 435 + }, + "Manual-notifications": { + "2024-11-01T00:00:00+02:00": 878 + }, + "GBC_Delay": { + "2024-11-01T00:00:00+02:00": 5669 + } + } + }, + "63cea3496779056a3f2fff8d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1249 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1249 + }, + "Patient OTP": { + "2024-11-01T00:00:00+02:00": 22 + }, + "First Time Order Confirmation for subscriber 423": { + "2024-11-01T00:00:00+02:00": 18 + }, + "First Time Order Confirmation": { + "2024-11-01T00:00:00+02:00": 92 + }, + "Pharmacy Email on Exception": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Admin Patient Message": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Patient Welcome": { + "2024-11-01T00:00:00+02:00": 223 + }, + "Admin New Order": { + "2024-11-01T00:00:00+02:00": 155 + }, + "Order Receipt": { + "2024-11-01T00:00:00+02:00": 17 + }, + "Prescription Changed": { + "2024-11-01T00:00:00+02:00": 8 + }, + "New Refill": { + "2024-11-01T00:00:00+02:00": 21 + }, + "firstTimeOrderConfirmation for subscriber 352": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Admin New Patient": { + "2024-11-01T00:00:00+02:00": 279 + }, + "First Time New Prescription": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Order Confirmation": { + "2024-11-01T00:00:00+02:00": 24 + }, + "Export disputes": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Admin Daily Report": { + "2024-11-01T00:00:00+02:00": 136 + }, + "Admin New Prescription": { + "2024-11-01T00:00:00+02:00": 14 + }, + "firstTimeOrderConfirmation for subscriber 421": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Patient Welcome for subscriber 423": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Doctor Message": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Support Message": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 6 + }, + "custom in app messages": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Patient Magic Link": { + "2024-11-01T00:00:00+02:00": 16 + } + } + }, + "650d24f8f39b9230da78520b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 688 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 688 + }, + "New comment mention": { + "2024-11-01T00:00:00+02:00": 13 + }, + "New comment": { + "2024-11-01T00:00:00+02:00": 675 + } + } + }, + "63f2c2af62dd0f648118e82f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44470 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44470 + }, + "pushReminder": { + "2024-11-01T00:00:00+02:00": 15316 + }, + "emailReminder": { + "2024-11-01T00:00:00+02:00": 29154 + } + } + }, + "62ac67523de29f001cb8bfdb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 590 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 590 + }, + "Company team invitation": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Invite to Werk test": { + "2024-11-01T00:00:00+02:00": 472 + }, + "Send Report to the Candidate": { + "2024-11-01T00:00:00+02:00": 111 + } + } + }, + "63fe730e5787050c5df466a9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7061 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7061 + }, + "ve-alerts": { + "2024-11-01T00:00:00+02:00": 4248 + }, + "ve-new-event": { + "2024-11-01T00:00:00+02:00": 159 + }, + "ve-model-changes": { + "2024-11-01T00:00:00+02:00": 2638 + }, + "Untitled": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "667afbe4231acc7b876e0a8a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 414 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 414 + }, + "Contacts": { + "2024-11-01T00:00:00+02:00": 104 + }, + "Tasks": { + "2024-11-01T00:00:00+02:00": 17 + }, + "New Direct Booking Chat": { + "2024-11-01T00:00:00+02:00": 293 + } + } + }, + "668fa1064111ae088df8ecd3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 465 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 465 + }, + "empa-workflow": { + "2024-11-01T00:00:00+02:00": 465 + } + } + }, + "63b4a3edc2c62a5b4b374cc6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 755 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 755 + }, + "Payout Deposit Updated": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Content Published": { + "2024-11-01T00:00:00+02:00": 79 + }, + "Contract Expired": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Offer Accepted": { + "2024-11-01T00:00:00+02:00": 58 + }, + "Contract Signature Reminded": { + "2024-11-01T00:00:00+02:00": 156 + }, + "Contact Added": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Content Message Added": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Collaboration Message Added": { + "2024-11-01T00:00:00+02:00": 84 + }, + "Invoice Status Updated": { + "2024-11-01T00:00:00+02:00": 174 + }, + "Offer Sent": { + "2024-11-01T00:00:00+02:00": 77 + }, + "Invoice Sent": { + "2024-11-01T00:00:00+02:00": 64 + } + } + }, + "640f33277df3c830240b71b4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 429 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 429 + }, + "Weekly family report": { + "2024-11-01T00:00:00+02:00": 300 + }, + "Question support": { + "2024-11-01T00:00:00+02:00": 119 + } + } + }, + "66a0f9f7f502999ed8453644": { + "$overall": { + "2024-11-01T00:00:00+02:00": 710 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 710 + }, + "Project Deletion Notifications": { + "2024-11-01T00:00:00+02:00": 44 + }, + "Project Creation Notifications": { + "2024-11-01T00:00:00+02:00": 71 + }, + "Subscription canceled Notifications": { + "2024-11-01T00:00:00+02:00": 91 + }, + "Project Deployment Notifications": { + "2024-11-01T00:00:00+02:00": 22 + }, + "Payment Notifications": { + "2024-11-01T00:00:00+02:00": 278 + }, + "Subscription update Notifications": { + "2024-11-01T00:00:00+02:00": 194 + } + } + }, + "636a6b4d9e04bb11b575cf74": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4297 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4297 + }, + "insuranceActionRequiredAlert": { + "2024-11-01T00:00:00+02:00": 7 + }, + "orderCancellationAlert": { + "2024-11-01T00:00:00+02:00": 7 + }, + "order-status-change-alert": { + "2024-11-01T00:00:00+02:00": 408 + }, + "orderAlert": { + "2024-11-01T00:00:00+02:00": 916 + }, + "quoteEmailTemplate": { + "2024-11-01T00:00:00+02:00": 10 + }, + "sendUserDefaultPassword": { + "2024-11-01T00:00:00+02:00": 11 + }, + "tataApiAlert": { + "2024-11-01T00:00:00+02:00": 2870 + }, + "newBulkOrderAlert": { + "2024-11-01T00:00:00+02:00": 29 + }, + "tataAigOrderEmail": { + "2024-11-01T00:00:00+02:00": 27 + }, + "visaAtRisk": { + "2024-11-01T00:00:00+02:00": 9 + } + } + }, + "6508ba6e7722fc74ea9637ec": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10121 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10121 + }, + "Case document is ready": { + "2024-11-01T00:00:00+02:00": 1033 + }, + "Case Document sent to review": { + "2024-11-01T00:00:00+02:00": 2808 + }, + "New chat message received": { + "2024-11-01T00:00:00+02:00": 5707 + }, + "Case Document has error": { + "2024-11-01T00:00:00+02:00": 503 + }, + "Immigrant joins the case": { + "2024-11-01T00:00:00+02:00": 64 + }, + "Case document is blocked": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "66828021e73f8d95adbb100f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5529 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5529 + }, + "Storage System Share": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Expiry Warning Notification": { + "2024-11-01T00:00:00+02:00": 400 + }, + "Approval Notification": { + "2024-11-01T00:00:00+02:00": 145 + }, + "roles": { + "2024-11-01T00:00:00+02:00": 535 + }, + "tenant-join-accept-reject": { + "2024-11-01T00:00:00+02:00": 74 + }, + "mdf-receivable-payable": { + "2024-11-01T00:00:00+02:00": 26 + }, + "lead-actions": { + "2024-11-01T00:00:00+02:00": 959 + }, + "invite": { + "2024-11-01T00:00:00+02:00": 114 + }, + "Dealflow CRUD": { + "2024-11-01T00:00:00+02:00": 1564 + }, + "new-partner-invite": { + "2024-11-01T00:00:00+02:00": 7 + }, + "pov-request": { + "2024-11-01T00:00:00+02:00": 107 + }, + "mdf-request": { + "2024-11-01T00:00:00+02:00": 21 + }, + "notes": { + "2024-11-01T00:00:00+02:00": 572 + }, + "tenant-access-request": { + "2024-11-01T00:00:00+02:00": 61 + }, + "note-comments": { + "2024-11-01T00:00:00+02:00": 592 + }, + "invite-user": { + "2024-11-01T00:00:00+02:00": 56 + }, + "products-industrySegment": { + "2024-11-01T00:00:00+02:00": 32 + }, + "converted-to-opportunity": { + "2024-11-01T00:00:00+02:00": 258 + } + } + }, + "65c67ec9b637cdb23e09edef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 410 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 410 + }, + "Summary PDF": { + "2024-11-01T00:00:00+02:00": 410 + } + } + }, + "6298723bbf5f05001986dd80": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1323 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1323 + }, + "create-organisation": { + "2024-11-01T00:00:00+02:00": 380 + }, + "unverified-create-task": { + "2024-11-01T00:00:00+02:00": 375 + }, + "unverified-create-job": { + "2024-11-01T00:00:00+02:00": 40 + }, + "certificate-uploaded": { + "2024-11-01T00:00:00+02:00": 528 + } + } + }, + "6397389154ca30325edb6391": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1305 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1305 + }, + "Tenant_Invitation": { + "2024-11-01T00:00:00+02:00": 164 + }, + "Task_Status_Updated": { + "2024-11-01T00:00:00+02:00": 23 + }, + "Tenant_Created": { + "2024-11-01T00:00:00+02:00": 246 + }, + "Auth_Registration_Verified": { + "2024-11-01T00:00:00+02:00": 354 + }, + "Tenant_User_Created": { + "2024-11-01T00:00:00+02:00": 90 + }, + "Auth_Registration_Verification": { + "2024-11-01T00:00:00+02:00": 275 + }, + "Task_Assigned": { + "2024-11-01T00:00:00+02:00": 46 + }, + "Tenant_User_Updated": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Sampling_Ready_To_Review": { + "2024-11-01T00:00:00+02:00": 94 + } + } + }, + "66b1fe79aa4218d12657d85b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 786 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 786 + }, + "filemaster-in-app-workflow": { + "2024-11-01T00:00:00+02:00": 786 + } + } + }, + "66704e3f30319d13334f4306": { + "$overall": { + "2024-11-01T00:00:00+02:00": 611471 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 611471 + }, + "pushNotification": { + "2024-11-01T00:00:00+02:00": 243 + }, + "Medvol_V1_Notification": { + "2024-11-01T00:00:00+02:00": 611228 + } + } + }, + "634826ed27d50dea0ba493f9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25979 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25979 + }, + "single message with url": { + "2024-11-01T00:00:00+02:00": 25979 + } + } + }, + "642d9001c6b53aa5dd5124f5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1201278 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1201278 + }, + "Newclus Digest": { + "2024-11-01T00:00:00+02:00": 4262 + }, + "Cluster In-App": { + "2024-11-01T00:00:00+02:00": 1023151 + }, + "Daily Digest": { + "2024-11-01T00:00:00+02:00": 173865 + } + } + }, + "63a81723bee1d5aed77eeecc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 366 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 366 + }, + "login-notification": { + "2024-11-01T00:00:00+02:00": 366 + } + } + }, + "63a988938099fc7fe0b9f12d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 644 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 644 + }, + "withdraw-funds-from-user-account": { + "2024-11-01T00:00:00+02:00": 21 + }, + "cancel-pending-order": { + "2024-11-01T00:00:00+02:00": 29 + }, + "fund-User-Account-from-elphinstone account": { + "2024-11-01T00:00:00+02:00": 50 + }, + "funds_update": { + "2024-11-01T00:00:00+02:00": 394 + }, + "Crypto Transactions Email": { + "2024-11-01T00:00:00+02:00": 30 + }, + "payoneer fund account": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Update Information (KYC Failed)": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Account Approved by Alpaca": { + "2024-11-01T00:00:00+02:00": 41 + }, + "subscribe-portfolio": { + "2024-11-01T00:00:00+02:00": 18 + }, + "sign-up-non-us": { + "2024-11-01T00:00:00+02:00": 44 + } + } + }, + "646eaa72e0d0d1b39ac3b281": { + "$overall": { + "2024-11-01T00:00:00+02:00": 945 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 945 + }, + "Adm with CTA": { + "2024-11-01T00:00:00+02:00": 728 + }, + "Adm - General": { + "2024-11-01T00:00:00+02:00": 217 + } + } + }, + "63bcf68d35958e9aa59578ff": { + "$overall": { + "2024-11-01T00:00:00+02:00": 283 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 283 + }, + "cnc-notification": { + "2024-11-01T00:00:00+02:00": 283 + } + } + }, + "64341d3fd766fd13ee96b6a1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1955 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1955 + }, + "Experiment Finished": { + "2024-11-01T00:00:00+02:00": 951 + }, + "Experiment Created": { + "2024-11-01T00:00:00+02:00": 1004 + } + } + }, + "6635b78bbe41ef77518aaba0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30195 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30195 + }, + "task-status": { + "2024-11-01T00:00:00+02:00": 30195 + } + } + }, + "658e6a3b0ad62708782a93bf": { + "$overall": { + "2024-11-01T00:00:00+02:00": 778 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 778 + }, + "In App Notification": { + "2024-11-01T00:00:00+02:00": 778 + } + } + }, + "65ceaef2535ad490c942a13c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30895 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30895 + }, + "Asset Risk Score Decreased": { + "2024-11-01T00:00:00+02:00": 342 + }, + "New Vulnerability Identified": { + "2024-11-01T00:00:00+02:00": 16307 + }, + "New Asset Creation": { + "2024-11-01T00:00:00+02:00": 311 + }, + "Asset Risk Score Increased": { + "2024-11-01T00:00:00+02:00": 1576 + }, + "Fixed Vulnerability": { + "2024-11-01T00:00:00+02:00": 12265 + }, + "New message in Security Experts": { + "2024-11-01T00:00:00+02:00": 94 + } + } + }, + "64f0c28825339d16c5d8131a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 631 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 631 + }, + "chat-message": { + "2024-11-01T00:00:00+02:00": 631 + } + } + }, + "627cf999d4869d0018625c67": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4740 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4740 + }, + "shipping-suivi": { + "2024-11-01T00:00:00+02:00": 982 + }, + "order-confirmation": { + "2024-11-01T00:00:00+02:00": 1902 + }, + "dispo-article": { + "2024-11-01T00:00:00+02:00": 7 + }, + "demande-retour": { + "2024-11-01T00:00:00+02:00": 120 + }, + "mail-contact": { + "2024-11-01T00:00:00+02:00": 768 + }, + "demande-sav": { + "2024-11-01T00:00:00+02:00": 120 + }, + "shipping-confirmation": { + "2024-11-01T00:00:00+02:00": 841 + } + } + }, + "64469b1b4919b8d7cbf845ef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4921 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4921 + }, + "[EN] External-Listing Live-Listing Price Update Confirmation": { + "2024-11-01T00:00:00+02:00": 43 + }, + "[TC] External-Buy-Order Confirmation (IF Delivery)": { + "2024-11-01T00:00:00+02:00": 19 + }, + "[EN] External-Buy-Confirmation of deposit payment": { + "2024-11-01T00:00:00+02:00": 24 + }, + "[TC] External-Quotation-New Quotation Submission Confirmation": { + "2024-11-01T00:00:00+02:00": 10 + }, + "[EN] External-Concierge Consignment-Watch Authentication Approved": { + "2024-11-01T00:00:00+02:00": 49 + }, + "[EN] External-Buy-Order Confirmation (IF Pickup)": { + "2024-11-01T00:00:00+02:00": 79 + }, + "[EN] External-Listing Live-Consignment Period Extended": { + "2024-11-01T00:00:00+02:00": 43 + }, + "[EN] External-Buy-Order Is Ready For Pickup": { + "2024-11-01T00:00:00+02:00": 34 + }, + "[TC] External-Buy-Order Confirmation (IF Pickup)": { + "2024-11-01T00:00:00+02:00": 18 + }, + "[EN] External-Quotations-Quotation Ready": { + "2024-11-01T00:00:00+02:00": 195 + }, + "[EN] External-Concierge Consignment-(IF DROP-OFF) (Reminder) Watch Delivery": { + "2024-11-01T00:00:00+02:00": 66 + }, + "[EN] External-Offers (Sell)-Counter Offer Confirmation": { + "2024-11-01T00:00:00+02:00": 52 + }, + "[EN] External-Concierge Consignment-Watch Sold": { + "2024-11-01T00:00:00+02:00": 58 + }, + "[EN] External-Offers (Sell)-Received Counteroffer From Buyer": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Core Forget Password": { + "2024-11-01T00:00:00+02:00": 66 + }, + "[EN] External-Offers (Sell)-Offer Accepted By The Buyer": { + "2024-11-01T00:00:00+02:00": 18 + }, + "[EN] External-Offers (buy)-Offer Accepted 24 Hours To Complete Payment": { + "2024-11-01T00:00:00+02:00": 16 + }, + "[EN] External-Buy-Cart Abandonment": { + "2024-11-01T00:00:00+02:00": 60 + }, + "[EN] External-Signup/Login-Account Verification Success": { + "2024-11-01T00:00:00+02:00": 187 + }, + "[EN] External-Concierge Consignment-(IF SHIPPING) Watch Delivery Confirmation": { + "2024-11-01T00:00:00+02:00": 7 + }, + "[EN] External-Concierge Consignment-(Reminder) Arrange Your Watch Delivery To Wristcheck": { + "2024-11-01T00:00:00+02:00": 66 + }, + "[EN] Internal-Quotations-Internal (Webops, Consignment): New Watch From Quotation": { + "2024-11-01T00:00:00+02:00": 36 + }, + "[EN] External-Buy-You Have 24 Hours To Complete Your Payment": { + "2024-11-01T00:00:00+02:00": 22 + }, + "[EN] External-Listing Live-Sales Listing Published": { + "2024-11-01T00:00:00+02:00": 50 + }, + "[EN] External-Buy-Order On Its Way": { + "2024-11-01T00:00:00+02:00": 21 + }, + "[EN] External-Collection-Collection Verification Status Updated: Verified": { + "2024-11-01T00:00:00+02:00": 13 + }, + "[EN] External-Quotations-Quotation Expired": { + "2024-11-01T00:00:00+02:00": 103 + }, + "[EN] External-Concierge Consignment-(IF DROP-OFF) Watch Delivery Confirmation": { + "2024-11-01T00:00:00+02:00": 66 + }, + "[EN] External-Signup/Login-Verify Your Email Address": { + "2024-11-01T00:00:00+02:00": 468 + }, + "[EN] External-Concierge Consignment-Consignment Expired Notification": { + "2024-11-01T00:00:00+02:00": 30 + }, + "[EN] External-Offers (Sell)-Receive Offer From Bidder": { + "2024-11-01T00:00:00+02:00": 63 + }, + "[EN] External-Concierge Consignment-Watch Details Updated Confirmation": { + "2024-11-01T00:00:00+02:00": 20 + }, + "[EN] External-Listing (live)-Watch consignment period ending soon": { + "2024-11-01T00:00:00+02:00": 71 + }, + "[EN] External-Concierge Consignment-Reminder: Complete Consignment": { + "2024-11-01T00:00:00+02:00": 92 + }, + "[EN] External-Buy-Confirmation of full payment": { + "2024-11-01T00:00:00+02:00": 104 + }, + "[EN] External-Concierge Consignment- Consignment Approved, Ready for Listing": { + "2024-11-01T00:00:00+02:00": 50 + }, + "[EN] External-Offers (buy)-Buyer No Response To A Offer Within 24 Hours": { + "2024-11-01T00:00:00+02:00": 53 + }, + "[TC] External-Quotations-Quotation Ready": { + "2024-11-01T00:00:00+02:00": 9 + }, + "[EN] External-Offers (buy)-Thank You For Placing An Offer": { + "2024-11-01T00:00:00+02:00": 62 + }, + "[EN] External-Concierge Consignment-(IF SHIPPING) (Reminder) Provide Us With The Courier And Shipping Details": { + "2024-11-01T00:00:00+02:00": 34 + }, + "[TC] External-Buy-Confirmation of deposit payment": { + "2024-11-01T00:00:00+02:00": 9 + }, + "[EN] Internal-Buy-Internal: Order Placed": { + "2024-11-01T00:00:00+02:00": 324 + }, + "[Internal] Magic Link": { + "2024-11-01T00:00:00+02:00": 413 + }, + "[EN] Internal-Concierge Consignment-Internal: New Consignment": { + "2024-11-01T00:00:00+02:00": 103 + }, + "[EN] Internal-Quotations-Internal (Consignment Team): Quotation Approval": { + "2024-11-01T00:00:00+02:00": 250 + }, + "[EN] External-Offers (buy)-You Have Received A Counteroffer!": { + "2024-11-01T00:00:00+02:00": 53 + }, + "[EN] External-Concierge Consignment-Watch Received For Authentication": { + "2024-11-01T00:00:00+02:00": 50 + }, + "[EN] External-Quotations-(Reminder) 3 days Quotation Ready": { + "2024-11-01T00:00:00+02:00": 195 + }, + "[EN] External-Signup/Login-Reset Password Successful": { + "2024-11-01T00:00:00+02:00": 39 + }, + "[EN] External-Signup/Login-Account Creation (Admin Portal User Creation)": { + "2024-11-01T00:00:00+02:00": 54 + }, + "[EN] External-Concierge Consignment-Reminder: Schedule your watch drop-off time": { + "2024-11-01T00:00:00+02:00": 61 + }, + "[TC] External-Collection-Watch Data Refreshed From Catalogue": { + "2024-11-01T00:00:00+02:00": 8 + }, + "[EN] External-Concierge Consignment-New Consignment Created": { + "2024-11-01T00:00:00+02:00": 10 + }, + "[EN] External-Concierge Consignment-Seller Policy Accepted Confirmation": { + "2024-11-01T00:00:00+02:00": 21 + }, + "[EN] External-Offers (Sell)-Offer Cancelled By Buyer": { + "2024-11-01T00:00:00+02:00": 10 + }, + "[EN] External-Buy-Order Confirmation (IF Delivery)": { + "2024-11-01T00:00:00+02:00": 45 + }, + "[EN] External-Collection-Watch Data Refreshed From Catalogue": { + "2024-11-01T00:00:00+02:00": 172 + }, + "[EN] Internal-Buy-Internal: Proof Of Payment Upload": { + "2024-11-01T00:00:00+02:00": 56 + }, + "[TC] External-Quotations-(Reminder) 3 days Quotation Ready": { + "2024-11-01T00:00:00+02:00": 9 + }, + "[EN] External-Concierge Consignment-Watch Under Authentication": { + "2024-11-01T00:00:00+02:00": 49 + }, + "[EN] External-Quotations-Reject Quotation/Consignment": { + "2024-11-01T00:00:00+02:00": 17 + }, + "[EN] External-Concierge Consignment-Seller Verification Rejected": { + "2024-11-01T00:00:00+02:00": 10 + }, + "[EN] External-Concierge Consignment-Consignment Ready: Arrange your watch delivery to Wristcheck": { + "2024-11-01T00:00:00+02:00": 66 + }, + "[EN] External-Concierge Consignment-(Individual seller + Dealer) Watch Return to Consignor": { + "2024-11-01T00:00:00+02:00": 14 + }, + "[EN] External-Buy-Order Has Been Delivered": { + "2024-11-01T00:00:00+02:00": 11 + }, + "[EN] External-Quotations-Abandoned Quotation": { + "2024-11-01T00:00:00+02:00": 10 + }, + "[EN] External-Quotation-New Quotation Submission Confirmation": { + "2024-11-01T00:00:00+02:00": 240 + }, + "[TC] External-Buy-Payment Reminder: You Have 24 Hours To Complete Your Payment": { + "2024-11-01T00:00:00+02:00": 9 + }, + "[TC] External-Buy-Confirmation of full payment": { + "2024-11-01T00:00:00+02:00": 30 + } + } + }, + "624c1d9fdd3137001824f6ef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14198 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14198 + }, + "New task assignment": { + "2024-11-01T00:00:00+02:00": 14198 + } + } + }, + "65fd55c44f991166e7a7335e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2515 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2515 + }, + "In Depot Charge Interruption": { + "2024-11-01T00:00:00+02:00": 380 + }, + "Vehicle Successfully Connected": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Vehicle Link Request": { + "2024-11-01T00:00:00+02:00": 36 + }, + "Returning Vehicle": { + "2024-11-01T00:00:00+02:00": 751 + }, + "Trusk Low Battery Shift End": { + "2024-11-01T00:00:00+02:00": 26 + }, + "Charge point interruption": { + "2024-11-01T00:00:00+02:00": 213 + }, + "Charge point critical error": { + "2024-11-01T00:00:00+02:00": 92 + }, + "create driver account": { + "2024-11-01T00:00:00+02:00": 62 + }, + "Charge point faulted and requires restart": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Overcharging Vehicle": { + "2024-11-01T00:00:00+02:00": 502 + }, + "Charge Near Depot": { + "2024-11-01T00:00:00+02:00": 321 + }, + "Charger End of Charge": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Trusk Low Battery Shift Start": { + "2024-11-01T00:00:00+02:00": 29 + }, + "generic create account": { + "2024-11-01T00:00:00+02:00": 19 + } + } + }, + "6433d2fc6e1e72f63f63b5fe": { + "$overall": { + "2024-11-01T00:00:00+02:00": 47895 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 47895 + }, + "AAA_COMMENT": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Sign up email verification": { + "2024-11-01T00:00:00+02:00": 369 + }, + "AAA_ARCHIVE_ROOM_VISIT": { + "2024-11-01T00:00:00+02:00": 555 + }, + "Someone email update permissions": { + "2024-11-01T00:00:00+02:00": 8613 + }, + "AAA_ACCOUNT_INVITE_USER": { + "2024-11-01T00:00:00+02:00": 469 + }, + "CallToAction section Buyer Reply": { + "2024-11-01T00:00:00+02:00": 154 + }, + "Room Deleted By Admin": { + "2024-11-01T00:00:00+02:00": 70 + }, + "AAA_ROOM_COLLABORATION": { + "2024-11-01T00:00:00+02:00": 665 + }, + "AAA_INVITE_PROSPECTS_REMINDER": { + "2024-11-01T00:00:00+02:00": 948 + }, + "AAA_PAGE_VIEW": { + "2024-11-01T00:00:00+02:00": 14116 + }, + "AAA_EMAIL_VERIFICATION": { + "2024-11-01T00:00:00+02:00": 349 + }, + "Account Plan Canceled": { + "2024-11-01T00:00:00+02:00": 98 + }, + "AAA_COMMENT_WITH_REPLAY": { + "2024-11-01T00:00:00+02:00": 4340 + }, + "Payment Failed": { + "2024-11-01T00:00:00+02:00": 82 + }, + "AAA_INVITE_PROSPECTS": { + "2024-11-01T00:00:00+02:00": 10204 + }, + "Invite Account Accept Increase Room": { + "2024-11-01T00:00:00+02:00": 25 + }, + "AAA_PAGE_VIEW_BLOCKED": { + "2024-11-01T00:00:00+02:00": 2190 + }, + "AAA_ACCOUNT_REINVITE_USER": { + "2024-11-01T00:00:00+02:00": 225 + }, + "AAA_OWNER_APPROVAL_USER": { + "2024-11-01T00:00:00+02:00": 63 + }, + "AAA_OVERDUE_TASK": { + "2024-11-01T00:00:00+02:00": 190 + }, + "AAA_OWNER_APPROVED_USER": { + "2024-11-01T00:00:00+02:00": 40 + }, + "AAA_NUDGE_BUYER": { + "2024-11-01T00:00:00+02:00": 94 + }, + "AAA_ROOM_DUPLICATION": { + "2024-11-01T00:00:00+02:00": 33 + }, + "AAA_SHARE_SECTION": { + "2024-11-01T00:00:00+02:00": 45 + }, + "AAA_ACCOUNT_ACCEPT_INVITATION": { + "2024-11-01T00:00:00+02:00": 302 + }, + "Payment Failed internal": { + "2024-11-01T00:00:00+02:00": 101 + }, + "Send reset password email": { + "2024-11-01T00:00:00+02:00": 101 + }, + "AAA_INTERNAL_USERS_ONBOARDING": { + "2024-11-01T00:00:00+02:00": 3365 + }, + "AAA_NOTIFY_ASSIGN": { + "2024-11-01T00:00:00+02:00": 68 + } + } + }, + "6684fd53e40a50735b55a981": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1747 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1747 + }, + "Enrollment confirmation": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Verification Code": { + "2024-11-01T00:00:00+02:00": 1179 + }, + "Welcome": { + "2024-11-01T00:00:00+02:00": 542 + } + } + }, + "63a059f5bee1d5aed7e4d95c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1329 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1329 + }, + "Pending Review": { + "2024-11-01T00:00:00+02:00": 99 + }, + "User Assigned to Account": { + "2024-11-01T00:00:00+02:00": 66 + }, + "Update Required": { + "2024-11-01T00:00:00+02:00": 36 + }, + "Monitoring update": { + "2024-11-01T00:00:00+02:00": 51 + }, + "Next KYC Review Date": { + "2024-11-01T00:00:00+02:00": 39 + }, + "New application received documents": { + "2024-11-01T00:00:00+02:00": 53 + }, + "Account Activated": { + "2024-11-01T00:00:00+02:00": 97 + }, + "Account Suspended": { + "2024-11-01T00:00:00+02:00": 10 + }, + "New Application": { + "2024-11-01T00:00:00+02:00": 702 + }, + "Verified Review": { + "2024-11-01T00:00:00+02:00": 169 + } + } + }, + "654e95e71b0a1377ffe4f755": { + "$overall": { + "2024-11-01T00:00:00+02:00": 66877 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 66877 + }, + "Hrlux-Prod WebApp-Trips-Notifications": { + "2024-11-01T00:00:00+02:00": 17276 + }, + "Nemt WebApp-Trips-Notifications": { + "2024-11-01T00:00:00+02:00": 49546 + }, + "Dev Webapp Trips Notifications": { + "2024-11-01T00:00:00+02:00": 55 + } + } + }, + "666b875bb3464b7775f56472": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2044 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2044 + }, + "Notification in-app": { + "2024-11-01T00:00:00+02:00": 1630 + }, + "Only App": { + "2024-11-01T00:00:00+02:00": 414 + } + } + }, + "6436e7094f087a109c0322a7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7118 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7118 + }, + "Database Created: Serverless": { + "2024-11-01T00:00:00+02:00": 407 + }, + "Database Created: Vector": { + "2024-11-01T00:00:00+02:00": 892 + }, + "Database Hibernate": { + "2024-11-01T00:00:00+02:00": 35 + }, + "Database ResumeHibernatedCluster": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Database Create": { + "2024-11-01T00:00:00+02:00": 5759 + } + } + }, + "67212578d50b4e9ff9a6cc1f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 314 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 314 + }, + "hotel-status-update": { + "2024-11-01T00:00:00+02:00": 287 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22 + } + } + }, + "65d5e7fa2d8ee2bc1404fa0f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 102 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 102 + }, + "notify-company-admins-about-new-employee": { + "2024-11-01T00:00:00+02:00": 34 + }, + "notify-company-admins-about-credits-from-super-admins": { + "2024-11-01T00:00:00+02:00": 18 + }, + "notify-employee-about-being-added-to-platform": { + "2024-11-01T00:00:00+02:00": 14 + }, + "notify-company-admins-about-credits-assigned-to-one-employee": { + "2024-11-01T00:00:00+02:00": 13 + } + } + }, + "657312d2fd6a606fd6eaa203": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1381 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1381 + }, + "Invoice due date expired": { + "2024-11-01T00:00:00+02:00": 525 + }, + "authorization": { + "2024-11-01T00:00:00+02:00": 57 + }, + "New invoice": { + "2024-11-01T00:00:00+02:00": 236 + }, + "Invoice paid": { + "2024-11-01T00:00:00+02:00": 220 + }, + "Invoice partially paid": { + "2024-11-01T00:00:00+02:00": 99 + }, + "Payment received": { + "2024-11-01T00:00:00+02:00": 235 + } + } + }, + "6414934fda8256b93f957df3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 457 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 457 + }, + "API Load Edit": { + "2024-11-01T00:00:00+02:00": 457 + } + } + }, + "657752b62682a8ccf9887a7c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3900 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3900 + }, + "Exhibit Clawbacks": { + "2024-11-01T00:00:00+02:00": 328 + }, + "Refresh Files": { + "2024-11-01T00:00:00+02:00": 218 + }, + "Annotation Sessions": { + "2024-11-01T00:00:00+02:00": 712 + }, + "Shared Item": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Documents Requested": { + "2024-11-01T00:00:00+02:00": 116 + }, + "Introduced Marked Exhibit": { + "2024-11-01T00:00:00+02:00": 2404 + }, + "Document Request Concluded": { + "2024-11-01T00:00:00+02:00": 104 + } + } + }, + "658a048acb274a771b085163": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2309 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2309 + }, + "Invite": { + "2024-11-01T00:00:00+02:00": 2284 + }, + "metric_changed": { + "2024-11-01T00:00:00+02:00": 24 + } + } + }, + "6439210da97b5d90d4874f30": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20002 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20002 + }, + "Bienvenue sur Yalink - Onboarding sans structure légale": { + "2024-11-01T00:00:00+02:00": 412 + }, + "Refus de candidature": { + "2024-11-01T00:00:00+02:00": 692 + }, + "Nouvelles expertises métiers disponibles": { + "2024-11-01T00:00:00+02:00": 75 + }, + "Profil présélectionné par Yalink - demande de devis": { + "2024-11-01T00:00:00+02:00": 37 + }, + "Bienvenue sur Yalink - Onboarding freelance": { + "2024-11-01T00:00:00+02:00": 267 + }, + "Cooptation - Accusé de réception": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Nouvelles opportunités publiées": { + "2024-11-01T00:00:00+02:00": 16808 + }, + "Demande de recommendation": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Dépôt de besoin - Accusé de réception": { + "2024-11-01T00:00:00+02:00": 145 + }, + "Envoi du devis à un commercial Yalink": { + "2024-11-01T00:00:00+02:00": 169 + }, + "Réponse suite au dépôt d'un besoin (hors scope)": { + "2024-11-01T00:00:00+02:00": 14 + }, + "kyc document expiré.": { + "2024-11-01T00:00:00+02:00": 836 + }, + "Nouveau statut de candidature": { + "2024-11-01T00:00:00+02:00": 163 + }, + "Envoi du devis au freelance": { + "2024-11-01T00:00:00+02:00": 169 + }, + "KYC rejeté : raison du refus": { + "2024-11-01T00:00:00+02:00": 9 + }, + "kyc document expiré dans 7 jours": { + "2024-11-01T00:00:00+02:00": 166 + }, + "Cooptation - inscription du filleul sur Yalink": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Nouveau statut de devis": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "6314b4eb232b8996aaa4c9bc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1937 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1937 + }, + "generic": { + "2024-11-01T00:00:00+02:00": 830 + }, + "impact-level": { + "2024-11-01T00:00:00+02:00": 422 + }, + "welcome": { + "2024-11-01T00:00:00+02:00": 537 + }, + "reminder": { + "2024-11-01T00:00:00+02:00": 148 + } + } + }, + "6478b60f3a95df70dfeab13c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10190 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10190 + }, + "Basic Chat Notification": { + "2024-11-01T00:00:00+02:00": 10190 + } + } + }, + "6673d3288b7329c353ad689d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1340 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1340 + }, + "web-notifications": { + "2024-11-01T00:00:00+02:00": 1340 + } + } + }, + "652ea963fa315318e7925510": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3665 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3665 + }, + "Unread message digest": { + "2024-11-01T00:00:00+02:00": 1829 + }, + "In-app notification": { + "2024-11-01T00:00:00+02:00": 1836 + } + } + }, + "62cd681212f9e10011655a35": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1037725 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1037725 + }, + "Export verfügbar": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Mitarbeiter zugewiesen": { + "2024-11-01T00:00:00+02:00": 2549 + }, + "Mitarbeiter erwähnt": { + "2024-11-01T00:00:00+02:00": 376 + }, + "Neue Nachricht": { + "2024-11-01T00:00:00+02:00": 1020817 + }, + "Neue Nachricht an Assignee": { + "2024-11-01T00:00:00+02:00": 13951 + } + } + }, + "63c7b1ddab8d9270851b219f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 560 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 560 + }, + "New Booking Request notification to external Radiographer": { + "2024-11-01T00:00:00+02:00": 122 + }, + "warning-dev": { + "2024-11-01T00:00:00+02:00": 42 + }, + "Booking Request Rejected": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Send Email Template (plain)": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Scanner KVM Edit Alert": { + "2024-11-01T00:00:00+02:00": 271 + }, + "MP: Notifications for dispatchers for new sessions": { + "2024-11-01T00:00:00+02:00": 79 + } + } + }, + "63b6208e711db04e8129df6b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4076 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4076 + }, + "pt-comunicado-rechazo": { + "2024-11-01T00:00:00+02:00": 128 + }, + "permisos de trabajo extension de tiempo ehs": { + "2024-11-01T00:00:00+02:00": 225 + }, + "permiso antes de vencer": { + "2024-11-01T00:00:00+02:00": 195 + }, + "dms-v2-machine-maintenance-completed": { + "2024-11-01T00:00:00+02:00": 74 + }, + "asignación incidente": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Permisos de trabajo inspección": { + "2024-11-01T00:00:00+02:00": 50 + }, + "satisfaction-survey-new-response-with-comment": { + "2024-11-01T00:00:00+02:00": 7 + }, + "dms-v2-laundry-weekly-report": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Incidente Creado": { + "2024-11-01T00:00:00+02:00": 11 + }, + "capa venimiento de accion": { + "2024-11-01T00:00:00+02:00": 85 + }, + "recordatorio gestion del cambio firmas tarde": { + "2024-11-01T00:00:00+02:00": 46 + }, + "dms-v2-machine-maintenance-started": { + "2024-11-01T00:00:00+02:00": 80 + }, + "radiaciones vencimiento de carnet": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Vencimiento de Acciones Capa": { + "2024-11-01T00:00:00+02:00": 36 + }, + "PT-Solicitud-Accion": { + "2024-11-01T00:00:00+02:00": 1549 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 21 + }, + "extensión de tiempo capa": { + "2024-11-01T00:00:00+02:00": 41 + }, + "Permiso Vencido": { + "2024-11-01T00:00:00+02:00": 170 + }, + "master plan accion tarde": { + "2024-11-01T00:00:00+02:00": 10 + }, + "ehs-brigade-member-discharge": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Pt-comunicacion-accion": { + "2024-11-01T00:00:00+02:00": 229 + }, + "PT-Envio-Solicitud": { + "2024-11-01T00:00:00+02:00": 337 + }, + "adjunta evidencia capa": { + "2024-11-01T00:00:00+02:00": 9 + }, + "lockers-reservation-user": { + "2024-11-01T00:00:00+02:00": 10 + }, + "permisos extensión de tiempo": { + "2024-11-01T00:00:00+02:00": 71 + }, + "PT-aprobado": { + "2024-11-01T00:00:00+02:00": 270 + }, + "ehs-brigade-member-enrollment": { + "2024-11-01T00:00:00+02:00": 9 + }, + "notificación de vencimiento del carné supervisor": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Extension Tiempo Permiso de Trabajo": { + "2024-11-01T00:00:00+02:00": 68 + }, + "lockers-reservation-admin": { + "2024-11-01T00:00:00+02:00": 10 + }, + "gestion de cambio revision": { + "2024-11-01T00:00:00+02:00": 12 + }, + "permiso que inician el día presente": { + "2024-11-01T00:00:00+02:00": 127 + }, + "masten plan recordatorio accion": { + "2024-11-01T00:00:00+02:00": 19 + }, + "new-action-capa": { + "2024-11-01T00:00:00+02:00": 14 + }, + "ehs-brigade-member-report": { + "2024-11-01T00:00:00+02:00": 18 + }, + "send-password": { + "2024-11-01T00:00:00+02:00": 36 + } + } + }, + "654bab8b191027742aa28ec7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1143 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1143 + }, + "overdue-notification-warning-en": { + "2024-11-01T00:00:00+02:00": 44 + }, + "sign-notification-en": { + "2024-11-01T00:00:00+02:00": 378 + }, + "fill-and-sign-link-notification-en": { + "2024-11-01T00:00:00+02:00": 39 + }, + "sign-link-notification-en": { + "2024-11-01T00:00:00+02:00": 364 + }, + "overdue-notification-es": { + "2024-11-01T00:00:00+02:00": 16 + }, + "all-signs-notification-en": { + "2024-11-01T00:00:00+02:00": 268 + }, + "sign-link-notification-es": { + "2024-11-01T00:00:00+02:00": 15 + }, + "all-signs-notification-es": { + "2024-11-01T00:00:00+02:00": 14 + } + } + }, + "669187bb9efb8372ce7c6483": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1051 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1051 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1051 + } + } + }, + "65c17ff93086d5972f17c2d0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1492 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1492 + }, + "Issues assigned to me": { + "2024-11-01T00:00:00+02:00": 303 + }, + "Issues updated": { + "2024-11-01T00:00:00+02:00": 781 + }, + "New issues created": { + "2024-11-01T00:00:00+02:00": 259 + }, + "New comments on issues": { + "2024-11-01T00:00:00+02:00": 109 + }, + "Comments I'm mentioned in": { + "2024-11-01T00:00:00+02:00": 38 + } + } + }, + "646327aed6925ea19b9c43ea": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29727 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29727 + }, + "credentials-changed-notification-template": { + "2024-11-01T00:00:00+02:00": 29727 + } + } + }, + "64e793a5dd99c21f1ef1ddcb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12072 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12072 + }, + "Account Updated": { + "2024-11-01T00:00:00+02:00": 9 + }, + "The Community - Global In-app": { + "2024-11-01T00:00:00+02:00": 5791 + }, + "Global Inapp Notification": { + "2024-11-01T00:00:00+02:00": 15 + }, + "User Invited (Local and External)": { + "2024-11-01T00:00:00+02:00": 635 + }, + "The Community - Global Email": { + "2024-11-01T00:00:00+02:00": 5588 + }, + "Student Passport - New Request Notifications": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Student Passport - Request Completed": { + "2024-11-01T00:00:00+02:00": 10 + } + } + }, + "6582723f08be7e008ad65128": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8645 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8645 + }, + "Only App": { + "2024-11-01T00:00:00+02:00": 4569 + }, + "Notification in-app": { + "2024-11-01T00:00:00+02:00": 4076 + } + } + }, + "650c474042707458fe59f367": { + "$overall": { + "2024-11-01T00:00:00+02:00": 177041 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 177041 + }, + "requestlist-duedatereminders-v1-hipaa": { + "2024-11-01T00:00:00+02:00": 176925 + }, + "requestlist-actorsaddedtoitem-v1-hipaa": { + "2024-11-01T00:00:00+02:00": 116 + } + } + }, + "65f3db2b4599fa000c2becc7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 917 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 917 + }, + "Sent Otp to Sms": { + "2024-11-01T00:00:00+02:00": 915 + } + } + }, + "65c1f64ef94456f501d98f49": { + "$overall": { + "2024-11-01T00:00:00+02:00": 164794 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 164794 + }, + "Item favoured": { + "2024-11-01T00:00:00+02:00": 164794 + } + } + }, + "630ca7b800f7dbd3faf2d726": { + "$overall": { + "2024-11-01T00:00:00+02:00": 94552 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 94552 + }, + "new_insight_created_digest_security_product_not_enforced_in_profile": { + "2024-11-01T00:00:00+02:00": 168 + }, + "new_insight_created_digest_security_product_disabled_on_gw": { + "2024-11-01T00:00:00+02:00": 156 + }, + "new_insight_created_digest_security_product_on_gw_not_enforced_in_rulebase": { + "2024-11-01T00:00:00+02:00": 24 + }, + "new_insight_created_digest_hash_blocked": { + "2024-11-01T00:00:00+02:00": 4255 + }, + "new_insight_created_digest_detect_to_prevent_no_hits": { + "2024-11-01T00:00:00+02:00": 17888 + }, + "new_insight_created_digest_protection_found_in_inactive": { + "2024-11-01T00:00:00+02:00": 30519 + }, + "new_insight_created_digest_ip_blocked_tp": { + "2024-11-01T00:00:00+02:00": 21364 + }, + "new_insight_created_digest_protection_fp": { + "2024-11-01T00:00:00+02:00": 15807 + }, + "new_insight_created_digest_jumbo_version_is_not_up_to_date": { + "2024-11-01T00:00:00+02:00": 232 + }, + "new_insight_created_digest_endpoint_detection_script": { + "2024-11-01T00:00:00+02:00": 908 + }, + "new_indicators_from_feed": { + "2024-11-01T00:00:00+02:00": 1370 + }, + "new_insight_created_digest_protection_in_detect_with_hits_tp": { + "2024-11-01T00:00:00+02:00": 1520 + }, + "new_insight_created_digest_security_product_license_expired": { + "2024-11-01T00:00:00+02:00": 162 + }, + "new_insight_created_digest_security_product_not_updated": { + "2024-11-01T00:00:00+02:00": 176 + } + } + }, + "637b2240c58b301920b2f70c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40967 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40967 + }, + "lapasar-test": { + "2024-11-01T00:00:00+02:00": 40967 + } + } + }, + "64d10e4220f4008b5df1e37a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 647 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 647 + }, + "Account Activity & Transactions": { + "2024-11-01T00:00:00+02:00": 456 + }, + "User Signed Up": { + "2024-11-01T00:00:00+02:00": 126 + }, + "Rewards": { + "2024-11-01T00:00:00+02:00": 65 + } + } + }, + "65a56e2e8e557ef0afd6f872": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10052 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10052 + }, + "client_workflow_new": { + "2024-11-01T00:00:00+02:00": 266 + }, + "tenant_project_update": { + "2024-11-01T00:00:00+02:00": 9786 + } + } + }, + "6615460e6df43c247a0e01bb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14173 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14173 + }, + "Darter Notification": { + "2024-11-01T00:00:00+02:00": 14173 + } + } + }, + "66b9e7e99c11077f0298542c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 940 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 940 + }, + "assignee-added-in-defect": { + "2024-11-01T00:00:00+02:00": 312 + }, + "jobs-notification": { + "2024-11-01T00:00:00+02:00": 602 + }, + "defect-created": { + "2024-11-01T00:00:00+02:00": 26 + } + } + }, + "64a079225cccb636d843bd26": { + "$overall": { + "2024-11-01T00:00:00+02:00": 166 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 166 + }, + "hepkids-coding": { + "2024-11-01T00:00:00+02:00": 7 + }, + "userTicketId": { + "2024-11-01T00:00:00+02:00": 115 + }, + "Send OTP": { + "2024-11-01T00:00:00+02:00": 17 + }, + "userEmail": { + "2024-11-01T00:00:00+02:00": 22 + } + } + }, + "64ae84fa90b5785d4716e362": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5897 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5897 + }, + "Simple Push": { + "2024-11-01T00:00:00+02:00": 5897 + } + } + }, + "669559c51c484e3d9a0e1839": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1225 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1225 + }, + "send-push-notification-using-fcm": { + "2024-11-01T00:00:00+02:00": 1225 + } + } + }, + "65f8f7959343b5be34ab729c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11358 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11358 + }, + "Open asset": { + "2024-11-01T00:00:00+02:00": 1380 + }, + "meo": { + "2024-11-01T00:00:00+02:00": 9978 + } + } + }, + "6322333a2d7b721933bd8cf6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8307 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8307 + }, + "export-ready-for-download": { + "2024-11-01T00:00:00+02:00": 99 + }, + "task_done": { + "2024-11-01T00:00:00+02:00": 7 + }, + "inactive-account-detected": { + "2024-11-01T00:00:00+02:00": 362 + }, + "new_note_tag": { + "2024-11-01T00:00:00+02:00": 85 + }, + "import-start": { + "2024-11-01T00:00:00+02:00": 225 + }, + "schedule_reminder_today": { + "2024-11-01T00:00:00+02:00": 586 + }, + "task-created-notification": { + "2024-11-01T00:00:00+02:00": 209 + }, + "reminder_done": { + "2024-11-01T00:00:00+02:00": 197 + }, + "task_create": { + "2024-11-01T00:00:00+02:00": 44 + }, + "Space Invitation email": { + "2024-11-01T00:00:00+02:00": 110 + }, + "task-due-today-notification": { + "2024-11-01T00:00:00+02:00": 693 + }, + "reminder_create": { + "2024-11-01T00:00:00+02:00": 105 + }, + "Import finish": { + "2024-11-01T00:00:00+02:00": 196 + }, + "linkedin-inbox-synced": { + "2024-11-01T00:00:00+02:00": 5096 + }, + "task-completed-notification": { + "2024-11-01T00:00:00+02:00": 293 + } + } + }, + "655c93211a91da1b109bea70": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2203 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2203 + }, + "Comment": { + "2024-11-01T00:00:00+02:00": 229 + }, + "Direct mention": { + "2024-11-01T00:00:00+02:00": 235 + }, + "Inbox updates": { + "2024-11-01T00:00:00+02:00": 1691 + }, + "Campaign updates": { + "2024-11-01T00:00:00+02:00": 48 + } + } + }, + "65af69c5aeb88319ddace25a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 69474 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 69474 + }, + "Tasks Pending": { + "2024-11-01T00:00:00+02:00": 69474 + } + } + }, + "671f768afb21db27362e8d5f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26849 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26849 + }, + "in-app-notification": { + "2024-11-01T00:00:00+02:00": 26849 + } + } + }, + "64b03bae2eb78d11de58c1bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9215 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9215 + }, + "dmpag": { + "2024-11-01T00:00:00+02:00": 9215 + } + } + }, + "6422c50c5876c8840c8b4668": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4209 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4209 + }, + "incident-report": { + "2024-11-01T00:00:00+02:00": 304 + }, + "due-today-tasks": { + "2024-11-01T00:00:00+02:00": 14 + }, + "careplancontributor": { + "2024-11-01T00:00:00+02:00": 52 + }, + "initial-assessment": { + "2024-11-01T00:00:00+02:00": 13 + }, + "appointment-assignment": { + "2024-11-01T00:00:00+02:00": 84 + }, + "one-day-overdue-tasks": { + "2024-11-01T00:00:00+02:00": 102 + }, + "legal-status": { + "2024-11-01T00:00:00+02:00": 11 + }, + "investigation-type": { + "2024-11-01T00:00:00+02:00": 262 + }, + "task-assignment": { + "2024-11-01T00:00:00+02:00": 182 + }, + "risk-assessment": { + "2024-11-01T00:00:00+02:00": 3067 + }, + "observation-level-up": { + "2024-11-01T00:00:00+02:00": 45 + }, + "legal-status-expiry": { + "2024-11-01T00:00:00+02:00": 70 + } + } + }, + "63320239ee1316a5c87e38d1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24106 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24106 + }, + "admin-onboarding": { + "2024-11-01T00:00:00+02:00": 521 + }, + "admin-subscriptions": { + "2024-11-01T00:00:00+02:00": 411 + }, + "admin-account-members": { + "2024-11-01T00:00:00+02:00": 38 + }, + "admin-rows": { + "2024-11-01T00:00:00+02:00": 10522 + }, + "admin-users": { + "2024-11-01T00:00:00+02:00": 5079 + }, + "admin-accounts": { + "2024-11-01T00:00:00+02:00": 7529 + } + } + }, + "66fa9de25d6b8aa393727348": { + "$overall": { + "2024-11-01T00:00:00+02:00": 988 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 988 + }, + "sparepartsOrderUpdate": { + "2024-11-01T00:00:00+02:00": 6 + }, + "planner-deadline": { + "2024-11-01T00:00:00+02:00": 250 + }, + "ticketUpdate": { + "2024-11-01T00:00:00+02:00": 254 + }, + "news": { + "2024-11-01T00:00:00+02:00": 282 + }, + "order": { + "2024-11-01T00:00:00+02:00": 7 + }, + "newsAll": { + "2024-11-01T00:00:00+02:00": 184 + } + } + }, + "651e2d9e8816295152897198": { + "$overall": { + "2024-11-01T00:00:00+02:00": 673 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 673 + }, + "Liqudity Buy Alert With Referr info": { + "2024-11-01T00:00:00+02:00": 23 + }, + "Registration Successful": { + "2024-11-01T00:00:00+02:00": 61 + }, + "OTP DCN": { + "2024-11-01T00:00:00+02:00": 517 + }, + "Liqudity Buy Alert DCN": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Onboarding Workflow": { + "2024-11-01T00:00:00+02:00": 66 + } + } + }, + "64919f0eb5f1ae122b876762": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2447 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2447 + }, + "Marketplace CRM Notifications": { + "2024-11-01T00:00:00+02:00": 2447 + } + } + }, + "66d9e408cf609b134331065f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27658 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27658 + }, + "weekly-digest": { + "2024-11-01T00:00:00+02:00": 10631 + }, + "listing-accepted": { + "2024-11-01T00:00:00+02:00": 460 + }, + "offer-received": { + "2024-11-01T00:00:00+02:00": 28 + }, + "daily-digest": { + "2024-11-01T00:00:00+02:00": 10629 + }, + "listing-new-collection": { + "2024-11-01T00:00:00+02:00": 3183 + }, + "offer-accepted": { + "2024-11-01T00:00:00+02:00": 34 + }, + "offer-new-collection": { + "2024-11-01T00:00:00+02:00": 2688 + } + } + }, + "647d42173a4ec8a59984c750": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7729 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7729 + }, + "Allocation Manual Success": { + "2024-11-01T00:00:00+02:00": 1089 + }, + "Allocation Manual": { + "2024-11-01T00:00:00+02:00": 348 + }, + "Add Leads": { + "2024-11-01T00:00:00+02:00": 114 + }, + "Allocation Success": { + "2024-11-01T00:00:00+02:00": 1261 + }, + "Allocation Success Driver": { + "2024-11-01T00:00:00+02:00": 2459 + }, + "Order Create": { + "2024-11-01T00:00:00+02:00": 1659 + }, + "Order Drop Off": { + "2024-11-01T00:00:00+02:00": 799 + } + } + }, + "656d49757b44306b3c820521": { + "$overall": { + "2024-11-01T00:00:00+02:00": 439 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 439 + }, + "new-opportunity-created": { + "2024-11-01T00:00:00+02:00": 439 + } + } + }, + "6637e82483488a7091d0513d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 913 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 913 + }, + "Friend Stream Start": { + "2024-11-01T00:00:00+02:00": 91 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 44 + }, + "Email Verification": { + "2024-11-01T00:00:00+02:00": 159 + }, + "Stream Available": { + "2024-11-01T00:00:00+02:00": 584 + }, + "Stream Like": { + "2024-11-01T00:00:00+02:00": 28 + } + } + }, + "643d4f7130bdc004e35b8b0e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1636 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1636 + }, + "new-news-in-favorite": { + "2024-11-01T00:00:00+02:00": 1636 + } + } + }, + "666a0c480f48d9a01fea8e2c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1036 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1036 + }, + "Transfers": { + "2024-11-01T00:00:00+02:00": 958 + }, + "Flex": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Amex": { + "2024-11-01T00:00:00+02:00": 45 + } + } + }, + "652d210133aa2d8c68b1bea6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9736 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9736 + }, + "solicitacao-criada": { + "2024-11-01T00:00:00+02:00": 4704 + }, + "solicitacao-conclusao": { + "2024-11-01T00:00:00+02:00": 959 + }, + "solicitacao-rejeicao": { + "2024-11-01T00:00:00+02:00": 16 + }, + "solicitacao-autorizacao": { + "2024-11-01T00:00:00+02:00": 4057 + } + } + }, + "6524263d72a8166dd08346c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 953 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 953 + }, + "STATUS-RMA-CONCESSIONARIO": { + "2024-11-01T00:00:00+02:00": 6 + }, + "partners-update-indication": { + "2024-11-01T00:00:00+02:00": 67 + }, + "RMA-SOLICITACAO-FABRICA": { + "2024-11-01T00:00:00+02:00": 175 + }, + "status-comercial-vendas": { + "2024-11-01T00:00:00+02:00": 8 + }, + "partners-update-sale": { + "2024-11-01T00:00:00+02:00": 11 + }, + "STATUS-RMA-CLIENTE": { + "2024-11-01T00:00:00+02:00": 44 + }, + "partners-create-indication": { + "2024-11-01T00:00:00+02:00": 51 + }, + "criado-venda": { + "2024-11-01T00:00:00+02:00": 182 + }, + "STATUS-RMA-FABRICA": { + "2024-11-01T00:00:00+02:00": 357 + }, + "status-solicitacao-compra": { + "2024-11-01T00:00:00+02:00": 48 + } + } + }, + "6639eeff0c0215ee78621015": { + "$overall": { + "2024-11-01T00:00:00+02:00": 32073 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 32073 + }, + "development ENV": { + "2024-11-01T00:00:00+02:00": 31840 + }, + "oms app": { + "2024-11-01T00:00:00+02:00": 233 + } + } + }, + "63e9893f8ce4830a19151391": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3325 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3325 + }, + "Closed or Holiday Reminder": { + "2024-11-01T00:00:00+02:00": 187 + }, + "Entered Location": { + "2024-11-01T00:00:00+02:00": 188 + }, + "List Updated": { + "2024-11-01T00:00:00+02:00": 1754 + }, + "Weekly forgotten Items": { + "2024-11-01T00:00:00+02:00": 994 + }, + "Exit Location": { + "2024-11-01T00:00:00+02:00": 202 + } + } + }, + "64b4e554d82471a0444f8415": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29647 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29647 + }, + "LeaderBoard Update": { + "2024-11-01T00:00:00+02:00": 1295 + }, + "Mint Nft": { + "2024-11-01T00:00:00+02:00": 18617 + }, + "Claim Rewards": { + "2024-11-01T00:00:00+02:00": 198 + }, + "Team Submission": { + "2024-11-01T00:00:00+02:00": 9533 + } + } + }, + "6669f5fec7f96cc1968787d9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23146 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23146 + }, + "comment-mention": { + "2024-11-01T00:00:00+02:00": 4092 + }, + "file-download": { + "2024-11-01T00:00:00+02:00": 809 + }, + "comment-reply": { + "2024-11-01T00:00:00+02:00": 1253 + }, + "collaborator-invite": { + "2024-11-01T00:00:00+02:00": 16992 + } + } + }, + "65bb0ed1516fabd8520d5673": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1390 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1390 + }, + "inbox-new-thread": { + "2024-11-01T00:00:00+02:00": 839 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 23 + }, + "inbox-thread-digest": { + "2024-11-01T00:00:00+02:00": 528 + } + } + }, + "65887da2f14b6f3ef002d584": { + "$overall": { + "2024-11-01T00:00:00+02:00": 223 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 223 + }, + "success": { + "2024-11-01T00:00:00+02:00": 223 + } + } + }, + "665f80fe8e255032572549f2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 323 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 323 + }, + "Machine Down": { + "2024-11-01T00:00:00+02:00": 323 + } + } + }, + "66ac042fb11ac224eaf4f23a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14364 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14364 + }, + "prod-eu-user-resource-requests": { + "2024-11-01T00:00:00+02:00": 43 + }, + "prod-eu-timesheet-not-completed": { + "2024-11-01T00:00:00+02:00": 14321 + } + } + }, + "66b36aa7aa4218d12678f006": { + "$overall": { + "2024-11-01T00:00:00+02:00": 324 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 324 + }, + "email": { + "2024-11-01T00:00:00+02:00": 99 + }, + "journey": { + "2024-11-01T00:00:00+02:00": 9 + }, + "test-email-notification": { + "2024-11-01T00:00:00+02:00": 42 + }, + "ttya-journey-workflow-level-3": { + "2024-11-01T00:00:00+02:00": 9 + }, + "ttya-journey-workflow-level-1": { + "2024-11-01T00:00:00+02:00": 55 + }, + "first_level_workflow": { + "2024-11-01T00:00:00+02:00": 10 + }, + "ttya-journey-workflow-level-2": { + "2024-11-01T00:00:00+02:00": 54 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 16 + }, + "email_email_email": { + "2024-11-01T00:00:00+02:00": 14 + } + } + }, + "66fd558bcf609b1343268e49": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20031 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20031 + }, + "in-app": { + "2024-11-01T00:00:00+02:00": 20031 + } + } + }, + "6525396bae3f3225a9475db0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4891 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4891 + }, + "Space Membership Invite Approval Admin": { + "2024-11-01T00:00:00+02:00": 461 + }, + "Space Membership Invite Decline Admin": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Comment Reactions": { + "2024-11-01T00:00:00+02:00": 135 + }, + "Space Membership Request Approval Admin": { + "2024-11-01T00:00:00+02:00": 101 + }, + "Space Membership Request Approval User": { + "2024-11-01T00:00:00+02:00": 77 + }, + "Post Reactions": { + "2024-11-01T00:00:00+02:00": 650 + }, + "Challenge Event Summary": { + "2024-11-01T00:00:00+02:00": 26 + }, + "Space Membership Request Decline Admin": { + "2024-11-01T00:00:00+02:00": 271 + }, + "Space Membership Request": { + "2024-11-01T00:00:00+02:00": 416 + }, + "Space Appointment Creation": { + "2024-11-01T00:00:00+02:00": 510 + }, + "Challenge Keep Streak": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Post Comment Author": { + "2024-11-01T00:00:00+02:00": 212 + }, + "Challenge Approval": { + "2024-11-01T00:00:00+02:00": 24 + }, + "Space Appointment Update": { + "2024-11-01T00:00:00+02:00": 46 + }, + "Space Membership Invite Approval User": { + "2024-11-01T00:00:00+02:00": 235 + }, + "Space New Post": { + "2024-11-01T00:00:00+02:00": 901 + }, + "Space Membership Invite": { + "2024-11-01T00:00:00+02:00": 476 + }, + "Space Membership Invite Decline User": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Poll Updates": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Space Membership Request Decline User": { + "2024-11-01T00:00:00+02:00": 140 + }, + "Post Comment Mention": { + "2024-11-01T00:00:00+02:00": 159 + } + } + }, + "638a3301ed1c4c44d2a58839": { + "$overall": { + "2024-11-01T00:00:00+02:00": 212144 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 212144 + }, + "account-activation": { + "2024-11-01T00:00:00+02:00": 1363 + }, + "auth-code": { + "2024-11-01T00:00:00+02:00": 30 + }, + "AgOnline-ResetPassword": { + "2024-11-01T00:00:00+02:00": 1898 + }, + "appointments-next-day": { + "2024-11-01T00:00:00+02:00": 208853 + } + } + }, + "651add0cb03ff038cedc7448": { + "$overall": { + "2024-11-01T00:00:00+02:00": 357915 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 357915 + }, + "new-message": { + "2024-11-01T00:00:00+02:00": 357911 + } + } + }, + "66b35706aa4218d126bbbf49": { + "$overall": { + "2024-11-01T00:00:00+02:00": 481 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 481 + }, + "Assigned": { + "2024-11-01T00:00:00+02:00": 114 + }, + "Status Updates": { + "2024-11-01T00:00:00+02:00": 141 + }, + "Mentions": { + "2024-11-01T00:00:00+02:00": 221 + } + } + }, + "650b644a42707458fe431762": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1554 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1554 + }, + "challenge.invite.accept.inviter": { + "2024-11-01T00:00:00+02:00": 15 + }, + "user.psnPrivateProfile": { + "2024-11-01T00:00:00+02:00": 11 + }, + "user.steamStatsUpdated": { + "2024-11-01T00:00:00+02:00": 237 + }, + "challenge.created": { + "2024-11-01T00:00:00+02:00": 219 + }, + "Challenge Winner": { + "2024-11-01T00:00:00+02:00": 7 + }, + "user.psnStatsUpdated": { + "2024-11-01T00:00:00+02:00": 10 + }, + "challenge.user.join": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Challenge Started": { + "2024-11-01T00:00:00+02:00": 10 + }, + "challenge.complete.winner.winner": { + "2024-11-01T00:00:00+02:00": 25 + }, + "challenge.complete.winner.participants": { + "2024-11-01T00:00:00+02:00": 6 + }, + "challenge.donation": { + "2024-11-01T00:00:00+02:00": 21 + }, + "challenge.started": { + "2024-11-01T00:00:00+02:00": 24 + }, + "admin-broadcast-notification": { + "2024-11-01T00:00:00+02:00": 576 + }, + "Challenge User Join": { + "2024-11-01T00:00:00+02:00": 10 + }, + "challenge.invite.create": { + "2024-11-01T00:00:00+02:00": 79 + }, + "Challenge Created": { + "2024-11-01T00:00:00+02:00": 13 + }, + "user.steamPrivateProfile": { + "2024-11-01T00:00:00+02:00": 253 + } + } + }, + "668d398684227ca750502c57": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15658 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15658 + }, + "Torneo cancellato": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Torneo in scadenza": { + "2024-11-01T00:00:00+02:00": 3222 + }, + "Nuova transazione": { + "2024-11-01T00:00:00+02:00": 1087 + }, + "Torneo in partenza": { + "2024-11-01T00:00:00+02:00": 3075 + }, + "Tournament Unjoin": { + "2024-11-01T00:00:00+02:00": 46 + }, + "tournament-subscription-confirmed": { + "2024-11-01T00:00:00+02:00": 167 + }, + "Account affiliato approvato": { + "2024-11-01T00:00:00+02:00": 7 + }, + "KYC Status": { + "2024-11-01T00:00:00+02:00": 169 + }, + "tournament-unjoin": { + "2024-11-01T00:00:00+02:00": 54 + }, + "Tournament Subscription Confirmed": { + "2024-11-01T00:00:00+02:00": 180 + }, + "Welcome To Tralent": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Torneo iniziato": { + "2024-11-01T00:00:00+02:00": 6375 + }, + "Torneo terminato": { + "2024-11-01T00:00:00+02:00": 1226 + } + } + }, + "64011cb9841d0bacae01f6ff": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2260 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2260 + }, + "Contractor Entry/Exit": { + "2024-11-01T00:00:00+02:00": 126 + }, + "Data Exception": { + "2024-11-01T00:00:00+02:00": 169 + }, + "General Messages With Buttons": { + "2024-11-01T00:00:00+02:00": 1887 + }, + "SMS Only": { + "2024-11-01T00:00:00+02:00": 19 + }, + "General Messages": { + "2024-11-01T00:00:00+02:00": 54 + } + } + }, + "64db6d7084fbabb0eef2e7a0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14001 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14001 + }, + "New Issue": { + "2024-11-01T00:00:00+02:00": 6134 + }, + "Quota Reached": { + "2024-11-01T00:00:00+02:00": 2747 + }, + "Quota Nearly Reached": { + "2024-11-01T00:00:00+02:00": 5120 + } + } + }, + "657006a1d69593bcb426d80e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1639 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1639 + }, + "Logbook": { + "2024-11-01T00:00:00+02:00": 1627 + }, + "Shipyard": { + "2024-11-01T00:00:00+02:00": 12 + } + } + }, + "6437a1cdc3f9dd9ef6a22609": { + "$overall": { + "2024-11-01T00:00:00+02:00": 54 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 54 + }, + "[ Customer ] - Order Shipment Status": { + "2024-11-01T00:00:00+02:00": 7 + }, + "[ Store ] - Message Notification": { + "2024-11-01T00:00:00+02:00": 44 + } + } + }, + "6643b1e7fbadc9d325959e25": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2467 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2467 + }, + "Add Role": { + "2024-11-01T00:00:00+02:00": 168 + }, + "Change Status": { + "2024-11-01T00:00:00+02:00": 875 + }, + "Alert Appointment Missing Register": { + "2024-11-01T00:00:00+02:00": 502 + }, + "Mental Health Campaing": { + "2024-11-01T00:00:00+02:00": 31 + }, + "New Appointment": { + "2024-11-01T00:00:00+02:00": 272 + }, + "Add Sick Note": { + "2024-11-01T00:00:00+02:00": 101 + }, + "Add Prescription": { + "2024-11-01T00:00:00+02:00": 258 + }, + "Alert Old Open Appointment": { + "2024-11-01T00:00:00+02:00": 214 + }, + "Update Health Leader": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Implantação": { + "2024-11-01T00:00:00+02:00": 21 + } + } + }, + "64654f8125b1fb30f26b3ce3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 111276 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 111276 + }, + "Public Profile Activity": { + "2024-11-01T00:00:00+02:00": 8861 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 35 + }, + "RewardSettingsUpdated": { + "2024-11-01T00:00:00+02:00": 133 + }, + "Employer Reward Requested": { + "2024-11-01T00:00:00+02:00": 3734 + }, + "NewJobSatisfactionSurvey": { + "2024-11-01T00:00:00+02:00": 897 + }, + "EmployeeWeeklySmsFeedback": { + "2024-11-01T00:00:00+02:00": 58799 + }, + "EmployeeNewOnlineMentionV2": { + "2024-11-01T00:00:00+02:00": 33553 + }, + "Points Flex Reward Availability": { + "2024-11-01T00:00:00+02:00": 3298 + }, + "EmployeeProfileNewLead": { + "2024-11-01T00:00:00+02:00": 692 + }, + "NoPointsRewardEarned": { + "2024-11-01T00:00:00+02:00": 1170 + }, + "ProductReviewRequest": { + "2024-11-01T00:00:00+02:00": 104 + } + } + }, + "64135799799e3c974d3f6426": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3984868 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3984868 + }, + "New Clips": { + "2024-11-01T00:00:00+02:00": 870534 + }, + "New Follow": { + "2024-11-01T00:00:00+02:00": 5520 + }, + "New Match": { + "2024-11-01T00:00:00+02:00": 2948884 + }, + "Allstar Gaming": { + "2024-11-01T00:00:00+02:00": 5241 + }, + "New Squad Clip": { + "2024-11-01T00:00:00+02:00": 742 + }, + "New Comment": { + "2024-11-01T00:00:00+02:00": 51 + }, + "New Mobile Clips": { + "2024-11-01T00:00:00+02:00": 153896 + } + } + }, + "652d099361752f4c288defb9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 858 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 858 + }, + "Toppy | Return - Completed - Refunded Full": { + "2024-11-01T00:00:00+02:00": 143 + }, + "Toppy | Return - Processing - In repair": { + "2024-11-01T00:00:00+02:00": 23 + }, + "Stocky | Purchase | Overdue": { + "2024-11-01T00:00:00+02:00": 43 + }, + "Toppy | Return - Completed - Replaced": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Toppy | Return - Requested - Requested": { + "2024-11-01T00:00:00+02:00": 284 + }, + "Toppy | Return - Completed - Repaired": { + "2024-11-01T00:00:00+02:00": 49 + }, + "Toppy | Return - Approved - Label": { + "2024-11-01T00:00:00+02:00": 275 + }, + "Toppy | Return - Approved - Pallet Pickup": { + "2024-11-01T00:00:00+02:00": 21 + } + } + }, + "654fe30fc36c6d67b96de432": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4324 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4324 + }, + "Task Status change": { + "2024-11-01T00:00:00+02:00": 792 + }, + "User assigned to task": { + "2024-11-01T00:00:00+02:00": 338 + }, + "New Comment": { + "2024-11-01T00:00:00+02:00": 3194 + } + } + }, + "6329fc7ae2a2de81df4b10a6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5589 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5589 + }, + "workingCapitalEnabledLineAdvanceRequested": { + "2024-11-01T00:00:00+02:00": 552 + }, + "applicantRegistered": { + "2024-11-01T00:00:00+02:00": 111 + }, + "announce": { + "2024-11-01T00:00:00+02:00": 56 + }, + "alert": { + "2024-11-01T00:00:00+02:00": 80 + }, + "fxTransactionConfirmation": { + "2024-11-01T00:00:00+02:00": 181 + }, + "Colaboradores": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Nueva póliza contratada": { + "2024-11-01T00:00:00+02:00": 120 + }, + "Disbursement Paid Advance": { + "2024-11-01T00:00:00+02:00": 968 + }, + "On-boarding notification": { + "2024-11-01T00:00:00+02:00": 46 + }, + "workingCapitalPreEnableLineOpened": { + "2024-11-01T00:00:00+02:00": 12 + }, + "generalRegisterEmail": { + "2024-11-01T00:00:00+02:00": 403 + }, + "Deposit Received Email Notification": { + "2024-11-01T00:00:00+02:00": 691 + }, + "2FA": { + "2024-11-01T00:00:00+02:00": 2066 + }, + "Recuperar contraseña": { + "2024-11-01T00:00:00+02:00": 48 + }, + "fxmoneywastransferred": { + "2024-11-01T00:00:00+02:00": 174 + }, + "credit-bureau-authorization-validation": { + "2024-11-01T00:00:00+02:00": 61 + } + } + }, + "6670ed6e78b0832675c76f6a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1026 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1026 + }, + "prod-us-timesheet-not-completed": { + "2024-11-01T00:00:00+02:00": 1011 + }, + "staging-us-resource-requests-updates": { + "2024-11-01T00:00:00+02:00": 7 + } + } + }, + "64e4824819860000717aecb9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9299 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9299 + }, + "dispute_management": { + "2024-11-01T00:00:00+02:00": 1417 + }, + "payout_failed": { + "2024-11-01T00:00:00+02:00": 9 + }, + "buyer_qualification_declined": { + "2024-11-01T00:00:00+02:00": 34 + }, + "payout_initiated": { + "2024-11-01T00:00:00+02:00": 60 + }, + "charge_failed": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Merchant CSV report": { + "2024-11-01T00:00:00+02:00": 22 + }, + "terms_weekly_digest": { + "2024-11-01T00:00:00+02:00": 887 + }, + "payout_paid": { + "2024-11-01T00:00:00+02:00": 390 + }, + "sftp_sync_invoices_report": { + "2024-11-01T00:00:00+02:00": 42 + }, + "transaction_financed": { + "2024-11-01T00:00:00+02:00": 133 + }, + "transaction_charged": { + "2024-11-01T00:00:00+02:00": 380 + }, + "buyer_qualification_approved": { + "2024-11-01T00:00:00+02:00": 74 + }, + "terms_daily_digest": { + "2024-11-01T00:00:00+02:00": 5814 + } + } + }, + "6593fa76f58e905ecac67a12": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18014 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18014 + }, + "IN_APP_NEW_LEVEL": { + "2024-11-01T00:00:00+02:00": 18014 + } + } + }, + "67235ab730d1c099604bf849": { + "$overall": { + "2024-11-01T00:00:00+02:00": 343 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 343 + }, + "app-data-created": { + "2024-11-01T00:00:00+02:00": 6 + }, + "App Data Created": { + "2024-11-01T00:00:00+02:00": 213 + }, + "App Data Commented": { + "2024-11-01T00:00:00+02:00": 23 + }, + "App Data Updated": { + "2024-11-01T00:00:00+02:00": 97 + } + } + }, + "6523e5f01941f73be45e3ac3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 683 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 683 + }, + "Plaintiff Finding - Mass Arbitration - New Plaintiff's Reminder": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Plaintiff Finding - Running Campaign": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Plaintiff Finding - Characteristics Revised": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Insights - 24-Hour Review Reminder": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Plaintiff Finding - Plaintiff Status Change": { + "2024-11-01T00:00:00+02:00": 336 + }, + "New Case Assignment": { + "2024-11-01T00:00:00+02:00": 43 + }, + "Plaintiff Finding - Potential Plaintiff Reminder": { + "2024-11-01T00:00:00+02:00": 46 + }, + "Plaintiff Finding - Potential Plaintiff Identified": { + "2024-11-01T00:00:00+02:00": 94 + }, + "Plaintiff Characteristic Changes Submitted": { + "2024-11-01T00:00:00+02:00": 54 + }, + "Plaintiff Finding - Characteristics Suggested": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Plaintiff Finding - Mass Arbitration - Potential Plaintiff Identified": { + "2024-11-01T00:00:00+02:00": 7 + } + } + }, + "64c3f5e72df653eabdc06c32": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5434 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5434 + }, + "Generic_Notification": { + "2024-11-01T00:00:00+02:00": 5434 + } + } + }, + "65439145e3bcee0f76a5a368": { + "$overall": { + "2024-11-01T00:00:00+02:00": 38521 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 38521 + }, + "Neue Dateien hochgeladen": { + "2024-11-01T00:00:00+02:00": 38521 + } + } + }, + "6627ff494ad60adb146eca32": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2460 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2460 + }, + "Invitación Nuevo Asesor": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Bienvenida Asesor": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Nuevo lead": { + "2024-11-01T00:00:00+02:00": 243 + }, + "Nuevo inicio de sesión": { + "2024-11-01T00:00:00+02:00": 474 + }, + "Broker Asignado a Cliente": { + "2024-11-01T00:00:00+02:00": 239 + }, + "Visita solicitada": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Login": { + "2024-11-01T00:00:00+02:00": 516 + }, + "Edición de propiedad": { + "2024-11-01T00:00:00+02:00": 927 + } + } + }, + "662a58724b6cd9280bf5139d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 110 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 110 + }, + "post-status-update": { + "2024-11-01T00:00:00+02:00": 103 + } + } + }, + "64477125ac1c08f04edc14aa": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20520 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20520 + }, + "Comment Mention": { + "2024-11-01T00:00:00+02:00": 20520 + } + } + }, + "66437ce7b370e6b94e711d3c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 294 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 294 + }, + "app-order delivery status changed [Ready]": { + "2024-11-01T00:00:00+02:00": 14 + }, + "[Active] Order placed": { + "2024-11-01T00:00:00+02:00": 20 + }, + "[Active] app-order delivery status changed": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Your email has been changed": { + "2024-11-01T00:00:00+02:00": 202 + }, + "Order Placed [Ready]": { + "2024-11-01T00:00:00+02:00": 49 + } + } + }, + "6568b37faa67fd979c0b94d8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 776 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 776 + }, + "Elevator Price Alert": { + "2024-11-01T00:00:00+02:00": 776 + } + } + }, + "64d2121ee443560425c07189": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1981 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1981 + }, + "Snoozed has ended": { + "2024-11-01T00:00:00+02:00": 1981 + } + } + }, + "647e50e6720b54f89e06480e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 449 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 449 + }, + "008-1 Einladung Künstlerprofil für neue Nutzer": { + "2024-11-01T00:00:00+02:00": 10 + }, + "008-1 Invitation to Project New User": { + "2024-11-01T00:00:00+02:00": 106 + }, + "010-4 Invitation to Apply": { + "2024-11-01T00:00:00+02:00": 41 + }, + "000-1c Bestätigungslink Veranstalter Invite": { + "2024-11-01T00:00:00+02:00": 10 + }, + "008-2 Reminder Einladung Künstlerprofil": { + "2024-11-01T00:00:00+02:00": 6 + }, + "000-1a Bestätigungscode": { + "2024-11-01T00:00:00+02:00": 7 + }, + "009-1 Invitation Project for existing User": { + "2024-11-01T00:00:00+02:00": 86 + }, + "010-6-1 Offer to Organizer": { + "2024-11-01T00:00:00+02:00": 7 + }, + "008-3 Einladung Reminder mit Teaserinfo": { + "2024-11-01T00:00:00+02:00": 6 + }, + "010-2 Message Formation to Organizer": { + "2024-11-01T00:00:00+02:00": 8 + }, + "030-2 Participation Update for Musician": { + "2024-11-01T00:00:00+02:00": 35 + }, + "inbound mailing reply callback test": { + "2024-11-01T00:00:00+02:00": 6 + }, + "000-1b Bestätigungscode Veranstalter": { + "2024-11-01T00:00:00+02:00": 13 + }, + "030-1 Participation Insert for Musician": { + "2024-11-01T00:00:00+02:00": 36 + }, + "030-3 Participation Remove for Musician": { + "2024-11-01T00:00:00+02:00": 24 + }, + "010-7 Organizer rejects Formation": { + "2024-11-01T00:00:00+02:00": 7 + }, + "020-1 | New Package Booking": { + "2024-11-01T00:00:00+02:00": 7 + }, + "010-6-2 Reminder Organizer Offer Response": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "67463a802c32fe389fa61341": { + "$overall": { + "2024-11-01T00:00:00+02:00": 32 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 32 + }, + "alert-email-workflow": { + "2024-11-01T00:00:00+02:00": 31 + } + } + }, + "651c209f8816295152811079": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1360 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1360 + }, + "Step Assigned": { + "2024-11-01T00:00:00+02:00": 23 + }, + "Step Status Updated": { + "2024-11-01T00:00:00+02:00": 1129 + }, + "Comment Created": { + "2024-11-01T00:00:00+02:00": 199 + } + } + }, + "6630a51483064b959c801961": { + "$overall": { + "2024-11-01T00:00:00+02:00": 74498 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 74498 + }, + "pushNotification": { + "2024-11-01T00:00:00+02:00": 64865 + }, + "emailNotification": { + "2024-11-01T00:00:00+02:00": 9633 + } + } + }, + "648e433db5f1ae122b746d19": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3195 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3195 + }, + "general-notification": { + "2024-11-01T00:00:00+02:00": 3195 + } + } + }, + "64df0f4ea9172aa4b7052247": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27679 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27679 + }, + "primary-workflow": { + "2024-11-01T00:00:00+02:00": 19196 + }, + "task-summary": { + "2024-11-01T00:00:00+02:00": 1194 + }, + "secondary-workflow": { + "2024-11-01T00:00:00+02:00": 7289 + } + } + }, + "65fb16744fe3628e5e65fe2e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2246 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2246 + }, + "Document Signature Completion": { + "2024-11-01T00:00:00+02:00": 10 + }, + "ECDT NOTIF": { + "2024-11-01T00:00:00+02:00": 16 + }, + "coupon-reach-80": { + "2024-11-01T00:00:00+02:00": 7 + }, + "cfc-80-percent-in-app": { + "2024-11-01T00:00:00+02:00": 346 + }, + "Closed-coupon-InApp": { + "2024-11-01T00:00:00+02:00": 620 + }, + "Live-coupon-InApp": { + "2024-11-01T00:00:00+02:00": 719 + }, + "Live-coupon-email-InApp-notif": { + "2024-11-01T00:00:00+02:00": 194 + }, + "coupon-reach-100": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Closed-coupon-email-InApp-notif": { + "2024-11-01T00:00:00+02:00": 95 + }, + "SendEmail": { + "2024-11-01T00:00:00+02:00": 231 + } + } + }, + "646f08088b0b51ed17340c31": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14954 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14954 + }, + "New Admin Chat Message": { + "2024-11-01T00:00:00+02:00": 165 + }, + "Admin Notification": { + "2024-11-01T00:00:00+02:00": 504 + }, + "New task launched": { + "2024-11-01T00:00:00+02:00": 438 + }, + "ADHOC Notification Template": { + "2024-11-01T00:00:00+02:00": 13847 + } + } + }, + "6727412d456590b1d8992d83": { + "$overall": { + "2024-11-01T00:00:00+02:00": 303 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 303 + }, + "remind-missing-streak-workflow": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13 + }, + "test-workflow": { + "2024-11-01T00:00:00+02:00": 11 + }, + "send-otp-workflow": { + "2024-11-01T00:00:00+02:00": 11 + }, + "verify-email-workflow": { + "2024-11-01T00:00:00+02:00": 220 + }, + "remind-streak-workflow": { + "2024-11-01T00:00:00+02:00": 16 + } + } + }, + "6413051f44e9291a6455e3e7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "DashboardKPI Notifications": { + "2024-11-01T00:00:00+02:00": 14 + } + } + }, + "6423f39a2586c27b11d98d84": { + "$overall": { + "2024-11-01T00:00:00+02:00": 55963 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 55963 + }, + "Chat Digest": { + "2024-11-01T00:00:00+02:00": 6056 + }, + "RemovedFromRecord": { + "2024-11-01T00:00:00+02:00": 65 + }, + "Interaction Reminder": { + "2024-11-01T00:00:00+02:00": 11771 + }, + "ActivityAltered": { + "2024-11-01T00:00:00+02:00": 1866 + }, + "changeEmail": { + "2024-11-01T00:00:00+02:00": 28 + }, + "recordInvite": { + "2024-11-01T00:00:00+02:00": 2389 + }, + "questionnaireReminder": { + "2024-11-01T00:00:00+02:00": 2322 + }, + "passwordUpdated": { + "2024-11-01T00:00:00+02:00": 401 + }, + "signUpInvite": { + "2024-11-01T00:00:00+02:00": 9 + }, + "recordTransferred": { + "2024-11-01T00:00:00+02:00": 271 + }, + "interactionReminder": { + "2024-11-01T00:00:00+02:00": 356 + }, + "confirmIntake": { + "2024-11-01T00:00:00+02:00": 29 + }, + "affiliateAdded": { + "2024-11-01T00:00:00+02:00": 46 + }, + "emailUpdated": { + "2024-11-01T00:00:00+02:00": 27 + }, + "documentDigestPatient": { + "2024-11-01T00:00:00+02:00": 75 + }, + "loginCode": { + "2024-11-01T00:00:00+02:00": 7362 + }, + "Confirm an intake": { + "2024-11-01T00:00:00+02:00": 385 + }, + "changeEmailNotification": { + "2024-11-01T00:00:00+02:00": 28 + }, + "therapistDeleted": { + "2024-11-01T00:00:00+02:00": 64 + }, + "passwordReset": { + "2024-11-01T00:00:00+02:00": 486 + }, + "therapistAdded": { + "2024-11-01T00:00:00+02:00": 110 + }, + "dailyDigestTherapists": { + "2024-11-01T00:00:00+02:00": 92 + }, + "dailyDigestPatient": { + "2024-11-01T00:00:00+02:00": 484 + }, + "activityAltered": { + "2024-11-01T00:00:00+02:00": 44 + }, + "Daily Digest Patient": { + "2024-11-01T00:00:00+02:00": 15780 + }, + "enableTwoFactor": { + "2024-11-01T00:00:00+02:00": 20 + }, + "newOrganisation": { + "2024-11-01T00:00:00+02:00": 85 + }, + "Document Digest Patient": { + "2024-11-01T00:00:00+02:00": 1993 + }, + "chatDigest": { + "2024-11-01T00:00:00+02:00": 178 + }, + "documentDigestTherapist": { + "2024-11-01T00:00:00+02:00": 17 + }, + "Daily digest therapists": { + "2024-11-01T00:00:00+02:00": 2304 + }, + "Document Digest Therapist": { + "2024-11-01T00:00:00+02:00": 356 + }, + "EnableTwoFactor": { + "2024-11-01T00:00:00+02:00": 461 + } + } + }, + "64e32ac81e192345f283d627": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1638 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1638 + }, + "Semi-Open Campaign Rejected": { + "2024-11-01T00:00:00+02:00": 85 + }, + "Publisher Not Active": { + "2024-11-01T00:00:00+02:00": 339 + }, + "User Registered": { + "2024-11-01T00:00:00+02:00": 154 + }, + "Closed Campaign Approved (advertiser)": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Closed Campaign Approved (influencer)": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Publisher Activated": { + "2024-11-01T00:00:00+02:00": 119 + }, + "Campaign Deactivated": { + "2024-11-01T00:00:00+02:00": 125 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Publisher Channels Disconnected": { + "2024-11-01T00:00:00+02:00": 252 + }, + "Channel Force Disconnected": { + "2024-11-01T00:00:00+02:00": 439 + }, + "Task Acceptance Requested": { + "2024-11-01T00:00:00+02:00": 39 + }, + "Email Changed": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Closed Campaign Invitation Created": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Semi-Open Campaign Approved": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Password Changed": { + "2024-11-01T00:00:00+02:00": 8 + } + } + }, + "66688112d05b953ba10ab594": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4827 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4827 + }, + "rebalance_execution_run_production": { + "2024-11-01T00:00:00+02:00": 4827 + } + } + }, + "63215ba3a4ca4df9242c24c4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1032 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1032 + }, + "Schedule Project": { + "2024-11-01T00:00:00+02:00": 514 + }, + "Account Verification": { + "2024-11-01T00:00:00+02:00": 323 + }, + "incorrect-password": { + "2024-11-01T00:00:00+02:00": 16 + }, + "FILE_UPLOAD": { + "2024-11-01T00:00:00+02:00": 106 + }, + "User Welcome Email": { + "2024-11-01T00:00:00+02:00": 22 + }, + "TAG_ADDED": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Client UserAccount verification": { + "2024-11-01T00:00:00+02:00": 13 + } + } + }, + "65cb7ceb619fe4f9cf882165": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34517 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34517 + }, + "Push Notification": { + "2024-11-01T00:00:00+02:00": 34507 + }, + "referral confirmation": { + "2024-11-01T00:00:00+02:00": 7 + } + } + }, + "6501cc0935286a5ea69aa722": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1438 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1438 + }, + "Basic Message": { + "2024-11-01T00:00:00+02:00": 1438 + } + } + }, + "652efbf06c3964c5a2845118": { + "$overall": { + "2024-11-01T00:00:00+02:00": 754 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 754 + }, + "follow": { + "2024-11-01T00:00:00+02:00": 385 + }, + "In App Share": { + "2024-11-01T00:00:00+02:00": 217 + }, + "One time password": { + "2024-11-01T00:00:00+02:00": 152 + } + } + }, + "64f0638825339d16c5d2738a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 506 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 506 + }, + "Notes de frais": { + "2024-11-01T00:00:00+02:00": 26 + }, + "Transports": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Télétravail": { + "2024-11-01T00:00:00+02:00": 124 + }, + "Absences": { + "2024-11-01T00:00:00+02:00": 344 + } + } + }, + "64c1760e3ec3e6a351ea3ba1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 769 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 769 + }, + "seed calculated": { + "2024-11-01T00:00:00+02:00": 769 + } + } + }, + "65fa38148453b14f2f5aeea2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 276 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 276 + }, + "Project Editing Editor": { + "2024-11-01T00:00:00+02:00": 35 + }, + "Project Pending Client Review Admin": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Project Editing Client": { + "2024-11-01T00:00:00+02:00": 31 + }, + "Project Pending Admin Review Editor": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Project New Project Editor Request Editor": { + "2024-11-01T00:00:00+02:00": 39 + }, + "Project Pending Admin Review Admin": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Project Editing Admin": { + "2024-11-01T00:00:00+02:00": 35 + }, + "Project Completed Editor": { + "2024-11-01T00:00:00+02:00": 30 + }, + "Project Completed Client": { + "2024-11-01T00:00:00+02:00": 26 + }, + "Project Pending Admin Approval Admin": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Project Completed Admin": { + "2024-11-01T00:00:00+02:00": 30 + }, + "Project Pending Client Review Editor": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "63317d6327d50dea0b03d16e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1418 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1418 + }, + "contact us": { + "2024-11-01T00:00:00+02:00": 31 + }, + "system-messages": { + "2024-11-01T00:00:00+02:00": 1387 + } + } + }, + "63edbed95f1718af27dc2f2f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10428 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10428 + }, + "prod-batch-of-credentials-status-changed-notification-template": { + "2024-11-01T00:00:00+02:00": 1955 + }, + "prod-credentials-status-changed-notification-template": { + "2024-11-01T00:00:00+02:00": 8413 + }, + "Credentials Changed Notification Template": { + "2024-11-01T00:00:00+02:00": 60 + } + } + }, + "65af6ad4f58e905ecab29441": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2412649 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2412649 + }, + "Ohsogo Pegasus FCM": { + "2024-11-01T00:00:00+02:00": 2412649 + } + } + }, + "662f0d0e843a6a8496596159": { + "$overall": { + "2024-11-01T00:00:00+02:00": 74 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 74 + }, + "File uploaded to submitted task": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Task updated": { + "2024-11-01T00:00:00+02:00": 48 + } + } + }, + "6557f01a8c7cd7ff32f2d475": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58236 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58236 + }, + "Alert: Cleaning Time Short": { + "2024-11-01T00:00:00+02:00": 34240 + }, + "Alert: Unscheduled Visit": { + "2024-11-01T00:00:00+02:00": 1105 + }, + "Alert: High Traffic": { + "2024-11-01T00:00:00+02:00": 3018 + }, + "Alert: Beacon offline": { + "2024-11-01T00:00:00+02:00": 3000 + }, + "Alert: Cleaning Time Long": { + "2024-11-01T00:00:00+02:00": 1154 + }, + "Schedule Reports": { + "2024-11-01T00:00:00+02:00": 1354 + }, + "Alert: Basestation offline": { + "2024-11-01T00:00:00+02:00": 709 + }, + "Alert: Missed Shift": { + "2024-11-01T00:00:00+02:00": 11449 + }, + "Alert: Sensor Empty": { + "2024-11-01T00:00:00+02:00": 1694 + }, + "Alert: Overtime Worked": { + "2024-11-01T00:00:00+02:00": 500 + }, + "Org invites a user": { + "2024-11-01T00:00:00+02:00": 13 + } + } + }, + "6463ebef60f1803b3a6fbf6b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 106759 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 106759 + }, + "Adjustment Charges": { + "2024-11-01T00:00:00+02:00": 1828 + }, + "Pickups": { + "2024-11-01T00:00:00+02:00": 32346 + }, + "PRO Number Updates": { + "2024-11-01T00:00:00+02:00": 12194 + }, + "Deliveries": { + "2024-11-01T00:00:00+02:00": 31922 + }, + "Cancellations": { + "2024-11-01T00:00:00+02:00": 3478 + }, + "Reschedules": { + "2024-11-01T00:00:00+02:00": 24985 + }, + "Amazon Approved": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "64ca38d1a936a1d182441a27": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1613 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1613 + }, + "messaging": { + "2024-11-01T00:00:00+02:00": 1613 + } + } + }, + "63fa339af93b4fa85aac153d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1083 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1083 + }, + "On-boarding notification": { + "2024-11-01T00:00:00+02:00": 1083 + } + } + }, + "65799faaab5221590f7f1cc1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2555 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2555 + }, + "Customer Onboarding": { + "2024-11-01T00:00:00+02:00": 214 + }, + "Double Points": { + "2024-11-01T00:00:00+02:00": 2143 + }, + "Installer App": { + "2024-11-01T00:00:00+02:00": 138 + }, + "Beta Survey": { + "2024-11-01T00:00:00+02:00": 59 + } + } + }, + "65caa89e619fe4f9cf723907": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26284 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26284 + }, + "Saved Search Notification - 1": { + "2024-11-01T00:00:00+02:00": 26284 + } + } + }, + "652e5833fff93419480c951b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 231914 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 231914 + }, + "Notification Laravel Stocklear": { + "2024-11-01T00:00:00+02:00": 231914 + } + } + }, + "667abaa4218289a1c466b985": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1295 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1295 + }, + "ky": { + "2024-11-01T00:00:00+02:00": 1295 + } + } + }, + "650af582c016453d5bdfb209": { + "$overall": { + "2024-11-01T00:00:00+02:00": 35 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 35 + }, + "Nutzerverwaltung - Neue Rechte erhalten": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Nutzerverwaltung - Einladung angenomen": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Payments - Zustimmung muss bestätigt werden": { + "2024-11-01T00:00:00+02:00": 18 + } + } + }, + "651eff411df1b46454f4c05a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14711 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14711 + }, + "Order Confirmation Seller": { + "2024-11-01T00:00:00+02:00": 145 + }, + "Order Fulfilled Seller": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Community Notifications": { + "2024-11-01T00:00:00+02:00": 912 + }, + "Order Fulfilled Buyer": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Team Subscription Athlete Execution Request": { + "2024-11-01T00:00:00+02:00": 1139 + }, + "New Team Post": { + "2024-11-01T00:00:00+02:00": 1731 + }, + "Athlete Invitation": { + "2024-11-01T00:00:00+02:00": 5225 + }, + "Athlete New Review": { + "2024-11-01T00:00:00+02:00": 6 + }, + "New Eksperience to Followers": { + "2024-11-01T00:00:00+02:00": 427 + }, + "Order Confirmation Buyer": { + "2024-11-01T00:00:00+02:00": 145 + }, + "Athlete Order Expiring Reminder": { + "2024-11-01T00:00:00+02:00": 1269 + }, + "Fan Review Reminder": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Team Subscription Newsletter": { + "2024-11-01T00:00:00+02:00": 35 + }, + "Team Subscription Refund": { + "2024-11-01T00:00:00+02:00": 179 + }, + "Order Cancelled Buyer": { + "2024-11-01T00:00:00+02:00": 118 + }, + "Order Cancelled Seller": { + "2024-11-01T00:00:00+02:00": 118 + }, + "Athlete Order Count Reminder": { + "2024-11-01T00:00:00+02:00": 2805 + }, + "Team Subscription Athlete Payout": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Order Accepted": { + "2024-11-01T00:00:00+02:00": 31 + }, + "New Athletes to Followers": { + "2024-11-01T00:00:00+02:00": 102 + }, + "Team Subscription Renew Success": { + "2024-11-01T00:00:00+02:00": 186 + } + } + }, + "64747ec18b0b51ed1741923d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1005 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1005 + }, + "channelLikes-workflow": { + "2024-11-01T00:00:00+02:00": 58 + }, + "unregisteredChannel-workflow": { + "2024-11-01T00:00:00+02:00": 6 + }, + "unregisteredChannel-workflow-Russian": { + "2024-11-01T00:00:00+02:00": 32 + }, + "adminPanel-workflow": { + "2024-11-01T00:00:00+02:00": 33 + }, + "sharePage-workflow-Russian": { + "2024-11-01T00:00:00+02:00": 348 + }, + "sharePage-workflow": { + "2024-11-01T00:00:00+02:00": 238 + }, + "channelLikes-workflow-Russian": { + "2024-11-01T00:00:00+02:00": 286 + } + } + }, + "673b3b592f10dba8e8616a90": { + "$overall": { + "2024-11-01T00:00:00+02:00": 395 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 395 + }, + "org-user-digest": { + "2024-11-01T00:00:00+02:00": 331 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 64 + } + } + }, + "646f26388b0b51ed1734729b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17146 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17146 + }, + "Projects": { + "2024-11-01T00:00:00+02:00": 12328 + }, + "timesheets-submission-reminder": { + "2024-11-01T00:00:00+02:00": 203 + }, + "Timesheets": { + "2024-11-01T00:00:00+02:00": 3619 + }, + "Tasks": { + "2024-11-01T00:00:00+02:00": 996 + } + } + }, + "65113f461a7614493dc5a9f0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 765 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 765 + }, + "New Group Member": { + "2024-11-01T00:00:00+02:00": 351 + }, + "session_reminder": { + "2024-11-01T00:00:00+02:00": 46 + }, + "purchase_invoice": { + "2024-11-01T00:00:00+02:00": 34 + }, + "group_onboarding_submit": { + "2024-11-01T00:00:00+02:00": 49 + }, + "Group Post Created": { + "2024-11-01T00:00:00+02:00": 142 + }, + "Group Post Reply": { + "2024-11-01T00:00:00+02:00": 140 + } + } + }, + "65bbbfe9cadbf9deb57b546e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 804 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 804 + }, + "Surgical Surgery Create": { + "2024-11-01T00:00:00+02:00": 734 + }, + "surgeryApproval": { + "2024-11-01T00:00:00+02:00": 70 + } + } + }, + "65ce436d99b1dce753411d4a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 941 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 941 + }, + "Asset Notifications": { + "2024-11-01T00:00:00+02:00": 937 + } + } + }, + "66319137a95d2d5be0cffdd5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1163 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1163 + }, + "New Feature Launch": { + "2024-11-01T00:00:00+02:00": 1163 + } + } + }, + "6453755860f1803b3a3fba83": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "Bug was successfully submitted": { + "2024-11-01T00:00:00+02:00": 41 + }, + "Lead list generated": { + "2024-11-01T00:00:00+02:00": 356 + }, + "Message Generation Completed": { + "2024-11-01T00:00:00+02:00": 27 + }, + "Sample Email Generation Completed": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Unipile Account Disconnected": { + "2024-11-01T00:00:00+02:00": 25 + } + } + }, + "62f93267cd5afb6ad39b12b1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21984 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21984 + }, + "Ai Gen Notifications": { + "2024-11-01T00:00:00+02:00": 658 + }, + "popup-notifications": { + "2024-11-01T00:00:00+02:00": 21321 + } + } + }, + "653fbf348928fc83db032ef4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3850 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3850 + }, + "New message": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Email confirmed": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Password reset": { + "2024-11-01T00:00:00+02:00": 6 + }, + "On-boarding": { + "2024-11-01T00:00:00+02:00": 3793 + }, + "Contact Request": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Password reset request": { + "2024-11-01T00:00:00+02:00": 10 + } + } + }, + "642552b70136cef86a79373c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 469 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 469 + }, + "Receipt": { + "2024-11-01T00:00:00+02:00": 67 + }, + "Account Activation": { + "2024-11-01T00:00:00+02:00": 196 + }, + "Welcome": { + "2024-11-01T00:00:00+02:00": 197 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 9 + } + } + }, + "67063d37ba6a0580bfccc7e3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 399 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 399 + }, + "offstreet-stay-after-enter": { + "2024-11-01T00:00:00+02:00": 230 + }, + "payment-error": { + "2024-11-01T00:00:00+02:00": 19 + }, + "offstreet-stay-after-exit": { + "2024-11-01T00:00:00+02:00": 8 + }, + "payment-success": { + "2024-11-01T00:00:00+02:00": 72 + }, + "aparkplus-accepted": { + "2024-11-01T00:00:00+02:00": 33 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17 + }, + "aparkplus-refused": { + "2024-11-01T00:00:00+02:00": 20 + } + } + }, + "64f6ffa51bb9daae5164392a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6034 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6034 + }, + "Sales": { + "2024-11-01T00:00:00+02:00": 294 + }, + "Auctions / Bids": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Assets": { + "2024-11-01T00:00:00+02:00": 5709 + }, + "Offers": { + "2024-11-01T00:00:00+02:00": 21 + } + } + }, + "64092d0773a1721d0476baa9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1181 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1181 + }, + "Request To Check In Appointment": { + "2024-11-01T00:00:00+02:00": 17 + }, + "Twilio Communication - Appointment Reminder - Twillio to Patient - SMS": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Assigned as a negotiator": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Appointment Reminder to Patient Before 24h": { + "2024-11-01T00:00:00+02:00": 47 + }, + "Legal Case Ended": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Twilio Communication - Appointment Canceled - Twillio to Patient - SMS": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Send Ride Booking Information": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Appointment Is Checked In": { + "2024-11-01T00:00:00+02:00": 53 + }, + "Case Changed Notification": { + "2024-11-01T00:00:00+02:00": 56 + }, + "Appointment Reminder to Me": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Appointment Reminder by Email": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Appointment Is Confirmed": { + "2024-11-01T00:00:00+02:00": 51 + }, + "Reqeust To Update LegalCase Status": { + "2024-11-01T00:00:00+02:00": 82 + }, + "Appointment Reminder by SMS": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Request To Confirm Appointment": { + "2024-11-01T00:00:00+02:00": 46 + }, + "Legalcase_is_dropped": { + "2024-11-01T00:00:00+02:00": 53 + }, + "How Was Your Visit?": { + "2024-11-01T00:00:00+02:00": 38 + }, + "Authorization is approved": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Sign request for patient membership application": { + "2024-11-01T00:00:00+02:00": 85 + }, + "Referral That Need Scheduling": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Patient Request to See New Provider": { + "2024-11-01T00:00:00+02:00": 105 + }, + "Send Timer of 30 days prior to statute of limitation": { + "2024-11-01T00:00:00+02:00": 272 + }, + "A new Medical Record is available": { + "2024-11-01T00:00:00+02:00": 104 + } + } + }, + "64362dac4e5fea401a0f19af": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72213 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72213 + }, + "Partner - Appointment Reschedule": { + "2024-11-01T00:00:00+02:00": 2313 + }, + "Partner - Appointment Canceled": { + "2024-11-01T00:00:00+02:00": 3498 + }, + "Partner - Appointment": { + "2024-11-01T00:00:00+02:00": 59779 + }, + "Partner - Appointment Flex": { + "2024-11-01T00:00:00+02:00": 4241 + }, + "Partner - Paid Protocol": { + "2024-11-01T00:00:00+02:00": 2382 + } + } + }, + "630cb844fafbba9bf010f186": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72071 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72071 + }, + "New Maintenance Assigned": { + "2024-11-01T00:00:00+02:00": 64 + }, + "Maintenance Updated": { + "2024-11-01T00:00:00+02:00": 203 + }, + "Crash Detection Violations": { + "2024-11-01T00:00:00+02:00": 793 + }, + "Idling Alerts": { + "2024-11-01T00:00:00+02:00": 23450 + }, + "New Request Update": { + "2024-11-01T00:00:00+02:00": 74 + }, + "Upcoming maintenance alerts": { + "2024-11-01T00:00:00+02:00": 206 + }, + "New Ad-Hoc Request": { + "2024-11-01T00:00:00+02:00": 43 + }, + "Low Fuel Alerts (Tanks)": { + "2024-11-01T00:00:00+02:00": 1326 + }, + "Restricted Geofence Violation": { + "2024-11-01T00:00:00+02:00": 39944 + }, + "Equipment Document Expiry Alerts": { + "2024-11-01T00:00:00+02:00": 5965 + } + } + }, + "648c0658616db8f05a735ef4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2522 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2522 + }, + "canceled-place-internal-reservation-in-app": { + "2024-11-01T00:00:00+02:00": 314 + }, + "success-order": { + "2024-11-01T00:00:00+02:00": 33 + }, + "reservation-change-client-employee": { + "2024-11-01T00:00:00+02:00": 9 + }, + "place-new-order": { + "2024-11-01T00:00:00+02:00": 19 + }, + "canceled-place-external-reservation-in-app": { + "2024-11-01T00:00:00+02:00": 8 + }, + "internal-order": { + "2024-11-01T00:00:00+02:00": 84 + }, + "canceled-place-external-reservation-client-in-app": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Успешна поръчка на продукти": { + "2024-11-01T00:00:00+02:00": 18 + }, + "place-new-reservation": { + "2024-11-01T00:00:00+02:00": 160 + }, + "reminder-reservation": { + "2024-11-01T00:00:00+02:00": 99 + }, + "success-first-order-service": { + "2024-11-01T00:00:00+02:00": 124 + }, + "Untitled": { + "2024-11-01T00:00:00+02:00": 82 + }, + "internal-order-in-app": { + "2024-11-01T00:00:00+02:00": 1033 + }, + "canceled-place-internal-reservation": { + "2024-11-01T00:00:00+02:00": 10 + }, + "group-order": { + "2024-11-01T00:00:00+02:00": 9 + }, + "internal-change-reservation-place-in-app": { + "2024-11-01T00:00:00+02:00": 125 + }, + "canceled-place-external-reservation": { + "2024-11-01T00:00:00+02:00": 7 + }, + "reservation-change-client": { + "2024-11-01T00:00:00+02:00": 9 + }, + "internal-change-reservation-place": { + "2024-11-01T00:00:00+02:00": 99 + }, + "notice-cancellation-reserved-service-employee-in-app": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Нотификация при отказ на услуга": { + "2024-11-01T00:00:00+02:00": 22 + }, + "reservation-change-place-for-client-in-app": { + "2024-11-01T00:00:00+02:00": 6 + }, + "success-order-no-schedule-in-app": { + "2024-11-01T00:00:00+02:00": 15 + }, + "success-payment-product": { + "2024-11-01T00:00:00+02:00": 18 + }, + "rate": { + "2024-11-01T00:00:00+02:00": 161 + } + } + }, + "6421cf785876c8840c441642": { + "$overall": { + "2024-11-01T00:00:00+02:00": 472 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 472 + }, + "Verify email": { + "2024-11-01T00:00:00+02:00": 79 + }, + "distance-alert": { + "2024-11-01T00:00:00+02:00": 62 + }, + "price-alert": { + "2024-11-01T00:00:00+02:00": 262 + }, + "Email verified/Welcome": { + "2024-11-01T00:00:00+02:00": 68 + } + } + }, + "668708d194330132afefdfcc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6980 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6980 + }, + "conversation-notification-real-time": { + "2024-11-01T00:00:00+02:00": 6023 + }, + "digest-notification": { + "2024-11-01T00:00:00+02:00": 957 + } + } + }, + "63a3be9fe0b58885ea9a25b0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 322 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 322 + }, + "Form additional timekeeping": { + "2024-11-01T00:00:00+02:00": 31 + }, + "OTP_LOGIN": { + "2024-11-01T00:00:00+02:00": 97 + }, + "Form remote, unpaidleave, paidLeave": { + "2024-11-01T00:00:00+02:00": 194 + } + } + }, + "62b8aeda9bbe840018528c47": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1236 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1236 + }, + "Activity Need PEP": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Activity Baseline Create": { + "2024-11-01T00:00:00+02:00": 61 + }, + "Activity Update": { + "2024-11-01T00:00:00+02:00": 360 + }, + "New User": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Activity Baseline Update": { + "2024-11-01T00:00:00+02:00": 765 + }, + "Activity Create": { + "2024-11-01T00:00:00+02:00": 33 + } + } + }, + "65eb2863bd6a1b3de8913c21": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2401 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2401 + }, + "User Invited (Local and External)": { + "2024-11-01T00:00:00+02:00": 13 + }, + "The Community - Global In-app": { + "2024-11-01T00:00:00+02:00": 952 + }, + "The Community - Global Email": { + "2024-11-01T00:00:00+02:00": 1431 + } + } + }, + "62fe5f8f227ab843d4272a38": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2193 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2193 + }, + "Enrolled course member to DS Virgil": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Mentor session event batch rescheduled": { + "2024-11-01T00:00:00+02:00": 114 + }, + "Mentor session created to learner": { + "2024-11-01T00:00:00+02:00": 31 + }, + "msbr-expired-to-lx": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Mentor session created to mentor": { + "2024-11-01T00:00:00+02:00": 31 + }, + "mentor-session-created-to-lx": { + "2024-11-01T00:00:00+02:00": 123 + }, + "Mentor Session canceled": { + "2024-11-01T00:00:00+02:00": 44 + }, + "User account activation": { + "2024-11-01T00:00:00+02:00": 30 + }, + "Expired The Mentor Session Event Reschedule Request": { + "2024-11-01T00:00:00+02:00": 22 + }, + "Mentor Session Booking Request Accepted": { + "2024-11-01T00:00:00+02:00": 85 + }, + "Accepted reschedule request of the mentor session event": { + "2024-11-01T00:00:00+02:00": 370 + }, + "Mentor Session Booking Request created": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Created reschedule request of the mentor session event": { + "2024-11-01T00:00:00+02:00": 211 + }, + "MSBR expired": { + "2024-11-01T00:00:00+02:00": 22 + }, + "mentor-session-event-canceled": { + "2024-11-01T00:00:00+02:00": 82 + }, + "Reschedule cancelled event 2nd reminder": { + "2024-11-01T00:00:00+02:00": 114 + }, + "mentor-session-event-rescheduled": { + "2024-11-01T00:00:00+02:00": 610 + }, + "User email verification": { + "2024-11-01T00:00:00+02:00": 47 + }, + "Reschedule cancelled event 1st reminder": { + "2024-11-01T00:00:00+02:00": 176 + } + } + }, + "6687b6fe3069ddef14178411": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45390 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45390 + }, + "gbcdelay": { + "2024-11-01T00:00:00+02:00": 8610 + }, + "gbc": { + "2024-11-01T00:00:00+02:00": 36780 + } + } + }, + "64c03a19bab542bccfebc4c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14738 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14738 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 22 + }, + "Daily Shop Batch Notification": { + "2024-11-01T00:00:00+02:00": 66 + }, + "Locations CSV (RBG)": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Password Setup New User": { + "2024-11-01T00:00:00+02:00": 36 + }, + "Shop Notification Daily": { + "2024-11-01T00:00:00+02:00": 14594 + } + } + }, + "63d548c1a9b6cc61d4c3beb3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9553 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9553 + }, + "Work Ended": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Work Cancelled": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Work Started": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Reminder Email": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Low Food": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Start Work Soon": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Expensive Skill": { + "2024-11-01T00:00:00+02:00": 4337 + }, + "Start Work Reminder": { + "2024-11-01T00:00:00+02:00": 34 + }, + "Actions": { + "2024-11-01T00:00:00+02:00": 897 + }, + "Duel Invited": { + "2024-11-01T00:00:00+02:00": 4140 + } + } + }, + "648079c03a4ec8a5999d3eb1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 580 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 580 + }, + "New Record Notification": { + "2024-11-01T00:00:00+02:00": 580 + } + } + }, + "64197347da8256b93fd7bbb8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 619 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 619 + }, + "Return completed": { + "2024-11-01T00:00:00+02:00": 243 + }, + "Account Activation": { + "2024-11-01T00:00:00+02:00": 115 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Return station full": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Return station emptied": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Borrow started": { + "2024-11-01T00:00:00+02:00": 229 + } + } + }, + "63c8f9dd69a571f23a1f87d0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 195 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 195 + }, + "Paper Trade Placed": { + "2024-11-01T00:00:00+02:00": 186 + }, + "Strategy Shutdown": { + "2024-11-01T00:00:00+02:00": 8 + } + } + }, + "6554c9199139d6b01f88625d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 535 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 535 + }, + "Offer Update Created": { + "2024-11-01T00:00:00+02:00": 190 + }, + "Order Placed": { + "2024-11-01T00:00:00+02:00": 57 + }, + "Order Canceled": { + "2024-11-01T00:00:00+02:00": 8 + }, + "User verified": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Channel Message Created": { + "2024-11-01T00:00:00+02:00": 134 + }, + "Order Placed - Admin": { + "2024-11-01T00:00:00+02:00": 57 + }, + "Order Shipment Created": { + "2024-11-01T00:00:00+02:00": 42 + }, + "Customer Password Reset": { + "2024-11-01T00:00:00+02:00": 37 + } + } + }, + "651fa9f835fbd6284965127c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12216 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12216 + }, + "New report": { + "2024-11-01T00:00:00+02:00": 11246 + }, + "Resolved Vulnerability": { + "2024-11-01T00:00:00+02:00": 52 + }, + "New Vulnerability": { + "2024-11-01T00:00:00+02:00": 918 + } + } + }, + "654eb4b8d71fd8620c6d174e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28378 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28378 + }, + "Outbound Order Appt Booked": { + "2024-11-01T00:00:00+02:00": 1053 + }, + "Transport Order Delivered": { + "2024-11-01T00:00:00+02:00": 1223 + }, + "Outbound Order Created": { + "2024-11-01T00:00:00+02:00": 6465 + }, + "Transport Order Out For Delivery": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Special Order Out For Delivery": { + "2024-11-01T00:00:00+02:00": 691 + }, + "Transport Order At Warehouse": { + "2024-11-01T00:00:00+02:00": 1079 + }, + "Inbound Order Appt Booked": { + "2024-11-01T00:00:00+02:00": 102 + }, + "Outbound Order EDI Error": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Transport Order Scheduled": { + "2024-11-01T00:00:00+02:00": 512 + }, + "Inbound Order Appt Late": { + "2024-11-01T00:00:00+02:00": 455 + }, + "Special Order Delivered": { + "2024-11-01T00:00:00+02:00": 1203 + }, + "Outbound Order Ship Qty Discrepancy": { + "2024-11-01T00:00:00+02:00": 171 + }, + "Outbound Order Appt Late": { + "2024-11-01T00:00:00+02:00": 1095 + }, + "Special Order Created": { + "2024-11-01T00:00:00+02:00": 3351 + }, + "Transport Order Canceled": { + "2024-11-01T00:00:00+02:00": 47 + }, + "Outbound Order Staged": { + "2024-11-01T00:00:00+02:00": 4762 + }, + "Special Order At Warehouse": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Inbound Order Created": { + "2024-11-01T00:00:00+02:00": 2474 + }, + "Outbound Order Ship Date Passed": { + "2024-11-01T00:00:00+02:00": 3661 + } + } + }, + "64ee088296eacf2243b8b25b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3656 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3656 + }, + "Task Assigned": { + "2024-11-01T00:00:00+02:00": 561 + }, + "Ticket Deleted": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Task Assigned To Be Claimed": { + "2024-11-01T00:00:00+02:00": 30 + }, + "Message Notification": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Due Date Reminder": { + "2024-11-01T00:00:00+02:00": 1681 + }, + "Task Claimed": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Core Field Changed": { + "2024-11-01T00:00:00+02:00": 159 + }, + "Daily Summary": { + "2024-11-01T00:00:00+02:00": 653 + }, + "Task Pending": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Comment Added": { + "2024-11-01T00:00:00+02:00": 473 + }, + "Ticket Created": { + "2024-11-01T00:00:00+02:00": 35 + } + } + }, + "66621bc53a586fac83886829": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13969 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13969 + }, + "Alertas Incidentes Críticos": { + "2024-11-01T00:00:00+02:00": 13969 + } + } + }, + "64480a48771e7bed3dc3600e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6503 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6503 + }, + "Default - Censeo Referral": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Invitation to complete Censeo assessment": { + "2024-11-01T00:00:00+02:00": 6415 + }, + "send-report-email": { + "2024-11-01T00:00:00+02:00": 75 + } + } + }, + "659b604dbfebd8d8d51299ca": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3481 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3481 + }, + "pushnotificationdev": { + "2024-11-01T00:00:00+02:00": 560 + }, + "pushnotificationprod": { + "2024-11-01T00:00:00+02:00": 2673 + }, + "pushnotificationstaging": { + "2024-11-01T00:00:00+02:00": 235 + }, + "Data auto-synced to UploadTask": { + "2024-11-01T00:00:00+02:00": 13 + } + } + }, + "653ba5e0583a1ec8f82b3589": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1774 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1774 + }, + "New email": { + "2024-11-01T00:00:00+02:00": 25 + }, + "New message": { + "2024-11-01T00:00:00+02:00": 1424 + }, + "Missed call": { + "2024-11-01T00:00:00+02:00": 94 + }, + "Candidate comment mention": { + "2024-11-01T00:00:00+02:00": 231 + } + } + }, + "63ed36d0f38aed64140c6720": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "Pago aprobado": { + "2024-11-01T00:00:00+02:00": 27 + }, + "Estudiante inscripto": { + "2024-11-01T00:00:00+02:00": 407 + }, + "Suscripción abandonada": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Procesando pago": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Bienvenida": { + "2024-11-01T00:00:00+02:00": 172 + }, + "Certificado emitido": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Recuperación de contraseña (Código)": { + "2024-11-01T00:00:00+02:00": 102 + }, + "Entrega corregida": { + "2024-11-01T00:00:00+02:00": 119 + } + } + }, + "63cf21de42cfbce360219228": { + "$overall": { + "2024-11-01T00:00:00+02:00": 754 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 754 + }, + "Message notification": { + "2024-11-01T00:00:00+02:00": 685 + }, + "Order notification": { + "2024-11-01T00:00:00+02:00": 69 + } + } + }, + "64c78706e994a8dc20cdb2e1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 226 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 226 + }, + "Account Verification": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Reset Password": { + "2024-11-01T00:00:00+02:00": 201 + } + } + }, + "65af718b8e557ef0af46f7c0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3223 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3223 + }, + "Order Create": { + "2024-11-01T00:00:00+02:00": 2014 + }, + "Approval Request Status": { + "2024-11-01T00:00:00+02:00": 17 + }, + "Order Packed": { + "2024-11-01T00:00:00+02:00": 35 + }, + "account": { + "2024-11-01T00:00:00+02:00": 144 + }, + "Notify Merchant With Request Create": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Order Placed": { + "2024-11-01T00:00:00+02:00": 165 + }, + "Set Password": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Return Order status Update": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Order Update": { + "2024-11-01T00:00:00+02:00": 49 + }, + "Return Order": { + "2024-11-01T00:00:00+02:00": 62 + }, + "payment": { + "2024-11-01T00:00:00+02:00": 124 + }, + "Order Canceled": { + "2024-11-01T00:00:00+02:00": 200 + }, + "Request Create": { + "2024-11-01T00:00:00+02:00": 346 + } + } + }, + "667b514853d09da0827f2c20": { + "$overall": { + "2024-11-01T00:00:00+02:00": 658 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 658 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 16 + }, + "account-verification-code-sms": { + "2024-11-01T00:00:00+02:00": 162 + }, + "account-verification-code": { + "2024-11-01T00:00:00+02:00": 480 + } + } + }, + "671bcf830ab03d9467221e9b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 714 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 714 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 27 + }, + "in-app-notification": { + "2024-11-01T00:00:00+02:00": 566 + }, + "new-comment-workflow": { + "2024-11-01T00:00:00+02:00": 121 + } + } + }, + "634d5b1a27d50dea0bbfa3bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14947 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14947 + }, + "File added to ticket": { + "2024-11-01T00:00:00+02:00": 848 + }, + "Ticket assigned changed": { + "2024-11-01T00:00:00+02:00": 1313 + }, + "Ticket state changed": { + "2024-11-01T00:00:00+02:00": 3281 + }, + "Ticket commenté": { + "2024-11-01T00:00:00+02:00": 9505 + } + } + }, + "644c1877631887e5f006a54f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1252 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1252 + }, + "Bergsify - MAS": { + "2024-11-01T00:00:00+02:00": 1252 + } + } + }, + "65537ecc00c55a508c06f6ce": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5425 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5425 + }, + "New order notification": { + "2024-11-01T00:00:00+02:00": 5425 + } + } + }, + "644a988e631887e5f000dae6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7340 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7340 + }, + "failed-outreach": { + "2024-11-01T00:00:00+02:00": 5787 + }, + "Product Created": { + "2024-11-01T00:00:00+02:00": 1553 + } + } + }, + "63cfe876ab8d9270851c178d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1928 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1928 + }, + "Application CV": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Application Confirmation": { + "2024-11-01T00:00:00+02:00": 126 + }, + "Liked company opportunity or event notification": { + "2024-11-01T00:00:00+02:00": 1744 + }, + "applicationDigest": { + "2024-11-01T00:00:00+02:00": 27 + }, + "CVExport": { + "2024-11-01T00:00:00+02:00": 20 + } + } + }, + "647817a98b0b51ed174db1a8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20511 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20511 + }, + "ambassador-app-notifications": { + "2024-11-01T00:00:00+02:00": 227 + }, + "angel-app-notifications": { + "2024-11-01T00:00:00+02:00": 3985 + }, + "angel-app-notifications-inapp": { + "2024-11-01T00:00:00+02:00": 16299 + } + } + }, + "62fa8155227ab843d407b3f5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10287 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10287 + }, + "Ticket Due": { + "2024-11-01T00:00:00+02:00": 1565 + }, + "Finished Export": { + "2024-11-01T00:00:00+02:00": 898 + }, + "Atualizações em um Ticket": { + "2024-11-01T00:00:00+02:00": 3735 + }, + "Nova menção em um ticket": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Summary Email": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Finished Import": { + "2024-11-01T00:00:00+02:00": 499 + }, + "Novo Ticket Atribuído": { + "2024-11-01T00:00:00+02:00": 3555 + } + } + }, + "66032532f43359bff28c011f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 585438 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 585438 + }, + "noteReminder": { + "2024-11-01T00:00:00+02:00": 177 + }, + "basepricenudge": { + "2024-11-01T00:00:00+02:00": 102891 + }, + "minpricenudge": { + "2024-11-01T00:00:00+02:00": 418997 + }, + "inqdequateminbaseprice": { + "2024-11-01T00:00:00+02:00": 4921 + }, + "AIRBNB CONNECTION": { + "2024-11-01T00:00:00+02:00": 76 + }, + "onetimenotification": { + "2024-11-01T00:00:00+02:00": 8 + }, + "NON HLP SMALL USERS LESS THAN 10 LISTINGS": { + "2024-11-01T00:00:00+02:00": 58368 + } + } + }, + "63ad63d5a3d6d6f6e46334a0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5487 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5487 + }, + "Calendar failed to refresh": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Meeting analysis": { + "2024-11-01T00:00:00+02:00": 4336 + }, + "Meeting analysis team - Slack": { + "2024-11-01T00:00:00+02:00": 1136 + } + } + }, + "65f086bfeb4977909f034ec2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1098 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1098 + }, + "Candidate Submission Status -> Offer": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Multiple Candidate Submission": { + "2024-11-01T00:00:00+02:00": 22 + }, + "Candidate Viewed": { + "2024-11-01T00:00:00+02:00": 591 + }, + "Candidate Submission Status -> Interview": { + "2024-11-01T00:00:00+02:00": 159 + }, + "Candidate Submission": { + "2024-11-01T00:00:00+02:00": 250 + }, + "Candidate Submission Status -> Rejected": { + "2024-11-01T00:00:00+02:00": 42 + }, + "Create Note": { + "2024-11-01T00:00:00+02:00": 10 + } + } + }, + "63b3f614749085d8f285703a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15351 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15351 + }, + "Activity Comment Reply": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Activity Comment": { + "2024-11-01T00:00:00+02:00": 66 + }, + "Activity Reaction": { + "2024-11-01T00:00:00+02:00": 769 + }, + "Activity Created On Behalf Of": { + "2024-11-01T00:00:00+02:00": 234 + }, + "Referral Signup": { + "2024-11-01T00:00:00+02:00": 58 + }, + "Connection Accepted": { + "2024-11-01T00:00:00+02:00": 240 + }, + "Activity Created By Player": { + "2024-11-01T00:00:00+02:00": 13684 + }, + "Connection Request": { + "2024-11-01T00:00:00+02:00": 291 + } + } + }, + "6635236c843a6a8496d4d38e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 328 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 328 + }, + "Reconciliation out of balance": { + "2024-11-01T00:00:00+02:00": 48 + }, + "Status Change": { + "2024-11-01T00:00:00+02:00": 280 + } + } + }, + "63a32b86bee1d5aed72d7f15": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7852 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7852 + }, + "Reminders": { + "2024-11-01T00:00:00+02:00": 5354 + }, + "Job sendouts": { + "2024-11-01T00:00:00+02:00": 2498 + } + } + }, + "655cccfb8c7cd7ff32031773": { + "$overall": { + "2024-11-01T00:00:00+02:00": 110 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 110 + }, + "AccesLog Notification": { + "2024-11-01T00:00:00+02:00": 108 + } + } + }, + "6502ec79f39b9230da7cc89f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4019 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4019 + }, + "Entity onboarding reminder": { + "2024-11-01T00:00:00+02:00": 42 + }, + "Platform user invitation": { + "2024-11-01T00:00:00+02:00": 49 + }, + "Doc Processing - Complete": { + "2024-11-01T00:00:00+02:00": 228 + }, + "Entity access invitation": { + "2024-11-01T00:00:00+02:00": 3116 + }, + "Onboarding completed": { + "2024-11-01T00:00:00+02:00": 60 + }, + "Business field updated": { + "2024-11-01T00:00:00+02:00": 363 + }, + "Team Support Request": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Bundle verification reminder": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Business entity requested": { + "2024-11-01T00:00:00+02:00": 86 + }, + "Doc Processing - Failed": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Platform invite reminder": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Publish roadmap": { + "2024-11-01T00:00:00+02:00": 12 + } + } + }, + "66362cc66c5885a3257940bb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2474 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2474 + }, + "Booking Notifications": { + "2024-11-01T00:00:00+02:00": 2458 + }, + "New Registration": { + "2024-11-01T00:00:00+02:00": 8 + } + } + }, + "663d16aa34ea4ddc9b9f2f3d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 887 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 887 + }, + "ChatGPT Deactivation Notification": { + "2024-11-01T00:00:00+02:00": 56 + }, + "Run Daily Checklist Update Task": { + "2024-11-01T00:00:00+02:00": 39 + }, + "Benvida Workorder Week Batch": { + "2024-11-01T00:00:00+02:00": 94 + }, + "Propertybook Checklist Update": { + "2024-11-01T00:00:00+02:00": 24 + }, + "benvida checklist weekly batch": { + "2024-11-01T00:00:00+02:00": 19 + }, + "PropertyBook Assigned Workorder Notification": { + "2024-11-01T00:00:00+02:00": 380 + }, + "Send Altitude Link": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Propertybook Workorder Update Notification": { + "2024-11-01T00:00:00+02:00": 218 + }, + "ChatGPT License Deactivation Complete": { + "2024-11-01T00:00:00+02:00": 47 + } + } + }, + "65f440088edf3eee31cf371b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1160 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1160 + }, + "Pagamentos": { + "2024-11-01T00:00:00+02:00": 1160 + } + } + }, + "64e46fc009b229a7c5c1735c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34359 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34359 + }, + "Simple_Email": { + "2024-11-01T00:00:00+02:00": 18915 + }, + "Simple_In_App": { + "2024-11-01T00:00:00+02:00": 15444 + } + } + }, + "6335791aee1316a5c89b6d93": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10447 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10447 + }, + "Offer/Order: Generic Message": { + "2024-11-01T00:00:00+02:00": 2426 + }, + "new_task": { + "2024-11-01T00:00:00+02:00": 137 + }, + "Tasks: Generic Message": { + "2024-11-01T00:00:00+02:00": 22 + }, + "Subcontractor Assignment Generic Message": { + "2024-11-01T00:00:00+02:00": 7054 + }, + "Subcontractor Assignment Decision": { + "2024-11-01T00:00:00+02:00": 570 + }, + "offer_accepted": { + "2024-11-01T00:00:00+02:00": 238 + } + } + }, + "64d37f84045bf0282da7b498": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4098 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4098 + }, + "Webinar: Created Mentor": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Webinar: Daily Analytics for Mentor": { + "2024-11-01T00:00:00+02:00": 108 + }, + "Auth: User Verification": { + "2024-11-01T00:00:00+02:00": 2982 + }, + "One-Off Meeting: Payment link Mentee": { + "2024-11-01T00:00:00+02:00": 641 + }, + "Notifications: upvote": { + "2024-11-01T00:00:00+02:00": 8 + }, + "One off meeting cancelled": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Package Bought Mentee": { + "2024-11-01T00:00:00+02:00": 159 + }, + "Package Bought Mentor": { + "2024-11-01T00:00:00+02:00": 160 + } + } + }, + "656dbe9f27f644ad0ecba9ae": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1066 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1066 + }, + "qlan-push": { + "2024-11-01T00:00:00+02:00": 1066 + } + } + }, + "6580bfe12c7e267bc3af8dc2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8496 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8496 + }, + "Offer Accepted": { + "2024-11-01T00:00:00+02:00": 123 + }, + "New Higher Bid": { + "2024-11-01T00:00:00+02:00": 81 + }, + "New offer received": { + "2024-11-01T00:00:00+02:00": 2429 + }, + "KYC Ok": { + "2024-11-01T00:00:00+02:00": 26 + }, + "Bid Expired": { + "2024-11-01T00:00:00+02:00": 53 + }, + "Monthly Fee Payed": { + "2024-11-01T00:00:00+02:00": 239 + }, + "KYC Error": { + "2024-11-01T00:00:00+02:00": 38 + }, + "New Lower Ask": { + "2024-11-01T00:00:00+02:00": 4751 + }, + "New Offer On Watched Item": { + "2024-11-01T00:00:00+02:00": 572 + }, + "Ask Matched": { + "2024-11-01T00:00:00+02:00": 123 + }, + "Ask Expired": { + "2024-11-01T00:00:00+02:00": 60 + } + } + }, + "666c096bb3464b7775094768": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21 + }, + "task-updates": { + "2024-11-01T00:00:00+02:00": 10 + }, + "initiative-updates": { + "2024-11-01T00:00:00+02:00": 9 + } + } + }, + "656f1ea74663d4c5f711bce4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 337 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 337 + }, + "Lunar Cyber Notifications": { + "2024-11-01T00:00:00+02:00": 331 + } + } + }, + "66b997fe9c11077f0257d94e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 461 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 461 + }, + "inbox": { + "2024-11-01T00:00:00+02:00": 200 + }, + "general": { + "2024-11-01T00:00:00+02:00": 260 + } + } + }, + "646d9f170b49196df3ab5f80": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17397 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17397 + }, + "Device_Offline_Alerts": { + "2024-11-01T00:00:00+02:00": 12471 + }, + "Leakage_Voltage_Alert": { + "2024-11-01T00:00:00+02:00": 4926 + } + } + }, + "66b3c633abc563f5ee1c4ffa": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5990 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5990 + }, + "notifyInMobile": { + "2024-11-01T00:00:00+02:00": 3290 + }, + "notifyInApp": { + "2024-11-01T00:00:00+02:00": 2686 + }, + "notifyOnEmail": { + "2024-11-01T00:00:00+02:00": 12 + } + } + }, + "638241fa15685362a30e0365": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "assignor-erp-integration-failure": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Notify ccb operation status": { + "2024-11-01T00:00:00+02:00": 200 + }, + "operational-pending-issues": { + "2024-11-01T00:00:00+02:00": 159 + }, + "assignor-erp-integration-success": { + "2024-11-01T00:00:00+02:00": 112 + } + } + }, + "6605a26d8b3193b7f042cff3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 158 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 158 + }, + "[GFI Research] Kích hoạt tài khoản của bạn": { + "2024-11-01T00:00:00+02:00": 29 + }, + "[GFI Research] Thay đổi mật khẩu thành công": { + "2024-11-01T00:00:00+02:00": 6 + }, + "[NEDX] Verify Account Activation": { + "2024-11-01T00:00:00+02:00": 17 + }, + "[GFI Research] Xác minh đăng nhập": { + "2024-11-01T00:00:00+02:00": 49 + }, + "[GFI Research] Xác minh thay đổi Email": { + "2024-11-01T00:00:00+02:00": 12 + }, + "[GFI Research] Thông báo bài viết mới": { + "2024-11-01T00:00:00+02:00": 28 + } + } + }, + "66ea0719cf609b1343a50a19": { + "$overall": { + "2024-11-01T00:00:00+02:00": 552 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 552 + }, + "new_enquiry_message": { + "2024-11-01T00:00:00+02:00": 11 + }, + "awaiting_sign_offs": { + "2024-11-01T00:00:00+02:00": 19 + }, + "new_tenancy_request_property_manager_variant": { + "2024-11-01T00:00:00+02:00": 12 + }, + "send_request_to_supplier": { + "2024-11-01T00:00:00+02:00": 6 + }, + "account_summary": { + "2024-11-01T00:00:00+02:00": 78 + }, + "payment_remittance": { + "2024-11-01T00:00:00+02:00": 6 + }, + "rental_application_unsuccessful": { + "2024-11-01T00:00:00+02:00": 36 + }, + "time_confirmed": { + "2024-11-01T00:00:00+02:00": 30 + }, + "private_viewing_reminder": { + "2024-11-01T00:00:00+02:00": 149 + }, + "rental_application_accepted": { + "2024-11-01T00:00:00+02:00": 9 + }, + "rental_application_shortlisted": { + "2024-11-01T00:00:00+02:00": 17 + }, + "open_home_reminder": { + "2024-11-01T00:00:00+02:00": 150 + } + } + }, + "63bb02b5063f6d94cdf18ac9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5265 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5265 + }, + "Community Notifications": { + "2024-11-01T00:00:00+02:00": 16 + }, + "resetPassword": { + "2024-11-01T00:00:00+02:00": 12 + }, + "PM Status Change": { + "2024-11-01T00:00:00+02:00": 1852 + }, + "welcome": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Basic Certification Reminder": { + "2024-11-01T00:00:00+02:00": 954 + }, + "Admin Reseting Password": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Project Assignment": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Cert Expire Digest": { + "2024-11-01T00:00:00+02:00": 24 + }, + "On Site Time Completion": { + "2024-11-01T00:00:00+02:00": 1174 + }, + "visitSummary": { + "2024-11-01T00:00:00+02:00": 416 + }, + "Visit Assigned Bulk Mail": { + "2024-11-01T00:00:00+02:00": 150 + }, + "certification_expire": { + "2024-11-01T00:00:00+02:00": 617 + } + } + }, + "646e25734c1d7d4ec22acfa5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5408 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5408 + }, + "survey-started-to-recipient": { + "2024-11-01T00:00:00+02:00": 19 + }, + "campaign-task-rejected": { + "2024-11-01T00:00:00+02:00": 23 + }, + "campaign-task-summary-to-assignee": { + "2024-11-01T00:00:00+02:00": 2665 + }, + "campaign-task-assigned-to-assignee": { + "2024-11-01T00:00:00+02:00": 1120 + }, + "campaign-task-validation-summary-to-validator": { + "2024-11-01T00:00:00+02:00": 161 + }, + "invite-to-existing-user": { + "2024-11-01T00:00:00+02:00": 157 + }, + "campaign-task-comment-added": { + "2024-11-01T00:00:00+02:00": 14 + }, + "survey-reminder-to-recipient": { + "2024-11-01T00:00:00+02:00": 65 + }, + "campaign-ended-to-creator": { + "2024-11-01T00:00:00+02:00": 32 + }, + "campaign-launched-to-creator": { + "2024-11-01T00:00:00+02:00": 39 + }, + "invite-with-pass-to-new-user": { + "2024-11-01T00:00:00+02:00": 140 + }, + "invite-with-sso-to-new-user": { + "2024-11-01T00:00:00+02:00": 33 + }, + "campaign-summary-to-creator": { + "2024-11-01T00:00:00+02:00": 925 + }, + "reminder-with-pass-to-new-user": { + "2024-11-01T00:00:00+02:00": 11 + } + } + }, + "6481d805720b54f89e143404": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1376 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1376 + }, + "LQI-score-change": { + "2024-11-01T00:00:00+02:00": 1376 + } + } + }, + "64dbea7b28a0b10b3b77239e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3653 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3653 + }, + "New Task Notification to All Admins": { + "2024-11-01T00:00:00+02:00": 1820 + }, + "Task Due": { + "2024-11-01T00:00:00+02:00": 1833 + } + } + }, + "6572fd669788e6811d7b4d64": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7726 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7726 + }, + "Selection Notify": { + "2024-11-01T00:00:00+02:00": 1238 + }, + "Review Received": { + "2024-11-01T00:00:00+02:00": 205 + }, + "Gallery Download": { + "2024-11-01T00:00:00+02:00": 5626 + }, + "Favorite Photo Comment": { + "2024-11-01T00:00:00+02:00": 657 + } + } + }, + "6516702d73891288fc1ca032": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14821 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14821 + }, + "Dati di Sintesi": { + "2024-11-01T00:00:00+02:00": 14821 + } + } + }, + "63f586fd589ed09e95f0010f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 549 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 549 + }, + "Notificaciones Sistema Abre.cloud": { + "2024-11-01T00:00:00+02:00": 549 + } + } + }, + "66cf1c1bcf609b134337b496": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7161 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7161 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1625 + }, + "notion-mention-notification": { + "2024-11-01T00:00:00+02:00": 1793 + }, + "notion-comment-notification": { + "2024-11-01T00:00:00+02:00": 1900 + }, + "notion-invite-notification": { + "2024-11-01T00:00:00+02:00": 1842 + } + } + }, + "6447d7ccf2e1143129042903": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5620 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5620 + }, + "payment-reminder": { + "2024-11-01T00:00:00+02:00": 258 + }, + "invite-agent": { + "2024-11-01T00:00:00+02:00": 6 + }, + "email-update-otp": { + "2024-11-01T00:00:00+02:00": 21 + }, + "sms-workflow": { + "2024-11-01T00:00:00+02:00": 1068 + }, + "invite-contact": { + "2024-11-01T00:00:00+02:00": 93 + }, + "iapp-push-notification": { + "2024-11-01T00:00:00+02:00": 2067 + }, + "payment-reminder-past": { + "2024-11-01T00:00:00+02:00": 252 + }, + "push-email-notification": { + "2024-11-01T00:00:00+02:00": 1843 + } + } + }, + "62a0b9433de29f001cb6626f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4217 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4217 + }, + "persistent HQ email + sms": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Post Peer Support - Alliance and CSAT": { + "2024-11-01T00:00:00+02:00": 36 + }, + "PS Session no show - reschedule confirmation & assist": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Overutilization Paperwork Needed": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Samples Request - Triggered via Awell": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Resupply EOY Push 2024 Communications": { + "2024-11-01T00:00:00+02:00": 565 + }, + "ABN (Advance Beneficiary Notice) Needed": { + "2024-11-01T00:00:00+02:00": 34 + }, + "hq-initial-email-betterconcierge": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Medical Records Approved": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Wound Care Evaluation Needed": { + "2024-11-01T00:00:00+02:00": 7 + }, + "1st Email (All except E-commerce Transaction)": { + "2024-11-01T00:00:00+02:00": 337 + }, + "Follow-up-HQ-initial": { + "2024-11-01T00:00:00+02:00": 647 + }, + "Verbal Confirmation Received": { + "2024-11-01T00:00:00+02:00": 19 + }, + "HQ initial email": { + "2024-11-01T00:00:00+02:00": 10 + }, + "initial HQ reminder sms": { + "2024-11-01T00:00:00+02:00": 689 + }, + "Day3 HQ reminder - email": { + "2024-11-01T00:00:00+02:00": 755 + }, + "NPS detractor-passive notification": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Home Health Discharge Verbal Confirmation Needed": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Post Peer Support Session feedback - reminder": { + "2024-11-01T00:00:00+02:00": 23 + }, + "Place 1st Order": { + "2024-11-01T00:00:00+02:00": 44 + }, + "Resupply V2 Reminder Email (-1 Days)": { + "2024-11-01T00:00:00+02:00": 47 + }, + "5th-day-HQ-reminder": { + "2024-11-01T00:00:00+02:00": 699 + }, + "Resupply Order Request Confirmation": { + "2024-11-01T00:00:00+02:00": 183 + } + } + }, + "63ecb58fd38e757796a68c1c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7242858 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7242858 + }, + "(FDF) Second payment reminder": { + "2024-11-01T00:00:00+02:00": 1091 + }, + "Achievement - Top Clicked Listing": { + "2024-11-01T00:00:00+02:00": 372 + }, + "(FDF) First payment reminder": { + "2024-11-01T00:00:00+02:00": 2612 + }, + "Achievement - Top Selling Broker": { + "2024-11-01T00:00:00+02:00": 52 + }, + "newlistings": { + "2024-11-01T00:00:00+02:00": 6829195 + }, + "myhomevaluationupdate": { + "2024-11-01T00:00:00+02:00": 168811 + }, + "bidding_started": { + "2024-11-01T00:00:00+02:00": 173865 + }, + "firsttimeforsale": { + "2024-11-01T00:00:00+02:00": 23801 + }, + "Magic Link": { + "2024-11-01T00:00:00+02:00": 43059 + } + } + }, + "66ab0c482a0b42870f2dadef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7163 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7163 + }, + "unlock-reward": { + "2024-11-01T00:00:00+02:00": 2066 + }, + "announcement-sms": { + "2024-11-01T00:00:00+02:00": 1950 + }, + "welcome-member": { + "2024-11-01T00:00:00+02:00": 2200 + }, + "reward-summary": { + "2024-11-01T00:00:00+02:00": 920 + }, + "reward-summary-sms": { + "2024-11-01T00:00:00+02:00": 26 + } + } + }, + "64aa3f5d5f8a9af8437ea498": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6158 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6158 + }, + "Invitation to Pikul Admin": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Verify moblie number by AIS": { + "2024-11-01T00:00:00+02:00": 501 + }, + "Upgrade tier": { + "2024-11-01T00:00:00+02:00": 314 + }, + "E-wallet top-up": { + "2024-11-01T00:00:00+02:00": 440 + }, + "Property admin change to pause selling": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Promotion is waiting for your approval AWC Admin": { + "2024-11-01T00:00:00+02:00": 622 + }, + "email-verification": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Invite users to register for e-wallet": { + "2024-11-01T00:00:00+02:00": 19 + }, + "successful-coupon-claim": { + "2024-11-01T00:00:00+02:00": 82 + }, + "Pikul point received": { + "2024-11-01T00:00:00+02:00": 55 + }, + "Welcome to Pikul": { + "2024-11-01T00:00:00+02:00": 311 + }, + "User gets a gift coupon (Giveaway coupon)": { + "2024-11-01T00:00:00+02:00": 92 + }, + "Verify Mobile Phone Number": { + "2024-11-01T00:00:00+02:00": 102 + }, + "Upcoming Coupon expiry": { + "2024-11-01T00:00:00+02:00": 2811 + }, + "Complete Profile": { + "2024-11-01T00:00:00+02:00": 307 + }, + "Reset Password OTP": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Sender friend is joining pikul": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Promotion rejected Property Admin": { + "2024-11-01T00:00:00+02:00": 125 + }, + "User gets a membership as a gift (B2B gift)": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Promotion approved to Property Admin": { + "2024-11-01T00:00:00+02:00": 172 + }, + "E-wallet registration": { + "2024-11-01T00:00:00+02:00": 10 + }, + "transfer-coupon-successful": { + "2024-11-01T00:00:00+02:00": 81 + } + } + }, + "64c7be962df653eabd0a53dd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 983 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 983 + }, + "Build Completed": { + "2024-11-01T00:00:00+02:00": 938 + }, + "Technical Debt Alert": { + "2024-11-01T00:00:00+02:00": 45 + } + } + }, + "66b13ca4238f8cf6c4a2478e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 538 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 538 + }, + "welcome-onboarding-2": { + "2024-11-01T00:00:00+02:00": 29 + }, + "Sdjaslkdjsalkdjsakljdaklsjdklsajdkljdklsjdklasjdklsajdklasjdkla": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Untitled": { + "2024-11-01T00:00:00+02:00": 135 + }, + "Daily Mentions": { + "2024-11-01T00:00:00+02:00": 314 + }, + "Weekly Comments": { + "2024-11-01T00:00:00+02:00": 8 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Preview Workflow": { + "2024-11-01T00:00:00+02:00": 21 + } + } + }, + "65718e1d37b5f612059c62ef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17763 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17763 + }, + "Phishing Report Closure": { + "2024-11-01T00:00:00+02:00": 157 + }, + "Phishing Report Receipt": { + "2024-11-01T00:00:00+02:00": 220 + }, + "Clarity Triage Comms": { + "2024-11-01T00:00:00+02:00": 17378 + }, + "Secret Expiry Report": { + "2024-11-01T00:00:00+02:00": 8 + } + } + }, + "65e0b87e3a2387ff89a82beb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 758 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 758 + }, + "Sign In": { + "2024-11-01T00:00:00+02:00": 501 + }, + "trigger-in-app": { + "2024-11-01T00:00:00+02:00": 257 + } + } + }, + "6408f2f0dd5f589fe2ca61b4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2364 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2364 + }, + "Fluxo notificacao novo Lead in App Gestor": { + "2024-11-01T00:00:00+02:00": 681 + }, + "Notifica médico - Assinatura auditoria concluída": { + "2024-11-01T00:00:00+02:00": 8 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Fluxo notifica 3 horas antes vencimento tarefa": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Email novo lead adicionado": { + "2024-11-01T00:00:00+02:00": 828 + }, + "A sua jornada começa agora": { + "2024-11-01T00:00:00+02:00": 9 + }, + "O2T8 Código de Acesso - Aurora": { + "2024-11-01T00:00:00+02:00": 460 + }, + "somente teste": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Notifica lista de leads importados": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Assinar Contrato - Aurora": { + "2024-11-01T00:00:00+02:00": 9 + }, + "O1T1 Cadastro de colaboradores - Aurora": { + "2024-11-01T00:00:00+02:00": 131 + }, + "O3T2 Enviar Documentação - Aurora": { + "2024-11-01T00:00:00+02:00": 96 + }, + "Teste Workflow 24h": { + "2024-11-01T00:00:00+02:00": 44 + }, + "Notificação proposta unique gerada": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Boas vindas - Criação de conta": { + "2024-11-01T00:00:00+02:00": 14 + }, + "CARUARU - Email de Boas Vindas": { + "2024-11-01T00:00:00+02:00": 9 + } + } + }, + "6593f529f58e905ecac5cf4b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22777 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22777 + }, + "Add Beneficiary": { + "2024-11-01T00:00:00+02:00": 131 + }, + "Outbound Notification": { + "2024-11-01T00:00:00+02:00": 4535 + }, + "Exchange Completed": { + "2024-11-01T00:00:00+02:00": 108 + }, + "Service Provider Reminder": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Welcome Email After KYC": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Bulk Payment Request": { + "2024-11-01T00:00:00+02:00": 506 + }, + "Bulk Payment Request Approval": { + "2024-11-01T00:00:00+02:00": 62 + }, + "Payment Rejected": { + "2024-11-01T00:00:00+02:00": 482 + }, + "Welcome Email": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Send Email Credentials": { + "2024-11-01T00:00:00+02:00": 170 + }, + "Daily Balance": { + "2024-11-01T00:00:00+02:00": 6672 + }, + "Payment Request": { + "2024-11-01T00:00:00+02:00": 1796 + }, + "Account Closure": { + "2024-11-01T00:00:00+02:00": 72 + }, + "Access Persona Granted": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Payment Request Status": { + "2024-11-01T00:00:00+02:00": 302 + }, + "Update Beneficiary": { + "2024-11-01T00:00:00+02:00": 40 + }, + "Daily Balance Summary": { + "2024-11-01T00:00:00+02:00": 2015 + }, + "Individual Profile Update": { + "2024-11-01T00:00:00+02:00": 7 + }, + "verification-code": { + "2024-11-01T00:00:00+02:00": 75 + }, + "Exchange Pending": { + "2024-11-01T00:00:00+02:00": 39 + }, + "Inbound Notification": { + "2024-11-01T00:00:00+02:00": 5694 + } + } + }, + "65f9e3b139829e6c76826cb5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 721482 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 721482 + }, + "Late Clock Out - Visitor": { + "2024-11-01T00:00:00+02:00": 1352 + }, + "Late Clock In - Office": { + "2024-11-01T00:00:00+02:00": 681659 + }, + "Visit starting": { + "2024-11-01T00:00:00+02:00": 22338 + }, + "Late Clock In - Visitor": { + "2024-11-01T00:00:00+02:00": 16132 + } + } + }, + "6540cb89c086274eec8fb0b1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22009 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22009 + }, + "Transaction": { + "2024-11-01T00:00:00+02:00": 5097 + }, + "Match": { + "2024-11-01T00:00:00+02:00": 29 + }, + "Transactions": { + "2024-11-01T00:00:00+02:00": 16512 + }, + "Invoice Paid": { + "2024-11-01T00:00:00+02:00": 37 + }, + "Invoice Overdue": { + "2024-11-01T00:00:00+02:00": 130 + }, + "Inbox Match": { + "2024-11-01T00:00:00+02:00": 204 + } + } + }, + "643e8d58b6a53d8ae70721c2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30991 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30991 + }, + "On-boarding notification": { + "2024-11-01T00:00:00+02:00": 30991 + } + } + }, + "6543a644e3126f05f0cad775": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2347 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2347 + }, + "Esign Invitation": { + "2024-11-01T00:00:00+02:00": 2318 + }, + "Notification": { + "2024-11-01T00:00:00+02:00": 29 + } + } + }, + "670d176b8b5274f547d231c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1174 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1174 + }, + "after-buy-weelet": { + "2024-11-01T00:00:00+02:00": 636 + }, + "dukaty-purchase": { + "2024-11-01T00:00:00+02:00": 54 + }, + "after-buy-products-workflow": { + "2024-11-01T00:00:00+02:00": 17 + }, + "sticker-send-info": { + "2024-11-01T00:00:00+02:00": 49 + }, + "after-choosing-npu-lottery": { + "2024-11-01T00:00:00+02:00": 18 + }, + "sticker-send-package-with-sticker-info": { + "2024-11-01T00:00:00+02:00": 8 + }, + "sticker-pickup": { + "2024-11-01T00:00:00+02:00": 359 + }, + "dukaty-topup-workflow": { + "2024-11-01T00:00:00+02:00": 33 + } + } + }, + "65d368c9a1dfc9ae299cbd1e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1988 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1988 + }, + "TAP clinical observations": { + "2024-11-01T00:00:00+02:00": 1864 + }, + "Accession Rollback": { + "2024-11-01T00:00:00+02:00": 72 + }, + "Priority order": { + "2024-11-01T00:00:00+02:00": 35 + }, + "QC Bleed Notification": { + "2024-11-01T00:00:00+02:00": 12 + } + } + }, + "6627ad47fe81f5c852ec1b6a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6562 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6562 + }, + "Community Post Comment Created": { + "2024-11-01T00:00:00+02:00": 121 + }, + "Community Updated": { + "2024-11-01T00:00:00+02:00": 25 + }, + "user_welcome": { + "2024-11-01T00:00:00+02:00": 63 + }, + "Kyc Success": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Community Post Reaction Created": { + "2024-11-01T00:00:00+02:00": 215 + }, + "Community Member Invited": { + "2024-11-01T00:00:00+02:00": 17 + }, + "First Receive": { + "2024-11-01T00:00:00+02:00": 43 + }, + "First Transfer": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Friend Signup": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Community Member Invite Accepted": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Topup Notification": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Toco Receive Notification": { + "2024-11-01T00:00:00+02:00": 400 + }, + "Community Post Created": { + "2024-11-01T00:00:00+02:00": 5597 + } + } + }, + "6600f0d38453b14f2ff41c7d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 597 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 597 + }, + "Transform Finished in App": { + "2024-11-01T00:00:00+02:00": 296 + }, + "Job Needs Attention": { + "2024-11-01T00:00:00+02:00": 300 + } + } + }, + "64e3554548249e7e76aeffc3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15165 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15165 + }, + "A new meeting has been scheduled": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Deleting Empty List": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Bulk Email Sender Re-Connect": { + "2024-11-01T00:00:00+02:00": 263 + }, + "Pending Email Approvals for 5 days": { + "2024-11-01T00:00:00+02:00": 187 + }, + "Bulk Email Sender Upload Complete": { + "2024-11-01T00:00:00+02:00": 39 + }, + "Email Sender has error": { + "2024-11-01T00:00:00+02:00": 1459 + }, + "Link in Email Clicked": { + "2024-11-01T00:00:00+02:00": 12179 + }, + "Scheduled Sequence all Emails Sent & Tasks Complete": { + "2024-11-01T00:00:00+02:00": 107 + }, + "Email List Verification is Complete": { + "2024-11-01T00:00:00+02:00": 33 + }, + "On-boarding notification": { + "2024-11-01T00:00:00+02:00": 373 + }, + "Scheduled Sequence is Started": { + "2024-11-01T00:00:00+02:00": 393 + }, + "Email Approvals Pending": { + "2024-11-01T00:00:00+02:00": 111 + } + } + }, + "66cbf5decf609b134349ac56": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1285 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1285 + }, + "BRAND_SPONSORSHIP_INCREASE": { + "2024-11-01T00:00:00+02:00": 463 + }, + "BRAND_SPEND_INCREASE": { + "2024-11-01T00:00:00+02:00": 467 + }, + "CATEGORY_SPONSORSHIP_TOTAL": { + "2024-11-01T00:00:00+02:00": 355 + } + } + }, + "65f2f98b79ffb10acbce98c2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1147 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1147 + }, + "airTempAlarm": { + "2024-11-01T00:00:00+02:00": 668 + }, + "addedTo": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Sign up": { + "2024-11-01T00:00:00+02:00": 16 + }, + "noDataAlarm": { + "2024-11-01T00:00:00+02:00": 130 + }, + "co2Alarm": { + "2024-11-01T00:00:00+02:00": 71 + }, + "Batch Report": { + "2024-11-01T00:00:00+02:00": 243 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 10 + } + } + }, + "6671df91f4a238f107fe9f56": { + "$overall": { + "2024-11-01T00:00:00+02:00": 719 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 719 + }, + "Document Requests": { + "2024-11-01T00:00:00+02:00": 104 + }, + "In-App Notifications": { + "2024-11-01T00:00:00+02:00": 376 + }, + "Authentication Magic Links": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Authentication - Combined (code + link)": { + "2024-11-01T00:00:00+02:00": 232 + } + } + }, + "63b86f5db775d8ef0ed8f08f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 31643 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 31643 + }, + "SUPO In-App notification": { + "2024-11-01T00:00:00+02:00": 31643 + } + } + }, + "6571c58bfd6a606fd6c8f3f0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 478 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 478 + }, + "Invite employee": { + "2024-11-01T00:00:00+02:00": 478 + } + } + }, + "669ba0033c94be87b123b8c5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 52671 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 52671 + }, + "trial-request": { + "2024-11-01T00:00:00+02:00": 22799 + }, + "paid-request": { + "2024-11-01T00:00:00+02:00": 29872 + } + } + }, + "66cde6ffcf609b13433bff6b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18302 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18302 + }, + "welcome-to-book": { + "2024-11-01T00:00:00+02:00": 912 + }, + "welcome-to-course": { + "2024-11-01T00:00:00+02:00": 3170 + }, + "general-announcement": { + "2024-11-01T00:00:00+02:00": 112 + }, + "course-announcement": { + "2024-11-01T00:00:00+02:00": 126 + }, + "welcome-to-plan": { + "2024-11-01T00:00:00+02:00": 118 + }, + "general-email-announcement": { + "2024-11-01T00:00:00+02:00": 13864 + } + } + }, + "66432c55c4df36a964927b2c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 77131 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 77131 + }, + "cp-mediashuttle-1883004-main-deliver-one": { + "2024-11-01T00:00:00+02:00": 8 + }, + "cp-jet-one-to-many-344001-nc2427-error": { + "2024-11-01T00:00:00+02:00": 1699 + }, + "cp-mediashuttle-344001-demo2024-deliver-one": { + "2024-11-01T00:00:00+02:00": 24 + }, + "cp-mediashuttle-344001-nc2427-deliver-weekly-freq1": { + "2024-11-01T00:00:00+02:00": 8 + }, + "cp-jet-344001-nc2427-error": { + "2024-11-01T00:00:00+02:00": 17 + }, + "cp-jet-344001-nc2427-deliver-daily-freq2": { + "2024-11-01T00:00:00+02:00": 8 + }, + "cp-mediashuttle-344001-euro2024-deliver-one": { + "2024-11-01T00:00:00+02:00": 22 + }, + "cp-jet-344001-nc2427-deliver-weekly-freq1": { + "2024-11-01T00:00:00+02:00": 8 + }, + "cp-mediashuttle-344001-nc2427-deliver-daily-freq1": { + "2024-11-01T00:00:00+02:00": 6 + }, + "cp-mediashuttle-344001-nc2427-deliver-one": { + "2024-11-01T00:00:00+02:00": 9593 + }, + "cp-mediashuttle-3099-default-deliver-one": { + "2024-11-01T00:00:00+02:00": 68 + }, + "cp-jet-344001-euro2024-deliver-one": { + "2024-11-01T00:00:00+02:00": 14 + }, + "delivery-ftp-3099-default-deliver-one": { + "2024-11-01T00:00:00+02:00": 114 + }, + "cp-jet-one-to-many-344001-nc2427-deliver-one": { + "2024-11-01T00:00:00+02:00": 64669 + }, + "cp-jet-344001-nc2427-deliver-one": { + "2024-11-01T00:00:00+02:00": 771 + }, + "delivery-s3-1883004-main-deliver-one": { + "2024-11-01T00:00:00+02:00": 76 + }, + "cp-jet-one-to-many-1883004-main-deliver-one": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "632cae5927d50dea0bf3898b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1184 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1184 + }, + "Add project participants": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Installment Renewal In Five Days": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Task Due Date Is Today": { + "2024-11-01T00:00:00+02:00": 229 + }, + "Responsible For Task To Follower": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Project starts today": { + "2024-11-01T00:00:00+02:00": 49 + }, + "Add Follower To Task": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Task Is Late": { + "2024-11-01T00:00:00+02:00": 592 + }, + "Project changed status": { + "2024-11-01T00:00:00+02:00": 53 + }, + "Project Due Date Is Today": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Task Start Date Is Today": { + "2024-11-01T00:00:00+02:00": 160 + }, + "Task Status Changed": { + "2024-11-01T00:00:00+02:00": 23 + } + } + }, + "651fca9cb03ff038cef1c54f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3820 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3820 + }, + "Triggered - Pipeline Not Running": { + "2024-11-01T00:00:00+02:00": 369 + }, + "Pipeline Actions": { + "2024-11-01T00:00:00+02:00": 310 + }, + "Triggered - High Lag": { + "2024-11-01T00:00:00+02:00": 77 + }, + "Triggered - Pipeline Latency greater than 10 minutes": { + "2024-11-01T00:00:00+02:00": 73 + }, + "Recovery - Data in 30 Minutes": { + "2024-11-01T00:00:00+02:00": 995 + }, + "Recovery - Pipeline Latency less than 10 minutes": { + "2024-11-01T00:00:00+02:00": 76 + }, + "Destination Actions": { + "2024-11-01T00:00:00+02:00": 226 + }, + "Recovery - Pipeline Is Running": { + "2024-11-01T00:00:00+02:00": 376 + }, + "Triggered - No Data in 30 Minutes": { + "2024-11-01T00:00:00+02:00": 995 + }, + "Source Actions": { + "2024-11-01T00:00:00+02:00": 247 + }, + "Recovery- High Lag": { + "2024-11-01T00:00:00+02:00": 76 + } + } + }, + "6361ae479e04bb11b51b9401": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4024 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4024 + }, + "send-pdf": { + "2024-11-01T00:00:00+02:00": 169 + }, + "Organisation admin to complete": { + "2024-11-01T00:00:00+02:00": 3072 + }, + "Referral update": { + "2024-11-01T00:00:00+02:00": 261 + }, + "Patient Reminder": { + "2024-11-01T00:00:00+02:00": 267 + }, + "Practitioner to complete stage": { + "2024-11-01T00:00:00+02:00": 87 + }, + "Patient Invite": { + "2024-11-01T00:00:00+02:00": 168 + } + } + }, + "66a5008b076eb7c94c1adb92": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "contracts-update": { + "2024-11-01T00:00:00+02:00": 36 + } + } + }, + "671bba5a0ab03d946718eb3b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 232 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 232 + }, + "today-callback-notification": { + "2024-11-01T00:00:00+02:00": 19 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6 + }, + "UPCOMING_CALLBACK_NOTIFICATION": { + "2024-11-01T00:00:00+02:00": 37 + }, + "TODAY_CALLBACK_NOTIFICATION": { + "2024-11-01T00:00:00+02:00": 63 + }, + "Announcement Notification": { + "2024-11-01T00:00:00+02:00": 65 + }, + "VERIFY_CALLBACK_NOTIFICATION": { + "2024-11-01T00:00:00+02:00": 15 + } + } + }, + "658c15eae2d5aed98bef8f80": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13703 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13703 + }, + "custom-daily-report-workflow-with-push-notification": { + "2024-11-01T00:00:00+02:00": 4243 + }, + "custom-daily-report-notification-response": { + "2024-11-01T00:00:00+02:00": 886 + }, + "Visio Analytics - Notificação de interesse": { + "2024-11-01T00:00:00+02:00": 3422 + }, + "Visio Daily Report - Notificação de liberação": { + "2024-11-01T00:00:00+02:00": 270 + }, + "Visio Analytics - Notificação de indicadores-chave": { + "2024-11-01T00:00:00+02:00": 4882 + } + } + }, + "66f19c98cf609b134304a0f6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1029 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1029 + }, + "comments-workflow": { + "2024-11-01T00:00:00+02:00": 549 + }, + "work-order-status-change": { + "2024-11-01T00:00:00+02:00": 429 + }, + "payroll-workflow": { + "2024-11-01T00:00:00+02:00": 51 + } + } + }, + "67475e932c32fe389fa51052": { + "$overall": { + "2024-11-01T00:00:00+02:00": 455 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 455 + }, + "in-app-only": { + "2024-11-01T00:00:00+02:00": 450 + } + } + }, + "672e25d0a1974766693e1703": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36 + }, + "task-assignment": { + "2024-11-01T00:00:00+02:00": 36 + } + } + }, + "670e0dc18b5274f5475e4b73": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5300 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5300 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8 + }, + "gbcdelay": { + "2024-11-01T00:00:00+02:00": 3615 + }, + "gbc": { + "2024-11-01T00:00:00+02:00": 1671 + } + } + }, + "6507114e90b85787fd58b6d2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23633 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23633 + }, + "import-shipment-deposited": { + "2024-11-01T00:00:00+02:00": 123 + }, + "import-shipment-commented": { + "2024-11-01T00:00:00+02:00": 4673 + }, + "import-shipment-attached": { + "2024-11-01T00:00:00+02:00": 13181 + }, + "import-shipment-received": { + "2024-11-01T00:00:00+02:00": 127 + }, + "import-shipment-deposit-required": { + "2024-11-01T00:00:00+02:00": 319 + }, + "account-invitation-token": { + "2024-11-01T00:00:00+02:00": 39 + }, + "import-shipment-arrived": { + "2024-11-01T00:00:00+02:00": 937 + }, + "import-shipment-shipped": { + "2024-11-01T00:00:00+02:00": 958 + }, + "import-shipment-waiting": { + "2024-11-01T00:00:00+02:00": 130 + }, + "phone-identification-otp": { + "2024-11-01T00:00:00+02:00": 1756 + }, + "wallet-transfer": { + "2024-11-01T00:00:00+02:00": 1390 + } + } + }, + "671faf6b285bc655d85f6e65": { + "$overall": { + "2024-11-01T00:00:00+02:00": 100 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 100 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 99 + } + } + }, + "674586592c32fe389f95879e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 208 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 208 + }, + "CampaignProductsStopped": { + "2024-11-01T00:00:00+02:00": 134 + }, + "CampaignKeywordsBelowMinBid": { + "2024-11-01T00:00:00+02:00": 11 + }, + "AdvertiserBalanceLow": { + "2024-11-01T00:00:00+02:00": 63 + } + } + }, + "64ecc8ef96eacf2243a91769": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10904 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10904 + }, + "Inbox reply hardcore": { + "2024-11-01T00:00:00+02:00": 1996 + }, + "Chatbot weekly knowledge base update": { + "2024-11-01T00:00:00+02:00": 76 + }, + "Video rejected": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Video in approval": { + "2024-11-01T00:00:00+02:00": 7757 + }, + "Video or caption failed to upload (unknown story)": { + "2024-11-01T00:00:00+02:00": 30 + }, + "Team invite": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Approve contact limits": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Send Postcard Preview": { + "2024-11-01T00:00:00+02:00": 27 + }, + "Inbox reply scheduled": { + "2024-11-01T00:00:00+02:00": 334 + }, + "Inbox access granted": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Task reminder": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Chatbot daily knowledge base update": { + "2024-11-01T00:00:00+02:00": 48 + }, + "Welcome admin": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Campaign Live": { + "2024-11-01T00:00:00+02:00": 304 + }, + "Download video": { + "2024-11-01T00:00:00+02:00": 31 + }, + "Task assignment": { + "2024-11-01T00:00:00+02:00": 215 + } + } + }, + "6400caeef591ea2e090f6040": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1738053 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1738053 + }, + "delivered for subscriber 165": { + "2024-11-01T00:00:00+02:00": 4616 + }, + "firstTimeNewPrescription for subscriber 263": { + "2024-11-01T00:00:00+02:00": 12 + }, + "orderReceipt for subscriber 275": { + "2024-11-01T00:00:00+02:00": 64 + }, + "orderReceipt for subscriber 523": { + "2024-11-01T00:00:00+02:00": 22 + }, + "prescriptionChanged for subscriber 255": { + "2024-11-01T00:00:00+02:00": 201 + }, + "paymentError for subscriber 143": { + "2024-11-01T00:00:00+02:00": 2111 + }, + "firstTimeNewPrescription for subscriber 161": { + "2024-11-01T00:00:00+02:00": 1201 + }, + "patientWelcome for subscriber 530": { + "2024-11-01T00:00:00+02:00": 185 + }, + "Delivered": { + "2024-11-01T00:00:00+02:00": 102 + }, + "orderReceipt for subscriber 530": { + "2024-11-01T00:00:00+02:00": 19 + }, + "firstTimeShippingConfirmation for subscriber 329": { + "2024-11-01T00:00:00+02:00": 67 + }, + "doctorMessage for subscriber 542": { + "2024-11-01T00:00:00+02:00": 266 + }, + "Patient Magic Link": { + "2024-11-01T00:00:00+02:00": 688 + }, + "firstTimeOrderConfirmation for subscriber 542": { + "2024-11-01T00:00:00+02:00": 42 + }, + "outForDelivery for subscriber 13": { + "2024-11-01T00:00:00+02:00": 6 + }, + "firstTimeNewPrescription for subscriber 364": { + "2024-11-01T00:00:00+02:00": 45 + }, + "orderCanceled for subscriber 329": { + "2024-11-01T00:00:00+02:00": 7 + }, + "treatmentActive for subscriber 63": { + "2024-11-01T00:00:00+02:00": 375 + }, + "New Prescription for subscriber 165": { + "2024-11-01T00:00:00+02:00": 2183 + }, + "supportMessage for subscriber 364": { + "2024-11-01T00:00:00+02:00": 100 + }, + "supportMessage for subscriber 465": { + "2024-11-01T00:00:00+02:00": 10 + }, + "firstTimeOrderConfirmation for subscriber 256": { + "2024-11-01T00:00:00+02:00": 131 + }, + "doctorMessage for subscriber 428": { + "2024-11-01T00:00:00+02:00": 16 + }, + "patientMagicLink for subscriber 77": { + "2024-11-01T00:00:00+02:00": 50 + }, + "Admin New Patient": { + "2024-11-01T00:00:00+02:00": 80733 + }, + "orderCanceled for subscriber 255": { + "2024-11-01T00:00:00+02:00": 40 + }, + "abandonedCheckout for subscriber 111": { + "2024-11-01T00:00:00+02:00": 20 + }, + "firstTimeNewPrescription for subscriber 441": { + "2024-11-01T00:00:00+02:00": 15 + }, + "outForDelivery for subscriber 165": { + "2024-11-01T00:00:00+02:00": 3713 + }, + "followUpDue for subscriber 84": { + "2024-11-01T00:00:00+02:00": 1186 + }, + "firstTimeShippingConfirmation for subscriber 217": { + "2024-11-01T00:00:00+02:00": 7 + }, + "delivered for subscriber 378": { + "2024-11-01T00:00:00+02:00": 34 + }, + "doctorMessage for subscriber 78": { + "2024-11-01T00:00:00+02:00": 11 + }, + "shippingConfirmation for subscriber 77": { + "2024-11-01T00:00:00+02:00": 330 + }, + "supportMessage for subscriber 523": { + "2024-11-01T00:00:00+02:00": 10 + }, + "firstTimeShippingConfirmation for subscriber 530": { + "2024-11-01T00:00:00+02:00": 22 + }, + "outForDelivery for subscriber 384": { + "2024-11-01T00:00:00+02:00": 12 + }, + "orderCanceled for subscriber 38": { + "2024-11-01T00:00:00+02:00": 41 + }, + "First Time Shipping Confirmation for subscriber 350": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Follow Up Due": { + "2024-11-01T00:00:00+02:00": 40 + }, + "passwordReset for subscriber 84": { + "2024-11-01T00:00:00+02:00": 182 + }, + "patientWelcome for subscriber 190": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Order Confirmation for subscriber 320": { + "2024-11-01T00:00:00+02:00": 18 + }, + "First Time New Prescription for subscriber 551": { + "2024-11-01T00:00:00+02:00": 8 + }, + "newPrescription for subscriber 256": { + "2024-11-01T00:00:00+02:00": 85 + }, + "orderConfirmation for subscriber 238": { + "2024-11-01T00:00:00+02:00": 13 + }, + "newRefill for subscriber 35": { + "2024-11-01T00:00:00+02:00": 9 + }, + "firstTimeOrderConfirmation for subscriber 614": { + "2024-11-01T00:00:00+02:00": 15 + }, + "doctorMessage for subscriber 9": { + "2024-11-01T00:00:00+02:00": 32 + }, + "firstTimeOrderConfirmation for subscriber 84": { + "2024-11-01T00:00:00+02:00": 651 + }, + "shippingConfirmation for subscriber 143": { + "2024-11-01T00:00:00+02:00": 21098 + }, + "orderReceipt for subscriber 111": { + "2024-11-01T00:00:00+02:00": 22 + }, + "patientMagicLink for subscriber 614": { + "2024-11-01T00:00:00+02:00": 14 + }, + "Shipping Update": { + "2024-11-01T00:00:00+02:00": 15259 + }, + "Admin Patient Payment Failed": { + "2024-11-01T00:00:00+02:00": 3148 + }, + "newPrescription for subscriber 84": { + "2024-11-01T00:00:00+02:00": 448 + }, + "abandonedCheckout for subscriber 384": { + "2024-11-01T00:00:00+02:00": 24 + }, + "patientMagicLink for subscriber 4": { + "2024-11-01T00:00:00+02:00": 620 + }, + "orderReceipt for subscriber 378": { + "2024-11-01T00:00:00+02:00": 45 + }, + "shippingUpdate for subscriber 428": { + "2024-11-01T00:00:00+02:00": 47 + }, + "newRefill for subscriber 406": { + "2024-11-01T00:00:00+02:00": 37 + }, + "Shipping Update for subscriber 350": { + "2024-11-01T00:00:00+02:00": 33 + }, + "firstTimeShippingConfirmation for subscriber 406": { + "2024-11-01T00:00:00+02:00": 76 + }, + "Admin Pharmacy Delay": { + "2024-11-01T00:00:00+02:00": 843 + }, + "supportMessage for subscriber 84": { + "2024-11-01T00:00:00+02:00": 809 + }, + "patientWelcome for subscriber 364": { + "2024-11-01T00:00:00+02:00": 364 + }, + "delivered for subscriber 238": { + "2024-11-01T00:00:00+02:00": 19 + }, + "firstTimeShippingConfirmation for subscriber 465": { + "2024-11-01T00:00:00+02:00": 11 + }, + "prescriptionChanged for subscriber 329": { + "2024-11-01T00:00:00+02:00": 42 + }, + "patientMagicLink for subscriber 549": { + "2024-11-01T00:00:00+02:00": 6 + }, + "newRefill for subscriber 274": { + "2024-11-01T00:00:00+02:00": 6 + }, + "passwordReset for subscriber 4": { + "2024-11-01T00:00:00+02:00": 532 + }, + "doctorMessage for subscriber 275": { + "2024-11-01T00:00:00+02:00": 147 + }, + "shippingUpdate for subscriber 604": { + "2024-11-01T00:00:00+02:00": 87 + }, + "orderCanceled for subscriber 406": { + "2024-11-01T00:00:00+02:00": 14 + }, + "shippingUpdate for subscriber 73": { + "2024-11-01T00:00:00+02:00": 132 + }, + "patientWelcome for subscriber 349": { + "2024-11-01T00:00:00+02:00": 147 + }, + "labReceived for subscriber 441": { + "2024-11-01T00:00:00+02:00": 11 + }, + "abandonedCheckout for subscriber 35": { + "2024-11-01T00:00:00+02:00": 6 + }, + "followUpPastDue for subscriber 542": { + "2024-11-01T00:00:00+02:00": 53 + }, + "delivered for subscriber 349": { + "2024-11-01T00:00:00+02:00": 34 + }, + "orderConfirmation for subscriber 150": { + "2024-11-01T00:00:00+02:00": 8 + }, + "shippingUpdate for subscriber 441": { + "2024-11-01T00:00:00+02:00": 468 + }, + "orderReceipt for subscriber 329": { + "2024-11-01T00:00:00+02:00": 43 + }, + "patientMagicLink for subscriber 9": { + "2024-11-01T00:00:00+02:00": 7 + }, + "abandonedCheckout for subscriber 77": { + "2024-11-01T00:00:00+02:00": 777 + }, + "Admin Payment Failed": { + "2024-11-01T00:00:00+02:00": 68 + }, + "newRefill for subscriber 84": { + "2024-11-01T00:00:00+02:00": 57 + }, + "followUpDue for subscriber 68": { + "2024-11-01T00:00:00+02:00": 24 + }, + "delivered for subscriber 143": { + "2024-11-01T00:00:00+02:00": 17788 + }, + "prescriptionChanged for subscriber 77": { + "2024-11-01T00:00:00+02:00": 225 + }, + "Abandoned Checkout": { + "2024-11-01T00:00:00+02:00": 97 + }, + "passwordReset for subscriber 77": { + "2024-11-01T00:00:00+02:00": 58 + }, + "paymentError for subscriber 441": { + "2024-11-01T00:00:00+02:00": 7 + }, + "newRefill for subscriber 4": { + "2024-11-01T00:00:00+02:00": 228 + }, + "firstTimeOrderConfirmation for subscriber 217": { + "2024-11-01T00:00:00+02:00": 8 + }, + "orderConfirmation for subscriber 111": { + "2024-11-01T00:00:00+02:00": 16 + }, + "followUpPastDue for subscriber 255": { + "2024-11-01T00:00:00+02:00": 285 + }, + "followUpPastDue for subscriber 161": { + "2024-11-01T00:00:00+02:00": 3843 + }, + "shippingUpdate for subscriber 200": { + "2024-11-01T00:00:00+02:00": 5892 + }, + "abandonedCheckout for subscriber 161": { + "2024-11-01T00:00:00+02:00": 9652 + }, + "firstTimeOrderConfirmation for subscriber 320": { + "2024-11-01T00:00:00+02:00": 20 + }, + "delivered for subscriber 77": { + "2024-11-01T00:00:00+02:00": 297 + }, + "delivered for subscriber 9": { + "2024-11-01T00:00:00+02:00": 20 + }, + "patientMagicLink for subscriber 530": { + "2024-11-01T00:00:00+02:00": 24 + }, + "newPrescription for subscriber 406": { + "2024-11-01T00:00:00+02:00": 11 + }, + "shippingUpdate for subscriber 266": { + "2024-11-01T00:00:00+02:00": 2318 + }, + "orderCanceled for subscriber 4": { + "2024-11-01T00:00:00+02:00": 248 + }, + "supportMessage for subscriber 165": { + "2024-11-01T00:00:00+02:00": 2452 + }, + "orderConfirmation for subscriber 190": { + "2024-11-01T00:00:00+02:00": 19 + }, + "shippingUpdate for subscriber 84": { + "2024-11-01T00:00:00+02:00": 10857 + }, + "supportMessage for subscriber 77": { + "2024-11-01T00:00:00+02:00": 738 + }, + "orderReceipt for subscriber 13": { + "2024-11-01T00:00:00+02:00": 7 + }, + "shippingUpdate for subscriber 35": { + "2024-11-01T00:00:00+02:00": 21 + }, + "newPrescription for subscriber 93": { + "2024-11-01T00:00:00+02:00": 7 + }, + "supportMessage for subscriber 238": { + "2024-11-01T00:00:00+02:00": 20 + }, + "supportMessage for subscriber 53": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Patient Welcome": { + "2024-11-01T00:00:00+02:00": 9883 + }, + "delivered for subscriber 38": { + "2024-11-01T00:00:00+02:00": 1755 + }, + "patientWelcome for subscriber 378": { + "2024-11-01T00:00:00+02:00": 89 + }, + "orderReceipt for subscriber 384": { + "2024-11-01T00:00:00+02:00": 12 + }, + "firstTimeShippingConfirmation for subscriber 378": { + "2024-11-01T00:00:00+02:00": 23 + }, + "abandonedPostCheckout for subscriber 77": { + "2024-11-01T00:00:00+02:00": 20 + }, + "orderReceipt for subscriber 161": { + "2024-11-01T00:00:00+02:00": 5877 + }, + "outForDelivery for subscriber 256": { + "2024-11-01T00:00:00+02:00": 180 + }, + "firstTimeOrderConfirmation for subscriber 549": { + "2024-11-01T00:00:00+02:00": 16 + }, + "delivered for subscriber 256": { + "2024-11-01T00:00:00+02:00": 184 + }, + "Admin Daily Report": { + "2024-11-01T00:00:00+02:00": 187 + }, + "supportMessage for subscriber 9": { + "2024-11-01T00:00:00+02:00": 6 + }, + "newPrescription for subscriber 200": { + "2024-11-01T00:00:00+02:00": 34 + }, + "newRefill for subscriber 542": { + "2024-11-01T00:00:00+02:00": 8 + }, + "shippingUpdate for subscriber 523": { + "2024-11-01T00:00:00+02:00": 109 + }, + "patientWelcome for subscriber 255": { + "2024-11-01T00:00:00+02:00": 211 + }, + "firstTimeShippingConfirmation for subscriber 523": { + "2024-11-01T00:00:00+02:00": 23 + }, + "abandonedPostCheckout for subscriber 266": { + "2024-11-01T00:00:00+02:00": 25 + }, + "delivered for subscriber 441": { + "2024-11-01T00:00:00+02:00": 41 + }, + "delivered for subscriber 465": { + "2024-11-01T00:00:00+02:00": 7 + }, + "prescriptionChanged for subscriber 349": { + "2024-11-01T00:00:00+02:00": 25 + }, + "supportMessage for subscriber 4": { + "2024-11-01T00:00:00+02:00": 3102 + }, + "shippingConfirmation for subscriber 217": { + "2024-11-01T00:00:00+02:00": 7 + }, + "outForDelivery for subscriber 217": { + "2024-11-01T00:00:00+02:00": 11 + }, + "patientMagicLink for subscriber 275": { + "2024-11-01T00:00:00+02:00": 11 + }, + "First Time Order Confirmation": { + "2024-11-01T00:00:00+02:00": 158 + }, + "shippingUpdate for subscriber 53": { + "2024-11-01T00:00:00+02:00": 206 + }, + "supportMessage for subscriber 428": { + "2024-11-01T00:00:00+02:00": 18 + }, + "outForDelivery for subscriber 200": { + "2024-11-01T00:00:00+02:00": 590 + }, + "shippingUpdate for subscriber 384": { + "2024-11-01T00:00:00+02:00": 88 + }, + "shippingConfirmation for subscriber 9": { + "2024-11-01T00:00:00+02:00": 13 + }, + "First Time Shipping Confirmation for subscriber 165": { + "2024-11-01T00:00:00+02:00": 1739 + }, + "outForDelivery for subscriber 604": { + "2024-11-01T00:00:00+02:00": 11 + }, + "patientWelcome for subscriber 275": { + "2024-11-01T00:00:00+02:00": 19 + }, + "orderCanceled for subscriber 377": { + "2024-11-01T00:00:00+02:00": 7 + }, + "shippingConfirmation for subscriber 68": { + "2024-11-01T00:00:00+02:00": 6 + }, + "delivered for subscriber 111": { + "2024-11-01T00:00:00+02:00": 18 + }, + "patientWelcome for subscriber 406": { + "2024-11-01T00:00:00+02:00": 145 + }, + "patientWelcome for subscriber 63": { + "2024-11-01T00:00:00+02:00": 11706 + }, + "patientMagicLink for subscriber 256": { + "2024-11-01T00:00:00+02:00": 48 + }, + "supportMessage for subscriber 35": { + "2024-11-01T00:00:00+02:00": 21 + }, + "orderConfirmation for subscriber 614": { + "2024-11-01T00:00:00+02:00": 7 + }, + "doctorMessage for subscriber 614": { + "2024-11-01T00:00:00+02:00": 41 + }, + "passwordReset for subscriber 37": { + "2024-11-01T00:00:00+02:00": 1458 + }, + "shippingUpdate for subscriber 217": { + "2024-11-01T00:00:00+02:00": 100 + }, + "shippingUpdate for subscriber 377": { + "2024-11-01T00:00:00+02:00": 517 + }, + "orderReceipt for subscriber 441": { + "2024-11-01T00:00:00+02:00": 17 + }, + "orderReceipt for subscriber 38": { + "2024-11-01T00:00:00+02:00": 1568 + }, + "orderReceipt for subscriber 150": { + "2024-11-01T00:00:00+02:00": 9 + }, + "firstTimeNewPrescription for subscriber 406": { + "2024-11-01T00:00:00+02:00": 96 + }, + "delivered for subscriber 53": { + "2024-11-01T00:00:00+02:00": 31 + }, + "doctorMessage for subscriber 549": { + "2024-11-01T00:00:00+02:00": 38 + }, + "doctorMessage for subscriber 73": { + "2024-11-01T00:00:00+02:00": 43 + }, + "followUpPastDue for subscriber 77": { + "2024-11-01T00:00:00+02:00": 154 + }, + "newRefill for subscriber 9": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderConfirmation for subscriber 255": { + "2024-11-01T00:00:00+02:00": 248 + }, + "orderCanceled for subscriber 63": { + "2024-11-01T00:00:00+02:00": 709 + }, + "abandonedCheckout for subscriber 614": { + "2024-11-01T00:00:00+02:00": 248 + }, + "followUpPastDue for subscriber 217": { + "2024-11-01T00:00:00+02:00": 9 + }, + "shippingUpdate for subscriber 165": { + "2024-11-01T00:00:00+02:00": 39964 + }, + "First Time Shipping Confirmation": { + "2024-11-01T00:00:00+02:00": 336 + }, + "orderReceipt for subscriber 638": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Export disputes": { + "2024-11-01T00:00:00+02:00": 185 + }, + "First Time Shipping Confirmation for subscriber 93": { + "2024-11-01T00:00:00+02:00": 13 + }, + "followUpPastDue for subscriber 190": { + "2024-11-01T00:00:00+02:00": 15 + }, + "abandonedCheckout for subscriber 4": { + "2024-11-01T00:00:00+02:00": 5369 + }, + "labResulted for subscriber 441": { + "2024-11-01T00:00:00+02:00": 14 + }, + "doctorMessage for subscriber 38": { + "2024-11-01T00:00:00+02:00": 481 + }, + "shippingConfirmation for subscriber 255": { + "2024-11-01T00:00:00+02:00": 501 + }, + "prescriptionChanged for subscriber 542": { + "2024-11-01T00:00:00+02:00": 39 + }, + "orderCanceled for subscriber 77": { + "2024-11-01T00:00:00+02:00": 24 + }, + "newPrescription for subscriber 275": { + "2024-11-01T00:00:00+02:00": 27 + }, + "patientWelcome for subscriber 196": { + "2024-11-01T00:00:00+02:00": 27 + }, + "passwordReset for subscriber 9": { + "2024-11-01T00:00:00+02:00": 7 + }, + "doctorMessage for subscriber 217": { + "2024-11-01T00:00:00+02:00": 30 + }, + "paymentError for subscriber 37": { + "2024-11-01T00:00:00+02:00": 302 + }, + "Order Confirmation": { + "2024-11-01T00:00:00+02:00": 40 + }, + "orderReceipt for subscriber 238": { + "2024-11-01T00:00:00+02:00": 20 + }, + "prescriptionChanged for subscriber 266": { + "2024-11-01T00:00:00+02:00": 219 + }, + "shippingUpdate for subscriber 415": { + "2024-11-01T00:00:00+02:00": 19 + }, + "outForDelivery for subscriber 68": { + "2024-11-01T00:00:00+02:00": 11 + }, + "shippingUpdate for subscriber 463": { + "2024-11-01T00:00:00+02:00": 25 + }, + "followUpDue for subscriber 349": { + "2024-11-01T00:00:00+02:00": 25 + }, + "newPrescription for subscriber 37": { + "2024-11-01T00:00:00+02:00": 12320 + }, + "orderReceipt for subscriber 77": { + "2024-11-01T00:00:00+02:00": 296 + }, + "doctorMessage for subscriber 256": { + "2024-11-01T00:00:00+02:00": 522 + }, + "Follow Up Due for subscriber 93": { + "2024-11-01T00:00:00+02:00": 7 + }, + "shippingConfirmation for subscriber 37": { + "2024-11-01T00:00:00+02:00": 18312 + }, + "followUpDue for subscriber 455": { + "2024-11-01T00:00:00+02:00": 10 + }, + "supportMessage for subscriber 38": { + "2024-11-01T00:00:00+02:00": 309 + }, + "supportMessage for subscriber 255": { + "2024-11-01T00:00:00+02:00": 356 + }, + "prescriptionChanged for subscriber 523": { + "2024-11-01T00:00:00+02:00": 9 + }, + "delivered for subscriber 406": { + "2024-11-01T00:00:00+02:00": 90 + }, + "abandonedCheckout for subscriber 190": { + "2024-11-01T00:00:00+02:00": 16 + }, + "abandonedCheckout for subscriber 217": { + "2024-11-01T00:00:00+02:00": 41 + }, + "prescriptionChanged for subscriber 350": { + "2024-11-01T00:00:00+02:00": 6 + }, + "patientMagicLink for subscriber 63": { + "2024-11-01T00:00:00+02:00": 1407 + }, + "firstTimeOrderConfirmation for subscriber 406": { + "2024-11-01T00:00:00+02:00": 64 + }, + "abandonedCheckout for subscriber 266": { + "2024-11-01T00:00:00+02:00": 719 + }, + "abandonedPostCheckout for subscriber 329": { + "2024-11-01T00:00:00+02:00": 8 + }, + "delivered for subscriber 73": { + "2024-11-01T00:00:00+02:00": 12 + }, + "shippingConfirmation for subscriber 320": { + "2024-11-01T00:00:00+02:00": 18 + }, + "First Time Order Confirmation for subscriber 18": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderConfirmation for subscriber 68": { + "2024-11-01T00:00:00+02:00": 11 + }, + "firstTimeShippingConfirmation for subscriber 364": { + "2024-11-01T00:00:00+02:00": 88 + }, + "shippingUpdate for subscriber 143": { + "2024-11-01T00:00:00+02:00": 144661 + }, + "patientMagicLink for subscriber 349": { + "2024-11-01T00:00:00+02:00": 20 + }, + "abandonedCheckout for subscriber 549": { + "2024-11-01T00:00:00+02:00": 43 + }, + "orderReceipt for subscriber 9": { + "2024-11-01T00:00:00+02:00": 19 + }, + "abandonedCheckout for subscriber 275": { + "2024-11-01T00:00:00+02:00": 49 + }, + "abandonedCheckout for subscriber 604": { + "2024-11-01T00:00:00+02:00": 22 + }, + "patientMagicLink for subscriber 143": { + "2024-11-01T00:00:00+02:00": 3394 + }, + "doctorMessage for subscriber 238": { + "2024-11-01T00:00:00+02:00": 43 + }, + "firstTimeShippingConfirmation for subscriber 441": { + "2024-11-01T00:00:00+02:00": 87 + }, + "doctorMessage for subscriber 441": { + "2024-11-01T00:00:00+02:00": 56 + }, + "orderReceipt for subscriber 452": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Patient Magic Link for subscriber 542": { + "2024-11-01T00:00:00+02:00": 30 + }, + "supportMessage for subscriber 263": { + "2024-11-01T00:00:00+02:00": 60 + }, + "shippingConfirmation for subscriber 441": { + "2024-11-01T00:00:00+02:00": 7 + }, + "firstTimeShippingConfirmation for subscriber 549": { + "2024-11-01T00:00:00+02:00": 17 + }, + "orderReceipt for subscriber 93": { + "2024-11-01T00:00:00+02:00": 20 + }, + "Patient Welcome for subscriber 320": { + "2024-11-01T00:00:00+02:00": 87 + }, + "patientWelcome for subscriber 111": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderCanceled for subscriber 200": { + "2024-11-01T00:00:00+02:00": 55 + }, + "abandonedPostCheckout for subscriber 465": { + "2024-11-01T00:00:00+02:00": 8 + }, + "patientWelcome for subscriber 551": { + "2024-11-01T00:00:00+02:00": 72 + }, + "supportMessage for subscriber 542": { + "2024-11-01T00:00:00+02:00": 78 + }, + "Doctor Message": { + "2024-11-01T00:00:00+02:00": 286 + }, + "prescriptionChanged for subscriber 530": { + "2024-11-01T00:00:00+02:00": 15 + }, + "prescriptionChanged for subscriber 143": { + "2024-11-01T00:00:00+02:00": 1043 + }, + "patientWelcome for subscriber 121": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Admin Pharmacy Error": { + "2024-11-01T00:00:00+02:00": 530 + }, + "orderReceipt for subscriber 37": { + "2024-11-01T00:00:00+02:00": 19472 + }, + "paymentError for subscriber 378": { + "2024-11-01T00:00:00+02:00": 8 + }, + "shippingConfirmation for subscriber 13": { + "2024-11-01T00:00:00+02:00": 7 + }, + "patientMagicLink for subscriber 364": { + "2024-11-01T00:00:00+02:00": 25 + }, + "orderConfirmation for subscriber 84": { + "2024-11-01T00:00:00+02:00": 937 + }, + "abandonedCheckout for subscriber 329": { + "2024-11-01T00:00:00+02:00": 1023 + }, + "abandonedCheckout for subscriber 530": { + "2024-11-01T00:00:00+02:00": 196 + }, + "firstTimeOrderConfirmation for subscriber 401": { + "2024-11-01T00:00:00+02:00": 6 + }, + "abandonedCheckout for subscriber 150": { + "2024-11-01T00:00:00+02:00": 10 + }, + "doctorMessage for subscriber 161": { + "2024-11-01T00:00:00+02:00": 14429 + }, + "abandonedPostCheckout for subscriber 255": { + "2024-11-01T00:00:00+02:00": 15 + }, + "treatmentActive for subscriber 542": { + "2024-11-01T00:00:00+02:00": 27 + }, + "abandonedCheckout for subscriber 255": { + "2024-11-01T00:00:00+02:00": 398 + }, + "orderCanceled for subscriber 256": { + "2024-11-01T00:00:00+02:00": 15 + }, + "patientWelcome for subscriber 292": { + "2024-11-01T00:00:00+02:00": 6 + }, + "firstTimeShippingConfirmation for subscriber 84": { + "2024-11-01T00:00:00+02:00": 799 + }, + "followUpDue for subscriber 165": { + "2024-11-01T00:00:00+02:00": 3077 + }, + "abandonedCheckout for subscriber 68": { + "2024-11-01T00:00:00+02:00": 17 + }, + "orderConfirmation for subscriber 53": { + "2024-11-01T00:00:00+02:00": 58 + }, + "doctorMessage for subscriber 415": { + "2024-11-01T00:00:00+02:00": 8 + }, + "newRefill for subscriber 38": { + "2024-11-01T00:00:00+02:00": 1463 + }, + "newRefill for subscriber 63": { + "2024-11-01T00:00:00+02:00": 1877 + }, + "Delivered for subscriber 549": { + "2024-11-01T00:00:00+02:00": 8 + }, + "delivered for subscriber 190": { + "2024-11-01T00:00:00+02:00": 16 + }, + "supportMessage for subscriber 143": { + "2024-11-01T00:00:00+02:00": 13739 + }, + "delivered for subscriber 455": { + "2024-11-01T00:00:00+02:00": 7 + }, + "passwordReset for subscriber 378": { + "2024-11-01T00:00:00+02:00": 7 + }, + "abandonedCheckout for subscriber 350": { + "2024-11-01T00:00:00+02:00": 162 + }, + "orderConfirmation for subscriber 200": { + "2024-11-01T00:00:00+02:00": 58 + }, + "Admin Trial Expired": { + "2024-11-01T00:00:00+02:00": 6 + }, + "shippingUpdate for subscriber 111": { + "2024-11-01T00:00:00+02:00": 190 + }, + "paymentError for subscriber 38": { + "2024-11-01T00:00:00+02:00": 364 + }, + "patientWelcome for subscriber 4": { + "2024-11-01T00:00:00+02:00": 4980 + }, + "outForDelivery for subscriber 37": { + "2024-11-01T00:00:00+02:00": 15377 + }, + "delivered for subscriber 63": { + "2024-11-01T00:00:00+02:00": 6487 + }, + "supportMessage for subscriber 37": { + "2024-11-01T00:00:00+02:00": 20885 + }, + "delivered for subscriber 266": { + "2024-11-01T00:00:00+02:00": 328 + }, + "patientWelcome for subscriber 73": { + "2024-11-01T00:00:00+02:00": 17 + }, + "outForDelivery for subscriber 38": { + "2024-11-01T00:00:00+02:00": 1690 + }, + "orderConfirmation for subscriber 256": { + "2024-11-01T00:00:00+02:00": 105 + }, + "shippingConfirmation for subscriber 378": { + "2024-11-01T00:00:00+02:00": 35 + }, + "abandonedPostCheckout for subscriber 364": { + "2024-11-01T00:00:00+02:00": 10 + }, + "newPrescription for subscriber 53": { + "2024-11-01T00:00:00+02:00": 28 + }, + "Payment Error for subscriber 165": { + "2024-11-01T00:00:00+02:00": 114 + }, + "checkinRenewal for subscriber 38": { + "2024-11-01T00:00:00+02:00": 151 + }, + "newPrescription for subscriber 378": { + "2024-11-01T00:00:00+02:00": 10 + }, + "doctorMessage for subscriber 121": { + "2024-11-01T00:00:00+02:00": 13 + }, + "passwordReset for subscriber 200": { + "2024-11-01T00:00:00+02:00": 45 + }, + "doctorMessage for subscriber 440": { + "2024-11-01T00:00:00+02:00": 9 + }, + "shippingConfirmation for subscriber 266": { + "2024-11-01T00:00:00+02:00": 263 + }, + "shippingUpdate for subscriber 275": { + "2024-11-01T00:00:00+02:00": 444 + }, + "orderConfirmation for subscriber 73": { + "2024-11-01T00:00:00+02:00": 9 + }, + "patientWelcome for subscriber 384": { + "2024-11-01T00:00:00+02:00": 9 + }, + "abandonedCheckout for subscriber 522": { + "2024-11-01T00:00:00+02:00": 164 + }, + "Admin Chargebacks and Disputes": { + "2024-11-01T00:00:00+02:00": 250 + }, + "doctorMessage for subscriber 551": { + "2024-11-01T00:00:00+02:00": 17 + }, + "outForDelivery for subscriber 255": { + "2024-11-01T00:00:00+02:00": 273 + }, + "orderConfirmation for subscriber 37": { + "2024-11-01T00:00:00+02:00": 12878 + }, + "orderReceipt for subscriber 143": { + "2024-11-01T00:00:00+02:00": 27160 + }, + "abandonedCheckout for subscriber 9": { + "2024-11-01T00:00:00+02:00": 33 + }, + "followUpDue for subscriber 73": { + "2024-11-01T00:00:00+02:00": 9 + }, + "firstTimeShippingConfirmation for subscriber 255": { + "2024-11-01T00:00:00+02:00": 94 + }, + "followUpDue for subscriber 364": { + "2024-11-01T00:00:00+02:00": 61 + }, + "followUpPastDue for subscriber 349": { + "2024-11-01T00:00:00+02:00": 18 + }, + "followUpDue for subscriber 150": { + "2024-11-01T00:00:00+02:00": 9 + }, + "prescriptionChanged for subscriber 275": { + "2024-11-01T00:00:00+02:00": 35 + }, + "firstTimeOrderConfirmation for subscriber 38": { + "2024-11-01T00:00:00+02:00": 136 + }, + "patientMagicLink for subscriber 377": { + "2024-11-01T00:00:00+02:00": 9 + }, + "followUpDue for subscriber 190": { + "2024-11-01T00:00:00+02:00": 20 + }, + "shippingUpdate for subscriber 68": { + "2024-11-01T00:00:00+02:00": 86 + }, + "newPrescription for subscriber 364": { + "2024-11-01T00:00:00+02:00": 17 + }, + "newPrescription for subscriber 63": { + "2024-11-01T00:00:00+02:00": 3168 + }, + "orderConfirmation for subscriber 77": { + "2024-11-01T00:00:00+02:00": 209 + }, + "doctorMessage for subscriber 523": { + "2024-11-01T00:00:00+02:00": 112 + }, + "orderReceipt for subscriber 406": { + "2024-11-01T00:00:00+02:00": 117 + }, + "firstTimeOrderConfirmation for subscriber 551": { + "2024-11-01T00:00:00+02:00": 17 + }, + "doctorMessage for subscriber 266": { + "2024-11-01T00:00:00+02:00": 863 + }, + "passwordReset for subscriber 364": { + "2024-11-01T00:00:00+02:00": 27 + }, + "outForDelivery for subscriber 84": { + "2024-11-01T00:00:00+02:00": 1343 + }, + "shippingConfirmation for subscriber 455": { + "2024-11-01T00:00:00+02:00": 7 + }, + "firstTimeOrderConfirmation for subscriber 329": { + "2024-11-01T00:00:00+02:00": 52 + }, + "abandonedPostCheckout for subscriber 200": { + "2024-11-01T00:00:00+02:00": 48 + }, + "First Time Shipping Confirmation for subscriber 63": { + "2024-11-01T00:00:00+02:00": 1222 + }, + "doctorMessage for subscriber 604": { + "2024-11-01T00:00:00+02:00": 36 + }, + "supportMessage for subscriber 604": { + "2024-11-01T00:00:00+02:00": 9 + }, + "outForDelivery for subscriber 377": { + "2024-11-01T00:00:00+02:00": 70 + }, + "doctorMessage for subscriber 13": { + "2024-11-01T00:00:00+02:00": 11 + }, + "delivered for subscriber 68": { + "2024-11-01T00:00:00+02:00": 11 + }, + "orderReceipt for subscriber 68": { + "2024-11-01T00:00:00+02:00": 12 + }, + "doctorMessage for subscriber 200": { + "2024-11-01T00:00:00+02:00": 615 + }, + "firstTimeNewPrescription for subscriber 238": { + "2024-11-01T00:00:00+02:00": 6 + }, + "followUpDue for subscriber 266": { + "2024-11-01T00:00:00+02:00": 315 + }, + "newPrescription for subscriber 255": { + "2024-11-01T00:00:00+02:00": 70 + }, + "doctorMessage for subscriber 378": { + "2024-11-01T00:00:00+02:00": 147 + }, + "outForDelivery for subscriber 63": { + "2024-11-01T00:00:00+02:00": 6182 + }, + "orderReceipt for subscriber 604": { + "2024-11-01T00:00:00+02:00": 12 + }, + "shippingUpdate for subscriber 292": { + "2024-11-01T00:00:00+02:00": 9 + }, + "firstTimeOrderConfirmation for subscriber 452": { + "2024-11-01T00:00:00+02:00": 8 + }, + "firstTimeOrderConfirmation for subscriber 530": { + "2024-11-01T00:00:00+02:00": 24 + }, + "firstTimeOrderConfirmation for subscriber 364": { + "2024-11-01T00:00:00+02:00": 92 + }, + "patientMagicLink for subscriber 37": { + "2024-11-01T00:00:00+02:00": 2529 + }, + "shippingUpdate for subscriber 320": { + "2024-11-01T00:00:00+02:00": 266 + }, + "followUpDue for subscriber 238": { + "2024-11-01T00:00:00+02:00": 23 + }, + "abandonedPostCheckout for subscriber 84": { + "2024-11-01T00:00:00+02:00": 115 + }, + "followUpDue for subscriber 255": { + "2024-11-01T00:00:00+02:00": 378 + }, + "prescriptionChanged for subscriber 84": { + "2024-11-01T00:00:00+02:00": 846 + }, + "newPrescription for subscriber 384": { + "2024-11-01T00:00:00+02:00": 8 + }, + "firstTimeShippingConfirmation for subscriber 37": { + "2024-11-01T00:00:00+02:00": 3966 + }, + "patientMagicLink for subscriber 38": { + "2024-11-01T00:00:00+02:00": 99 + }, + "shippingConfirmation for subscriber 377": { + "2024-11-01T00:00:00+02:00": 44 + }, + "abandonedCheckout for subscriber 638": { + "2024-11-01T00:00:00+02:00": 7 + }, + "patientWelcome for subscriber 549": { + "2024-11-01T00:00:00+02:00": 48 + }, + "patientWelcome for subscriber 93": { + "2024-11-01T00:00:00+02:00": 373 + }, + "firstTimeNewPrescription for subscriber 604": { + "2024-11-01T00:00:00+02:00": 7 + }, + "delivered for subscriber 377": { + "2024-11-01T00:00:00+02:00": 74 + }, + "delivered for subscriber 364": { + "2024-11-01T00:00:00+02:00": 111 + }, + "shippingUpdate for subscriber 364": { + "2024-11-01T00:00:00+02:00": 1088 + }, + "orderReceipt for subscriber 190": { + "2024-11-01T00:00:00+02:00": 19 + }, + "firstTimeOrderConfirmation for subscriber 465": { + "2024-11-01T00:00:00+02:00": 20 + }, + "patientWelcome for subscriber 38": { + "2024-11-01T00:00:00+02:00": 437 + }, + "shippingConfirmation for subscriber 256": { + "2024-11-01T00:00:00+02:00": 160 + }, + "doctorMessage for subscriber 35": { + "2024-11-01T00:00:00+02:00": 17 + }, + "orderCanceled for subscriber 165": { + "2024-11-01T00:00:00+02:00": 310 + }, + "Shipping Update for subscriber 549": { + "2024-11-01T00:00:00+02:00": 59 + }, + "outForDelivery for subscriber 238": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Order Receipt for subscriber 542": { + "2024-11-01T00:00:00+02:00": 96 + }, + "First Time New Prescription for subscriber 165": { + "2024-11-01T00:00:00+02:00": 1871 + }, + "firstTimeOrderConfirmation for subscriber 37": { + "2024-11-01T00:00:00+02:00": 4364 + }, + "delivered for subscriber 275": { + "2024-11-01T00:00:00+02:00": 59 + }, + "delivered for subscriber 93": { + "2024-11-01T00:00:00+02:00": 19 + }, + "orderReceipt for subscriber 4": { + "2024-11-01T00:00:00+02:00": 2174 + }, + "orderReceipt for subscriber 377": { + "2024-11-01T00:00:00+02:00": 75 + }, + "Order Receipt": { + "2024-11-01T00:00:00+02:00": 122 + }, + "firstTimeShippingConfirmation for subscriber 452": { + "2024-11-01T00:00:00+02:00": 10 + }, + "shippingUpdate for subscriber 161": { + "2024-11-01T00:00:00+02:00": 45635 + }, + "Order Canceled": { + "2024-11-01T00:00:00+02:00": 555 + }, + "First Time New Prescription for subscriber 614": { + "2024-11-01T00:00:00+02:00": 14 + }, + "doctorMessage for subscriber 463": { + "2024-11-01T00:00:00+02:00": 6 + }, + "outForDelivery for subscriber 111": { + "2024-11-01T00:00:00+02:00": 17 + }, + "doctorMessage for subscriber 255": { + "2024-11-01T00:00:00+02:00": 786 + }, + "firstTimeShippingConfirmation for subscriber 428": { + "2024-11-01T00:00:00+02:00": 6 + }, + "doctorMessage for subscriber 522": { + "2024-11-01T00:00:00+02:00": 11 + }, + "followUpPastDue for subscriber 84": { + "2024-11-01T00:00:00+02:00": 987 + }, + "Admin New Order": { + "2024-11-01T00:00:00+02:00": 70995 + }, + "orderConfirmation for subscriber 4": { + "2024-11-01T00:00:00+02:00": 1379 + }, + "shippingUpdate for subscriber 349": { + "2024-11-01T00:00:00+02:00": 209 + }, + "supportMessage for subscriber 161": { + "2024-11-01T00:00:00+02:00": 2225 + }, + "orderReceipt for subscriber 349": { + "2024-11-01T00:00:00+02:00": 34 + }, + "doctorMessage for subscriber 93": { + "2024-11-01T00:00:00+02:00": 66 + }, + "prescriptionChanged for subscriber 53": { + "2024-11-01T00:00:00+02:00": 30 + }, + "abandonedCheckout for subscriber 63": { + "2024-11-01T00:00:00+02:00": 14187 + }, + "firstTimeShippingConfirmation for subscriber 604": { + "2024-11-01T00:00:00+02:00": 14 + }, + "doctorMessage for subscriber 111": { + "2024-11-01T00:00:00+02:00": 55 + }, + "First Time New Prescription for subscriber 542": { + "2024-11-01T00:00:00+02:00": 23 + }, + "orderReceipt for subscriber 165": { + "2024-11-01T00:00:00+02:00": 5421 + }, + "Out For Delivery for subscriber 542": { + "2024-11-01T00:00:00+02:00": 76 + }, + "abandonedPostCheckout for subscriber 165": { + "2024-11-01T00:00:00+02:00": 249 + }, + "firstTimeNewPrescription for subscriber 530": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Shipping Confirmation for subscriber 542": { + "2024-11-01T00:00:00+02:00": 68 + }, + "paymentError for subscriber 4": { + "2024-11-01T00:00:00+02:00": 76 + }, + "supportMessage for subscriber 73": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Prescription Changed": { + "2024-11-01T00:00:00+02:00": 3262 + }, + "supportMessage for subscriber 111": { + "2024-11-01T00:00:00+02:00": 47 + }, + "Delivered for subscriber 350": { + "2024-11-01T00:00:00+02:00": 6 + }, + "abandonedCheckout for subscriber 455": { + "2024-11-01T00:00:00+02:00": 9 + }, + "delivered for subscriber 13": { + "2024-11-01T00:00:00+02:00": 6 + }, + "firstTimeOrderConfirmation for subscriber 255": { + "2024-11-01T00:00:00+02:00": 50 + }, + "Shipping Confirmation": { + "2024-11-01T00:00:00+02:00": 34 + }, + "doctorMessage for subscriber 530": { + "2024-11-01T00:00:00+02:00": 57 + }, + "orderConfirmation for subscriber 93": { + "2024-11-01T00:00:00+02:00": 13 + }, + "followUpPastDue for subscriber 266": { + "2024-11-01T00:00:00+02:00": 261 + }, + "firstTimeShippingConfirmation for subscriber 4": { + "2024-11-01T00:00:00+02:00": 871 + }, + "patientWelcome for subscriber 256": { + "2024-11-01T00:00:00+02:00": 371 + }, + "Admin Webhook Disabled": { + "2024-11-01T00:00:00+02:00": 12 + }, + "orderConfirmation for subscriber 377": { + "2024-11-01T00:00:00+02:00": 22 + }, + "custom in app messages": { + "2024-11-01T00:00:00+02:00": 998 + }, + "supportMessage for subscriber 256": { + "2024-11-01T00:00:00+02:00": 83 + }, + "followUpDue for subscriber 320": { + "2024-11-01T00:00:00+02:00": 28 + }, + "patientMagicLink for subscriber 84": { + "2024-11-01T00:00:00+02:00": 388 + }, + "patientWelcome for subscriber 441": { + "2024-11-01T00:00:00+02:00": 345 + }, + "shippingUpdate for subscriber 329": { + "2024-11-01T00:00:00+02:00": 230 + }, + "passwordReset for subscriber 38": { + "2024-11-01T00:00:00+02:00": 132 + }, + "paymentError for subscriber 63": { + "2024-11-01T00:00:00+02:00": 160 + }, + "firstTimeOrderConfirmation for subscriber 161": { + "2024-11-01T00:00:00+02:00": 1647 + }, + "abandonedCheckout for subscriber 93": { + "2024-11-01T00:00:00+02:00": 363 + }, + "passwordReset for subscriber 161": { + "2024-11-01T00:00:00+02:00": 675 + }, + "abandonedCheckout for subscriber 143": { + "2024-11-01T00:00:00+02:00": 33744 + }, + "shippingConfirmation for subscriber 73": { + "2024-11-01T00:00:00+02:00": 9 + }, + "orderReceipt for subscriber 53": { + "2024-11-01T00:00:00+02:00": 61 + }, + "outForDelivery for subscriber 73": { + "2024-11-01T00:00:00+02:00": 12 + }, + "delivered for subscriber 255": { + "2024-11-01T00:00:00+02:00": 307 + }, + "delivered for subscriber 4": { + "2024-11-01T00:00:00+02:00": 1946 + }, + "firstTimeOrderConfirmation for subscriber 263": { + "2024-11-01T00:00:00+02:00": 19 + }, + "patientWelcome for subscriber 455": { + "2024-11-01T00:00:00+02:00": 6 + }, + "patientWelcome for subscriber 428": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Password Reset for subscriber 320": { + "2024-11-01T00:00:00+02:00": 6 + }, + "newPrescription for subscriber 150": { + "2024-11-01T00:00:00+02:00": 8 + }, + "orderReceipt for subscriber 263": { + "2024-11-01T00:00:00+02:00": 55 + }, + "abandonedCheckout for subscriber 37": { + "2024-11-01T00:00:00+02:00": 24464 + }, + "patientWelcome for subscriber 84": { + "2024-11-01T00:00:00+02:00": 5095 + }, + "abandonedPostCheckout for subscriber 37": { + "2024-11-01T00:00:00+02:00": 1137 + }, + "followUpPastDue for subscriber 320": { + "2024-11-01T00:00:00+02:00": 17 + }, + "delivered for subscriber 384": { + "2024-11-01T00:00:00+02:00": 12 + }, + "firstTimeOrderConfirmation for subscriber 4": { + "2024-11-01T00:00:00+02:00": 779 + }, + "firstTimeShippingConfirmation for subscriber 266": { + "2024-11-01T00:00:00+02:00": 267 + }, + "Shipping Update for subscriber 542": { + "2024-11-01T00:00:00+02:00": 632 + }, + "firstTimeOrderConfirmation for subscriber 121": { + "2024-11-01T00:00:00+02:00": 6 + }, + "patientWelcome for subscriber 263": { + "2024-11-01T00:00:00+02:00": 123 + }, + "passwordReset for subscriber 350": { + "2024-11-01T00:00:00+02:00": 8 + }, + "outForDelivery for subscriber 77": { + "2024-11-01T00:00:00+02:00": 276 + }, + "followUpDue for subscriber 217": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderConfirmation for subscriber 320": { + "2024-11-01T00:00:00+02:00": 20 + }, + "shippingUpdate for subscriber 440": { + "2024-11-01T00:00:00+02:00": 26 + }, + "orderCanceled for subscriber 364": { + "2024-11-01T00:00:00+02:00": 9 + }, + "abandonedCheckout for subscriber 542": { + "2024-11-01T00:00:00+02:00": 242 + }, + "orderConfirmation for subscriber 263": { + "2024-11-01T00:00:00+02:00": 35 + }, + "abandonedCheckout for subscriber 551": { + "2024-11-01T00:00:00+02:00": 66 + }, + "firstTimeOrderConfirmation for subscriber 378": { + "2024-11-01T00:00:00+02:00": 22 + }, + "patientWelcome for subscriber 614": { + "2024-11-01T00:00:00+02:00": 206 + }, + "doctorMessage for subscriber 84": { + "2024-11-01T00:00:00+02:00": 4000 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 13 + }, + "doctorMessage for subscriber 37": { + "2024-11-01T00:00:00+02:00": 39523 + }, + "supportMessage for subscriber 378": { + "2024-11-01T00:00:00+02:00": 6 + }, + "orderConfirmation for subscriber 143": { + "2024-11-01T00:00:00+02:00": 22621 + }, + "shippingConfirmation for subscriber 38": { + "2024-11-01T00:00:00+02:00": 1371 + }, + "doctorMessage for subscriber 455": { + "2024-11-01T00:00:00+02:00": 34 + }, + "orderConfirmation for subscriber 378": { + "2024-11-01T00:00:00+02:00": 23 + }, + "doctorMessage for subscriber 63": { + "2024-11-01T00:00:00+02:00": 15056 + }, + "passwordReset for subscriber 255": { + "2024-11-01T00:00:00+02:00": 62 + }, + "Admin New Prescription": { + "2024-11-01T00:00:00+02:00": 57071 + }, + "outForDelivery for subscriber 406": { + "2024-11-01T00:00:00+02:00": 81 + }, + "firstTimeOrderConfirmation for subscriber 604": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Out For Delivery for subscriber 364": { + "2024-11-01T00:00:00+02:00": 107 + }, + "outForDelivery for subscriber 93": { + "2024-11-01T00:00:00+02:00": 15 + }, + "patientMagicLink for subscriber 266": { + "2024-11-01T00:00:00+02:00": 65 + }, + "shippingUpdate for subscriber 455": { + "2024-11-01T00:00:00+02:00": 75 + }, + "newRefill for subscriber 37": { + "2024-11-01T00:00:00+02:00": 1896 + }, + "abandonedPostCheckout for subscriber 161": { + "2024-11-01T00:00:00+02:00": 411 + }, + "prescriptionChanged for subscriber 111": { + "2024-11-01T00:00:00+02:00": 14 + }, + "firstTimeShippingConfirmation for subscriber 542": { + "2024-11-01T00:00:00+02:00": 47 + }, + "firstTimeNewPrescription for subscriber 121": { + "2024-11-01T00:00:00+02:00": 6 + }, + "doctorMessage for subscriber 77": { + "2024-11-01T00:00:00+02:00": 818 + }, + "followUpPastDue for subscriber 364": { + "2024-11-01T00:00:00+02:00": 42 + }, + "doctorMessage for subscriber 350": { + "2024-11-01T00:00:00+02:00": 18 + }, + "doctorMessage for subscriber 329": { + "2024-11-01T00:00:00+02:00": 139 + }, + "orderReceipt for subscriber 549": { + "2024-11-01T00:00:00+02:00": 14 + }, + "shippingConfirmation for subscriber 63": { + "2024-11-01T00:00:00+02:00": 4864 + }, + "Support Message for subscriber 73": { + "2024-11-01T00:00:00+02:00": 26 + }, + "supportMessage for subscriber 121": { + "2024-11-01T00:00:00+02:00": 12 + }, + "outForDelivery for subscriber 455": { + "2024-11-01T00:00:00+02:00": 8 + }, + "newPrescription for subscriber 238": { + "2024-11-01T00:00:00+02:00": 14 + }, + "newRefill for subscriber 143": { + "2024-11-01T00:00:00+02:00": 682 + }, + "First Time New Prescription": { + "2024-11-01T00:00:00+02:00": 6063 + }, + "passwordReset for subscriber 465": { + "2024-11-01T00:00:00+02:00": 22 + }, + "patientWelcome for subscriber 77": { + "2024-11-01T00:00:00+02:00": 591 + }, + "orderReceipt for subscriber 200": { + "2024-11-01T00:00:00+02:00": 727 + }, + "orderReceipt for subscriber 455": { + "2024-11-01T00:00:00+02:00": 10 + }, + "patientWelcome for subscriber 266": { + "2024-11-01T00:00:00+02:00": 560 + }, + "Admin Refund": { + "2024-11-01T00:00:00+02:00": 4647 + }, + "patientWelcome for subscriber 523": { + "2024-11-01T00:00:00+02:00": 135 + }, + "orderReceipt for subscriber 364": { + "2024-11-01T00:00:00+02:00": 117 + }, + "orderReceipt for subscriber 614": { + "2024-11-01T00:00:00+02:00": 16 + }, + "supportMessage for subscriber 329": { + "2024-11-01T00:00:00+02:00": 236 + }, + "shippingConfirmation for subscriber 384": { + "2024-11-01T00:00:00+02:00": 11 + }, + "abandonedCheckout for subscriber 238": { + "2024-11-01T00:00:00+02:00": 17 + }, + "labRejected for subscriber 441": { + "2024-11-01T00:00:00+02:00": 6 + }, + "firstTimeNewPrescription for subscriber 377": { + "2024-11-01T00:00:00+02:00": 9 + }, + "firstTimeOrderConfirmation for subscriber 63": { + "2024-11-01T00:00:00+02:00": 2896 + }, + "patientMagicLink for subscriber 165": { + "2024-11-01T00:00:00+02:00": 624 + }, + "passwordReset for subscriber 63": { + "2024-11-01T00:00:00+02:00": 1106 + }, + "followUpDue for subscriber 161": { + "2024-11-01T00:00:00+02:00": 4692 + }, + "followUpPastDue for subscriber 256": { + "2024-11-01T00:00:00+02:00": 102 + }, + "doctorMessage for subscriber 349": { + "2024-11-01T00:00:00+02:00": 115 + }, + "abandonedCheckout for subscriber 452": { + "2024-11-01T00:00:00+02:00": 21 + }, + "doctorMessage for subscriber 4": { + "2024-11-01T00:00:00+02:00": 5190 + }, + "abandonedCheckout for subscriber 378": { + "2024-11-01T00:00:00+02:00": 147 + }, + "orderReceipt for subscriber 551": { + "2024-11-01T00:00:00+02:00": 8 + }, + "shippingConfirmation for subscriber 238": { + "2024-11-01T00:00:00+02:00": 14 + }, + "patientWelcome for subscriber 37": { + "2024-11-01T00:00:00+02:00": 17279 + }, + "shippingConfirmation for subscriber 84": { + "2024-11-01T00:00:00+02:00": 1374 + }, + "firstTimeShippingConfirmation for subscriber 77": { + "2024-11-01T00:00:00+02:00": 155 + }, + "abandonedPostCheckout for subscriber 523": { + "2024-11-01T00:00:00+02:00": 13 + }, + "followUpDue for subscriber 551": { + "2024-11-01T00:00:00+02:00": 7 + }, + "firstTimeShippingConfirmation for subscriber 161": { + "2024-11-01T00:00:00+02:00": 1566 + }, + "patientWelcome for subscriber 143": { + "2024-11-01T00:00:00+02:00": 18005 + }, + "outForDelivery for subscriber 161": { + "2024-11-01T00:00:00+02:00": 4983 + }, + "firstTimeOrderConfirmation for subscriber 143": { + "2024-11-01T00:00:00+02:00": 6900 + }, + "abandonedCheckout for subscriber 377": { + "2024-11-01T00:00:00+02:00": 83 + }, + "firstTimeOrderConfirmation for subscriber 441": { + "2024-11-01T00:00:00+02:00": 45 + }, + "shippingUpdate for subscriber 255": { + "2024-11-01T00:00:00+02:00": 2100 + }, + "Payment Error": { + "2024-11-01T00:00:00+02:00": 53 + }, + "followUpPastDue for subscriber 143": { + "2024-11-01T00:00:00+02:00": 17499 + }, + "firstTimeShippingConfirmation for subscriber 63": { + "2024-11-01T00:00:00+02:00": 1002 + }, + "patientMagicLink for subscriber 255": { + "2024-11-01T00:00:00+02:00": 76 + }, + "abandonedPostCheckout for subscriber 38": { + "2024-11-01T00:00:00+02:00": 16 + }, + "abandonedCheckout for subscriber 84": { + "2024-11-01T00:00:00+02:00": 6527 + }, + "passwordReset for subscriber 406": { + "2024-11-01T00:00:00+02:00": 20 + }, + "delivered for subscriber 523": { + "2024-11-01T00:00:00+02:00": 12 + }, + "orderConfirmation for subscriber 275": { + "2024-11-01T00:00:00+02:00": 64 + }, + "abandonedCheckout for subscriber 53": { + "2024-11-01T00:00:00+02:00": 31 + }, + "newRefill for subscriber 263": { + "2024-11-01T00:00:00+02:00": 8 + }, + "New Prescription": { + "2024-11-01T00:00:00+02:00": 862 + }, + "orderConfirmation for subscriber 165": { + "2024-11-01T00:00:00+02:00": 2670 + }, + "newPrescription for subscriber 377": { + "2024-11-01T00:00:00+02:00": 8 + }, + "patientWelcome for subscriber 238": { + "2024-11-01T00:00:00+02:00": 11 + }, + "shippingConfirmation for subscriber 161": { + "2024-11-01T00:00:00+02:00": 6338 + }, + "shippingUpdate for subscriber 63": { + "2024-11-01T00:00:00+02:00": 62232 + }, + "shippingConfirmation for subscriber 4": { + "2024-11-01T00:00:00+02:00": 2368 + }, + "firstTimeNewPrescription for subscriber 38": { + "2024-11-01T00:00:00+02:00": 170 + }, + "patientWelcome for subscriber 165": { + "2024-11-01T00:00:00+02:00": 7015 + }, + "orderConfirmation for subscriber 266": { + "2024-11-01T00:00:00+02:00": 180 + }, + "abandonedCheckout for subscriber 441": { + "2024-11-01T00:00:00+02:00": 327 + }, + "doctorMessage for subscriber 292": { + "2024-11-01T00:00:00+02:00": 9 + }, + "passwordReset for subscriber 165": { + "2024-11-01T00:00:00+02:00": 356 + }, + "patientWelcome for subscriber 217": { + "2024-11-01T00:00:00+02:00": 32 + }, + "shippingConfirmation for subscriber 53": { + "2024-11-01T00:00:00+02:00": 52 + }, + "passwordReset for subscriber 329": { + "2024-11-01T00:00:00+02:00": 10 + }, + "firstTimeNewPrescription for subscriber 523": { + "2024-11-01T00:00:00+02:00": 10 + }, + "passwordReset for subscriber 530": { + "2024-11-01T00:00:00+02:00": 14 + }, + "firstTimeOrderConfirmation for subscriber 93": { + "2024-11-01T00:00:00+02:00": 16 + }, + "passwordReset for subscriber 377": { + "2024-11-01T00:00:00+02:00": 7 + }, + "abandonedPostCheckout for subscriber 4": { + "2024-11-01T00:00:00+02:00": 149 + }, + "delivered for subscriber 542": { + "2024-11-01T00:00:00+02:00": 81 + }, + "orderReceipt for subscriber 63": { + "2024-11-01T00:00:00+02:00": 7254 + }, + "abandonedCheckout for subscriber 213": { + "2024-11-01T00:00:00+02:00": 6 + }, + "delivered for subscriber 604": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderReceipt for subscriber 256": { + "2024-11-01T00:00:00+02:00": 205 + }, + "newPrescription for subscriber 77": { + "2024-11-01T00:00:00+02:00": 59 + }, + "shippingUpdate for subscriber 37": { + "2024-11-01T00:00:00+02:00": 157949 + }, + "followUpPastDue for subscriber 329": { + "2024-11-01T00:00:00+02:00": 6 + }, + "orderConfirmation for subscriber 217": { + "2024-11-01T00:00:00+02:00": 6 + }, + "shippingConfirmation for subscriber 190": { + "2024-11-01T00:00:00+02:00": 18 + }, + "firstTimeShippingConfirmation for subscriber 143": { + "2024-11-01T00:00:00+02:00": 7523 + }, + "shippingUpdate for subscriber 530": { + "2024-11-01T00:00:00+02:00": 134 + }, + "outForDelivery for subscriber 523": { + "2024-11-01T00:00:00+02:00": 11 + }, + "orderConfirmation for subscriber 542": { + "2024-11-01T00:00:00+02:00": 58 + }, + "followUpDue for subscriber 378": { + "2024-11-01T00:00:00+02:00": 35 + }, + "Patient Welcome for subscriber 350": { + "2024-11-01T00:00:00+02:00": 151 + }, + "abandonedPostCheckout for subscriber 256": { + "2024-11-01T00:00:00+02:00": 24 + }, + "outForDelivery for subscriber 190": { + "2024-11-01T00:00:00+02:00": 16 + }, + "supportMessage for subscriber 406": { + "2024-11-01T00:00:00+02:00": 6 + }, + "orderReceipt for subscriber 266": { + "2024-11-01T00:00:00+02:00": 319 + }, + "doctorMessage for subscriber 377": { + "2024-11-01T00:00:00+02:00": 185 + }, + "followUpDue for subscriber 256": { + "2024-11-01T00:00:00+02:00": 124 + }, + "Out For Delivery": { + "2024-11-01T00:00:00+02:00": 1979 + }, + "supportMessage for subscriber 377": { + "2024-11-01T00:00:00+02:00": 45 + }, + "orderReceipt for subscriber 73": { + "2024-11-01T00:00:00+02:00": 16 + }, + "shippingConfirmation for subscriber 200": { + "2024-11-01T00:00:00+02:00": 426 + }, + "prescriptionChanged for subscriber 93": { + "2024-11-01T00:00:00+02:00": 10 + }, + "firstTimeOrderConfirmation for subscriber 73": { + "2024-11-01T00:00:00+02:00": 8 + }, + "shippingUpdate for subscriber 77": { + "2024-11-01T00:00:00+02:00": 2105 + }, + "followUpDue for subscriber 329": { + "2024-11-01T00:00:00+02:00": 11 + }, + "supportMessage for subscriber 349": { + "2024-11-01T00:00:00+02:00": 19 + }, + "shippingUpdate for subscriber 93": { + "2024-11-01T00:00:00+02:00": 161 + }, + "doctorMessage for subscriber 384": { + "2024-11-01T00:00:00+02:00": 28 + }, + "doctorMessage for subscriber 465": { + "2024-11-01T00:00:00+02:00": 45 + }, + "abandonedCheckout for subscriber 523": { + "2024-11-01T00:00:00+02:00": 305 + }, + "followUpDue for subscriber 37": { + "2024-11-01T00:00:00+02:00": 11739 + }, + "patientMagicLink for subscriber 441": { + "2024-11-01T00:00:00+02:00": 10 + }, + "shippingUpdate for subscriber 238": { + "2024-11-01T00:00:00+02:00": 160 + }, + "patientMagicLink for subscriber 329": { + "2024-11-01T00:00:00+02:00": 16 + }, + "shippingConfirmation for subscriber 111": { + "2024-11-01T00:00:00+02:00": 28 + }, + "followUpDue for subscriber 143": { + "2024-11-01T00:00:00+02:00": 18778 + }, + "Admin Patient Message": { + "2024-11-01T00:00:00+02:00": 47000 + }, + "New Waitlist Waterfall": { + "2024-11-01T00:00:00+02:00": 181 + }, + "patientWelcome for subscriber 9": { + "2024-11-01T00:00:00+02:00": 31 + }, + "orderReceipt for subscriber 428": { + "2024-11-01T00:00:00+02:00": 9 + }, + "newPrescription for subscriber 143": { + "2024-11-01T00:00:00+02:00": 19642 + }, + "abandonedCheckout for subscriber 165": { + "2024-11-01T00:00:00+02:00": 7801 + }, + "newPrescription for subscriber 161": { + "2024-11-01T00:00:00+02:00": 2312 + }, + "Support Message": { + "2024-11-01T00:00:00+02:00": 164 + }, + "delivered for subscriber 161": { + "2024-11-01T00:00:00+02:00": 5709 + }, + "orderConfirmation for subscriber 384": { + "2024-11-01T00:00:00+02:00": 9 + }, + "shippingConfirmation for subscriber 364": { + "2024-11-01T00:00:00+02:00": 43 + }, + "firstTimeNewPrescription for subscriber 84": { + "2024-11-01T00:00:00+02:00": 144 + }, + "orderConfirmation for subscriber 161": { + "2024-11-01T00:00:00+02:00": 4478 + }, + "Admin Dispute Due Soon": { + "2024-11-01T00:00:00+02:00": 619 + }, + "followUpDue for subscriber 377": { + "2024-11-01T00:00:00+02:00": 29 + }, + "firstTimeNewPrescription for subscriber 256": { + "2024-11-01T00:00:00+02:00": 92 + }, + "Treatment Active": { + "2024-11-01T00:00:00+02:00": 4441 + }, + "shippingUpdate for subscriber 406": { + "2024-11-01T00:00:00+02:00": 1195 + }, + "patientWelcome for subscriber 68": { + "2024-11-01T00:00:00+02:00": 13 + }, + "abandonedCheckout for subscriber 13": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderCanceled for subscriber 84": { + "2024-11-01T00:00:00+02:00": 158 + }, + "prescriptionChanged for subscriber 378": { + "2024-11-01T00:00:00+02:00": 31 + }, + "delivered for subscriber 200": { + "2024-11-01T00:00:00+02:00": 611 + }, + "delivered for subscriber 530": { + "2024-11-01T00:00:00+02:00": 15 + }, + "shippingConfirmation for subscriber 275": { + "2024-11-01T00:00:00+02:00": 93 + }, + "delivered for subscriber 37": { + "2024-11-01T00:00:00+02:00": 16443 + }, + "outForDelivery for subscriber 441": { + "2024-11-01T00:00:00+02:00": 43 + }, + "outForDelivery for subscriber 428": { + "2024-11-01T00:00:00+02:00": 6 + }, + "passwordReset for subscriber 143": { + "2024-11-01T00:00:00+02:00": 3017 + }, + "shippingConfirmation for subscriber 165": { + "2024-11-01T00:00:00+02:00": 2936 + }, + "Order Receipt for subscriber 350": { + "2024-11-01T00:00:00+02:00": 6 + }, + "firstTimeOrderConfirmation for subscriber 350": { + "2024-11-01T00:00:00+02:00": 11 + }, + "patientWelcome for subscriber 53": { + "2024-11-01T00:00:00+02:00": 13 + }, + "delivered for subscriber 329": { + "2024-11-01T00:00:00+02:00": 37 + }, + "patientMagicLink for subscriber 465": { + "2024-11-01T00:00:00+02:00": 17 + }, + "orderReceipt for subscriber 35": { + "2024-11-01T00:00:00+02:00": 13 + }, + "orderCanceled for subscriber 266": { + "2024-11-01T00:00:00+02:00": 27 + }, + "newPrescription for subscriber 68": { + "2024-11-01T00:00:00+02:00": 8 + }, + "outForDelivery for subscriber 275": { + "2024-11-01T00:00:00+02:00": 56 + }, + "abandonedCheckout for subscriber 428": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Doctor Message for subscriber 452": { + "2024-11-01T00:00:00+02:00": 17 + }, + "patientWelcome for subscriber 542": { + "2024-11-01T00:00:00+02:00": 224 + }, + "firstTimeShippingConfirmation for subscriber 38": { + "2024-11-01T00:00:00+02:00": 207 + }, + "doctorMessage for subscriber 68": { + "2024-11-01T00:00:00+02:00": 29 + }, + "patientWelcome for subscriber 522": { + "2024-11-01T00:00:00+02:00": 170 + }, + "firstTimeOrderConfirmation for subscriber 77": { + "2024-11-01T00:00:00+02:00": 103 + }, + "Doctor Message for subscriber 320": { + "2024-11-01T00:00:00+02:00": 103 + }, + "followUpPastDue for subscriber 238": { + "2024-11-01T00:00:00+02:00": 20 + }, + "followUpDue for subscriber 4": { + "2024-11-01T00:00:00+02:00": 1598 + }, + "abandonedCheckout for subscriber 73": { + "2024-11-01T00:00:00+02:00": 42 + }, + "firstTimeOrderConfirmation for subscriber 349": { + "2024-11-01T00:00:00+02:00": 21 + }, + "firstTimeNewPrescription for subscriber 266": { + "2024-11-01T00:00:00+02:00": 29 + }, + "firstTimeOrderConfirmation for subscriber 165": { + "2024-11-01T00:00:00+02:00": 2440 + }, + "supportMessage for subscriber 266": { + "2024-11-01T00:00:00+02:00": 87 + }, + "supportMessage for subscriber 63": { + "2024-11-01T00:00:00+02:00": 4478 + }, + "newPrescription for subscriber 266": { + "2024-11-01T00:00:00+02:00": 69 + }, + "outForDelivery for subscriber 266": { + "2024-11-01T00:00:00+02:00": 311 + }, + "orderReceipt for subscriber 121": { + "2024-11-01T00:00:00+02:00": 7 + }, + "supportMessage for subscriber 310": { + "2024-11-01T00:00:00+02:00": 11 + }, + "orderConfirmation for subscriber 406": { + "2024-11-01T00:00:00+02:00": 7 + }, + "patientWelcome for subscriber 329": { + "2024-11-01T00:00:00+02:00": 922 + }, + "outForDelivery for subscriber 530": { + "2024-11-01T00:00:00+02:00": 13 + }, + "followUpPastDue for subscriber 165": { + "2024-11-01T00:00:00+02:00": 2491 + }, + "doctorMessage for subscriber 53": { + "2024-11-01T00:00:00+02:00": 186 + }, + "newPrescription for subscriber 190": { + "2024-11-01T00:00:00+02:00": 17 + }, + "New Refill": { + "2024-11-01T00:00:00+02:00": 450 + }, + "shippingConfirmation for subscriber 406": { + "2024-11-01T00:00:00+02:00": 54 + }, + "passwordReset for subscriber 256": { + "2024-11-01T00:00:00+02:00": 36 + }, + "shippingUpdate for subscriber 190": { + "2024-11-01T00:00:00+02:00": 154 + }, + "doctorMessage for subscriber 150": { + "2024-11-01T00:00:00+02:00": 32 + }, + "abandonedPostCheckout for subscriber 542": { + "2024-11-01T00:00:00+02:00": 14 + }, + "outForDelivery for subscriber 465": { + "2024-11-01T00:00:00+02:00": 7 + }, + "Follow Up Past Due": { + "2024-11-01T00:00:00+02:00": 1477 + }, + "passwordReset for subscriber 441": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderConfirmation for subscriber 364": { + "2024-11-01T00:00:00+02:00": 31 + }, + "prescriptionChanged for subscriber 37": { + "2024-11-01T00:00:00+02:00": 446 + }, + "abandonedPostCheckout for subscriber 63": { + "2024-11-01T00:00:00+02:00": 531 + }, + "prescriptionChanged for subscriber 377": { + "2024-11-01T00:00:00+02:00": 54 + }, + "orderCanceled for subscriber 37": { + "2024-11-01T00:00:00+02:00": 1258 + }, + "supportMessage for subscriber 614": { + "2024-11-01T00:00:00+02:00": 31 + }, + "Admin Pharmacy Update": { + "2024-11-01T00:00:00+02:00": 60 + }, + "Shipping Update for subscriber 121": { + "2024-11-01T00:00:00+02:00": 35 + }, + "doctorMessage for subscriber 263": { + "2024-11-01T00:00:00+02:00": 119 + }, + "followUpPastDue for subscriber 275": { + "2024-11-01T00:00:00+02:00": 63 + }, + "shippingUpdate for subscriber 378": { + "2024-11-01T00:00:00+02:00": 268 + }, + "abandonedCheckout for subscriber 320": { + "2024-11-01T00:00:00+02:00": 354 + }, + "shippingUpdate for subscriber 465": { + "2024-11-01T00:00:00+02:00": 54 + }, + "shippingUpdate for subscriber 256": { + "2024-11-01T00:00:00+02:00": 2068 + }, + "abandonedCheckout for subscriber 256": { + "2024-11-01T00:00:00+02:00": 387 + }, + "supportMessage for subscriber 275": { + "2024-11-01T00:00:00+02:00": 9 + }, + "followUpPastDue for subscriber 63": { + "2024-11-01T00:00:00+02:00": 2476 + }, + "prescriptionChanged for subscriber 256": { + "2024-11-01T00:00:00+02:00": 30 + }, + "prescriptionChanged for subscriber 549": { + "2024-11-01T00:00:00+02:00": 10 + }, + "supportMessage for subscriber 68": { + "2024-11-01T00:00:00+02:00": 33 + }, + "orderReceipt for subscriber 255": { + "2024-11-01T00:00:00+02:00": 310 + }, + "followUpDue for subscriber 63": { + "2024-11-01T00:00:00+02:00": 3336 + }, + "abandonedCheckout for subscriber 364": { + "2024-11-01T00:00:00+02:00": 405 + }, + "abandonedCheckout for subscriber 465": { + "2024-11-01T00:00:00+02:00": 627 + }, + "shippingUpdate for subscriber 38": { + "2024-11-01T00:00:00+02:00": 21972 + }, + "followUpDue for subscriber 275": { + "2024-11-01T00:00:00+02:00": 71 + }, + "Abandoned Post Checkout for subscriber 320": { + "2024-11-01T00:00:00+02:00": 9 + }, + "orderConfirmation for subscriber 9": { + "2024-11-01T00:00:00+02:00": 8 + }, + "firstTimeShippingConfirmation for subscriber 238": { + "2024-11-01T00:00:00+02:00": 6 + }, + "doctorMessage for subscriber 143": { + "2024-11-01T00:00:00+02:00": 75094 + }, + "firstTimeShippingConfirmation for subscriber 349": { + "2024-11-01T00:00:00+02:00": 33 + }, + "Out For Delivery for subscriber 549": { + "2024-11-01T00:00:00+02:00": 7 + }, + "firstTimeShippingConfirmation for subscriber 320": { + "2024-11-01T00:00:00+02:00": 15 + }, + "patientWelcome for subscriber 604": { + "2024-11-01T00:00:00+02:00": 30 + }, + "followUpDue for subscriber 263": { + "2024-11-01T00:00:00+02:00": 36 + }, + "patientMagicLink for subscriber 406": { + "2024-11-01T00:00:00+02:00": 19 + }, + "newPrescription for subscriber 542": { + "2024-11-01T00:00:00+02:00": 28 + }, + "firstTimeShippingConfirmation for subscriber 256": { + "2024-11-01T00:00:00+02:00": 152 + }, + "firstTimeOrderConfirmation for subscriber 200": { + "2024-11-01T00:00:00+02:00": 256 + }, + "supportMessage for subscriber 190": { + "2024-11-01T00:00:00+02:00": 10 + }, + "firstTimeNewPrescription for subscriber 77": { + "2024-11-01T00:00:00+02:00": 12 + }, + "followUpDue for subscriber 542": { + "2024-11-01T00:00:00+02:00": 78 + }, + "outForDelivery for subscriber 53": { + "2024-11-01T00:00:00+02:00": 32 + }, + "patientWelcome for subscriber 465": { + "2024-11-01T00:00:00+02:00": 599 + }, + "patientMagicLink for subscriber 53": { + "2024-11-01T00:00:00+02:00": 12 + }, + "prescriptionChanged for subscriber 364": { + "2024-11-01T00:00:00+02:00": 52 + }, + "Out For Delivery for subscriber 350": { + "2024-11-01T00:00:00+02:00": 6 + }, + "abandonedCheckout for subscriber 263": { + "2024-11-01T00:00:00+02:00": 125 + }, + "patientMagicLink for subscriber 523": { + "2024-11-01T00:00:00+02:00": 10 + }, + "New Prescription for subscriber 73": { + "2024-11-01T00:00:00+02:00": 6 + }, + "followUpPastDue for subscriber 378": { + "2024-11-01T00:00:00+02:00": 22 + }, + "orderCanceled for subscriber 349": { + "2024-11-01T00:00:00+02:00": 10 + }, + "orderCanceled for subscriber 143": { + "2024-11-01T00:00:00+02:00": 3748 + }, + "abandonedCheckout for subscriber 349": { + "2024-11-01T00:00:00+02:00": 160 + }, + "Delivered for subscriber 320": { + "2024-11-01T00:00:00+02:00": 30 + }, + "firstTimeOrderConfirmation for subscriber 523": { + "2024-11-01T00:00:00+02:00": 48 + }, + "followUpDue for subscriber 77": { + "2024-11-01T00:00:00+02:00": 201 + }, + "firstTimeNewPrescription for subscriber 143": { + "2024-11-01T00:00:00+02:00": 5727 + }, + "abandonedCheckout for subscriber 415": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Prescription Changed for subscriber 165": { + "2024-11-01T00:00:00+02:00": 677 + }, + "outForDelivery for subscriber 378": { + "2024-11-01T00:00:00+02:00": 29 + }, + "orderConfirmation for subscriber 349": { + "2024-11-01T00:00:00+02:00": 17 + }, + "abandonedPostCheckout for subscriber 143": { + "2024-11-01T00:00:00+02:00": 217 + }, + "doctorMessage for subscriber 190": { + "2024-11-01T00:00:00+02:00": 53 + }, + "shippingUpdate for subscriber 551": { + "2024-11-01T00:00:00+02:00": 53 + }, + "outForDelivery for subscriber 329": { + "2024-11-01T00:00:00+02:00": 36 + }, + "followUpDue for subscriber 53": { + "2024-11-01T00:00:00+02:00": 74 + }, + "patientWelcome for subscriber 452": { + "2024-11-01T00:00:00+02:00": 24 + }, + "doctorMessage for subscriber 165": { + "2024-11-01T00:00:00+02:00": 11471 + }, + "shippingConfirmation for subscriber 93": { + "2024-11-01T00:00:00+02:00": 18 + }, + "delivered for subscriber 84": { + "2024-11-01T00:00:00+02:00": 1414 + }, + "shippingUpdate for subscriber 13": { + "2024-11-01T00:00:00+02:00": 46 + }, + "abandonedCheckout for subscriber 406": { + "2024-11-01T00:00:00+02:00": 182 + }, + "prescriptionChanged for subscriber 465": { + "2024-11-01T00:00:00+02:00": 6 + }, + "prescriptionChanged for subscriber 63": { + "2024-11-01T00:00:00+02:00": 83 + }, + "New Refill for subscriber 165": { + "2024-11-01T00:00:00+02:00": 707 + }, + "outForDelivery for subscriber 143": { + "2024-11-01T00:00:00+02:00": 17140 + }, + "passwordReset for subscriber 266": { + "2024-11-01T00:00:00+02:00": 95 + }, + "doctorMessage for subscriber 406": { + "2024-11-01T00:00:00+02:00": 231 + }, + "orderCanceled for subscriber 523": { + "2024-11-01T00:00:00+02:00": 15 + }, + "orderConfirmation for subscriber 523": { + "2024-11-01T00:00:00+02:00": 8 + }, + "firstTimeNewPrescription for subscriber 255": { + "2024-11-01T00:00:00+02:00": 7 + }, + "passwordReset for subscriber 275": { + "2024-11-01T00:00:00+02:00": 9 + }, + "First Time Shipping Confirmation for subscriber 614": { + "2024-11-01T00:00:00+02:00": 11 + }, + "orderConfirmation for subscriber 63": { + "2024-11-01T00:00:00+02:00": 3430 + }, + "abandonedCheckout for subscriber 38": { + "2024-11-01T00:00:00+02:00": 379 + }, + "delivered for subscriber 217": { + "2024-11-01T00:00:00+02:00": 11 + }, + "abandonedCheckout for subscriber 200": { + "2024-11-01T00:00:00+02:00": 782 + }, + "orderReceipt for subscriber 84": { + "2024-11-01T00:00:00+02:00": 1502 + }, + "shippingUpdate for subscriber 522": { + "2024-11-01T00:00:00+02:00": 17 + }, + "delivered for subscriber 428": { + "2024-11-01T00:00:00+02:00": 6 + }, + "orderReceipt for subscriber 465": { + "2024-11-01T00:00:00+02:00": 11 + }, + "supportMessage for subscriber 530": { + "2024-11-01T00:00:00+02:00": 35 + }, + "outForDelivery for subscriber 349": { + "2024-11-01T00:00:00+02:00": 32 + }, + "orderReceipt for subscriber 217": { + "2024-11-01T00:00:00+02:00": 11 + }, + "doctorMessage for subscriber 364": { + "2024-11-01T00:00:00+02:00": 362 + }, + "followUpPastDue for subscriber 37": { + "2024-11-01T00:00:00+02:00": 11015 + }, + "shippingConfirmation for subscriber 349": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Password Reset for subscriber 542": { + "2024-11-01T00:00:00+02:00": 20 + }, + "patientMagicLink for subscriber 200": { + "2024-11-01T00:00:00+02:00": 52 + }, + "firstTimeOrderConfirmation for subscriber 266": { + "2024-11-01T00:00:00+02:00": 154 + } + } + }, + "656b003c666d47dc7d25648c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9002 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9002 + }, + "dailyWorkoutNotification": { + "2024-11-01T00:00:00+02:00": 8950 + }, + "DayMessagesAuto": { + "2024-11-01T00:00:00+02:00": 52 + } + } + }, + "6448e3efe2067a03ba33cbb7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4431 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4431 + }, + "fcm-task-scheduled-msg-stage": { + "2024-11-01T00:00:00+02:00": 4431 + } + } + }, + "637daec62610c873786139a1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3821 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3821 + }, + "sales_tax_monthly_reminder": { + "2024-11-01T00:00:00+02:00": 154 + }, + "ACCOUNTING_FIRM_ASSIGNED_TO_CORPORATION": { + "2024-11-01T00:00:00+02:00": 32 + }, + "ACCOUNTING_FIRM_ADDED_TO_COMMENDA": { + "2024-11-01T00:00:00+02:00": 24 + }, + "USER_ADDED_TO_COMPANY": { + "2024-11-01T00:00:00+02:00": 32 + }, + "US_INCORPORATION_COMPLETION": { + "2024-11-01T00:00:00+02:00": 8 + }, + "BACKEND_NOTIFICATION": { + "2024-11-01T00:00:00+02:00": 1953 + }, + "US_INCORPORATION_FILING": { + "2024-11-01T00:00:00+02:00": 9 + }, + "THREADS_DIGEST_NOTIFICATION": { + "2024-11-01T00:00:00+02:00": 219 + }, + "REVIEW_COMPLIANCE_CALENDAR_MEETING": { + "2024-11-01T00:00:00+02:00": 1337 + }, + "GENERATED_SECURE_INFORMATION_REQUEST": { + "2024-11-01T00:00:00+02:00": 39 + } + } + }, + "64ef9990faeddba41ef3caae": { + "$overall": { + "2024-11-01T00:00:00+02:00": 669 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 669 + }, + "notifica-fatura-fechada": { + "2024-11-01T00:00:00+02:00": 121 + }, + "Notifica Proposta Pendente de Aprovação": { + "2024-11-01T00:00:00+02:00": 312 + }, + "Notifica transação efetivada": { + "2024-11-01T00:00:00+02:00": 236 + } + } + }, + "63b85858b775d8ef0ed805cb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22995 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22995 + }, + "Org Member Invitation": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Live Chat Assigned": { + "2024-11-01T00:00:00+02:00": 22975 + } + } + }, + "661541fa6df43c247a0a31f9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1234 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1234 + }, + "Task Assigned": { + "2024-11-01T00:00:00+02:00": 1033 + }, + "Thread Assigned": { + "2024-11-01T00:00:00+02:00": 201 + } + } + }, + "651d2708e1b82d64b37fb064": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1733 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1733 + }, + "Scheduled event report generated": { + "2024-11-01T00:00:00+02:00": 15 + }, + "Eunice Monitor": { + "2024-11-01T00:00:00+02:00": 1718 + } + } + }, + "650002893cc619d36e43a166": { + "$overall": { + "2024-11-01T00:00:00+02:00": 524 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 524 + }, + "push notification": { + "2024-11-01T00:00:00+02:00": 524 + } + } + }, + "67219003d36466abaeb1f995": { + "$overall": { + "2024-11-01T00:00:00+02:00": 396 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 396 + }, + "crm-notification": { + "2024-11-01T00:00:00+02:00": 396 + } + } + }, + "6634cbe4612e6f34a400b05e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 510 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 510 + }, + "Unknown reports": { + "2024-11-01T00:00:00+02:00": 102 + }, + "Asset Liked": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Request Documentation": { + "2024-11-01T00:00:00+02:00": 72 + }, + "View Updated": { + "2024-11-01T00:00:00+02:00": 329 + } + } + }, + "66ce471dcf609b1343289560": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16686 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16686 + }, + "welcome-workflow": { + "2024-11-01T00:00:00+02:00": 16193 + }, + "referral-reward": { + "2024-11-01T00:00:00+02:00": 493 + } + } + }, + "6321e40f1a3ff48f5712daa8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26750 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26750 + }, + "order-status-change-alert": { + "2024-11-01T00:00:00+02:00": 26750 + } + } + }, + "64b703eb90b5785d4734577a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 661 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 661 + }, + "Order - Approval Required - Reseller": { + "2024-11-01T00:00:00+02:00": 67 + }, + "Order - failed": { + "2024-11-01T00:00:00+02:00": 72 + }, + "Helpdesk - Unmapped organization": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Order - New organization order": { + "2024-11-01T00:00:00+02:00": 29 + }, + "Provisioning - Reseller User Welcome Email": { + "2024-11-01T00:00:00+02:00": 170 + }, + "Order - Rejected": { + "2024-11-01T00:00:00+02:00": 15 + }, + "License - License-removed-in-app": { + "2024-11-01T00:00:00+02:00": 36 + }, + "Order - Completed": { + "2024-11-01T00:00:00+02:00": 68 + }, + "Licenses - License-assigned-in-app": { + "2024-11-01T00:00:00+02:00": 16 + }, + "Users - Organization User Welcome Email": { + "2024-11-01T00:00:00+02:00": 164 + } + } + }, + "672e2335a197476669200759": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10753 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10753 + }, + "task-assignment": { + "2024-11-01T00:00:00+02:00": 481 + }, + "org-user-digest": { + "2024-11-01T00:00:00+02:00": 10270 + } + } + }, + "636975131fbb836889d6f696": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6804 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6804 + }, + "Subscription Receipt (post-booking)": { + "2024-11-01T00:00:00+02:00": 462 + }, + "SMS": { + "2024-11-01T00:00:00+02:00": 47 + }, + "Subscription Price Change": { + "2024-11-01T00:00:00+02:00": 197 + }, + "(Chat-API) Send SMS from Support": { + "2024-11-01T00:00:00+02:00": 1242 + }, + "Send SMS to Student": { + "2024-11-01T00:00:00+02:00": 1664 + }, + "Send SMS to Coach": { + "2024-11-01T00:00:00+02:00": 2162 + }, + "Subscription Canceled": { + "2024-11-01T00:00:00+02:00": 320 + }, + "emailReceipt (post-booking)": { + "2024-11-01T00:00:00+02:00": 702 + } + } + }, + "66f0dd46cf609b13436885f5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 411 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 411 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 411 + } + } + }, + "64eda93c14b8a3ace6f4c5e9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12665 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12665 + }, + "Offer Rejected": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Offer Accepted": { + "2024-11-01T00:00:00+02:00": 218 + }, + "Project Photo Added": { + "2024-11-01T00:00:00+02:00": 9686 + }, + "Task Created": { + "2024-11-01T00:00:00+02:00": 161 + }, + "Offer Deadline": { + "2024-11-01T00:00:00+02:00": 24 + }, + "Create new project post": { + "2024-11-01T00:00:00+02:00": 194 + }, + "Task Overdue": { + "2024-11-01T00:00:00+02:00": 221 + }, + "Task Photo Added": { + "2024-11-01T00:00:00+02:00": 1603 + }, + "Bills Created": { + "2024-11-01T00:00:00+02:00": 448 + }, + "absence approved": { + "2024-11-01T00:00:00+02:00": 6 + }, + "Director Report Review": { + "2024-11-01T00:00:00+02:00": 77 + } + } + }, + "671dcbd5fb21db27364e8179": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1339 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1339 + }, + "in-app-notification-workflow": { + "2024-11-01T00:00:00+02:00": 1338 + } + } + }, + "65453e2c44cca773bdf1cdd7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 552 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 552 + }, + "Account Activation": { + "2024-11-01T00:00:00+02:00": 552 + } + } + }, + "647a49083a4ec8a5997fb67c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 680 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 680 + }, + "AddUserAdmin": { + "2024-11-01T00:00:00+02:00": 259 + }, + "violatornotification": { + "2024-11-01T00:00:00+02:00": 11 + }, + "TransporterDriver": { + "2024-11-01T00:00:00+02:00": 160 + }, + "AddUser": { + "2024-11-01T00:00:00+02:00": 250 + } + } + }, + "660b31f5b551758561fb037c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 383436 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 383436 + }, + "requestlist-actorsaddedtoitem-v1": { + "2024-11-01T00:00:00+02:00": 5505 + }, + "requestlist-duedatereminders-v1": { + "2024-11-01T00:00:00+02:00": 377931 + } + } + }, + "65b03e6d7facd2ac9be61dc4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1654 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1654 + }, + "Settled": { + "2024-11-01T00:00:00+02:00": 233 + }, + "New order": { + "2024-11-01T00:00:00+02:00": 348 + }, + "Deal confirmation": { + "2024-11-01T00:00:00+02:00": 21 + }, + "Filled": { + "2024-11-01T00:00:00+02:00": 361 + }, + "Statement report": { + "2024-11-01T00:00:00+02:00": 125 + }, + "Assigned": { + "2024-11-01T00:00:00+02:00": 314 + }, + "Booked": { + "2024-11-01T00:00:00+02:00": 242 + } + } + }, + "63eaaa4dd1a5554c97db1b86": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3065 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3065 + }, + "Email Notification": { + "2024-11-01T00:00:00+02:00": 3054 + }, + "Forgot Password": { + "2024-11-01T00:00:00+02:00": 7 + } + } + }, + "6685216144e8f8b477105e38": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8234 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8234 + }, + "TATA GCM Push": { + "2024-11-01T00:00:00+02:00": 8233 + } + } + }, + "67444c602c32fe389fd89f54": { + "$overall": { + "2024-11-01T00:00:00+02:00": 731 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 731 + }, + "CampaignKeywordsBelowMinBid": { + "2024-11-01T00:00:00+02:00": 225 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 28 + }, + "CampaignProductsStopped": { + "2024-11-01T00:00:00+02:00": 313 + }, + "CampaignCategoriesBelowMinBid": { + "2024-11-01T00:00:00+02:00": 145 + }, + "AdvertiserBalanceLow": { + "2024-11-01T00:00:00+02:00": 20 + } + } + }, + "66cedf34cf609b134361bfa7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17 + } + } + }, + "63ff64e6f591ea2e097d64bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3598 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3598 + }, + "[ADMIN] Direct Debit payment collection succeeded": { + "2024-11-01T00:00:00+02:00": 143 + }, + "[ADMIN] Utility Quote pricing failed": { + "2024-11-01T00:00:00+02:00": 348 + }, + "[BROKER] Quote CSV prepared": { + "2024-11-01T00:00:00+02:00": 801 + }, + "[ADMIN] Direct Debit payment collection upcoming": { + "2024-11-01T00:00:00+02:00": 154 + }, + "[ADMIN] User created": { + "2024-11-01T00:00:00+02:00": 91 + }, + "[USER] Contract start reminder": { + "2024-11-01T00:00:00+02:00": 110 + }, + "[ADMIN] User onboarding complete": { + "2024-11-01T00:00:00+02:00": 8 + }, + "[ADMIN] Account created": { + "2024-11-01T00:00:00+02:00": 316 + }, + "[USER] Site contract created": { + "2024-11-01T00:00:00+02:00": 111 + }, + "[ADMIN] Direct Debit mandate created": { + "2024-11-01T00:00:00+02:00": 52 + }, + "[Admin] Site contract created": { + "2024-11-01T00:00:00+02:00": 218 + }, + "[USER] Invoice Batch Released": { + "2024-11-01T00:00:00+02:00": 450 + }, + "[USER] Direct Debit mandate created": { + "2024-11-01T00:00:00+02:00": 47 + }, + "[USER] Direct Debit payment collection upcoming": { + "2024-11-01T00:00:00+02:00": 133 + }, + "[ADMIN] Site created": { + "2024-11-01T00:00:00+02:00": 282 + }, + "[ADMIN] Company created": { + "2024-11-01T00:00:00+02:00": 321 + } + } + }, + "6641cac9c4df36a9648c8dd5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8531 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8531 + }, + "Statusänderung \"Abgelehnt/Archiv\"": { + "2024-11-01T00:00:00+02:00": 57 + }, + "Anfrage-Archivierung bei Inaktivität": { + "2024-11-01T00:00:00+02:00": 161 + }, + "E-Mail Adresse bestätigen": { + "2024-11-01T00:00:00+02:00": 533 + }, + "Neue Nachricht": { + "2024-11-01T00:00:00+02:00": 1468 + }, + "Termin abgesagt": { + "2024-11-01T00:00:00+02:00": 40 + }, + "Terminoption erhalten": { + "2024-11-01T00:00:00+02:00": 860 + }, + "Passwort zurücksetzen": { + "2024-11-01T00:00:00+02:00": 136 + }, + "Anfrage versendet": { + "2024-11-01T00:00:00+02:00": 508 + }, + "Automatisch Archivierung von inaktiven Anfragen": { + "2024-11-01T00:00:00+02:00": 239 + }, + "Termin bestätigt": { + "2024-11-01T00:00:00+02:00": 273 + }, + "Statusänderung \"Warteliste\"": { + "2024-11-01T00:00:00+02:00": 173 + }, + "Begrüßungsnachricht": { + "2024-11-01T00:00:00+02:00": 505 + }, + "Statusänderung \"Archiv\"": { + "2024-11-01T00:00:00+02:00": 75 + }, + "Neue Therapieanfrage": { + "2024-11-01T00:00:00+02:00": 927 + }, + "Terminübersicht für den Tag": { + "2024-11-01T00:00:00+02:00": 99 + }, + "Statusänderung \"Erstgespräch\"": { + "2024-11-01T00:00:00+02:00": 251 + }, + "Anfrageaktualität und -bedarf bestätigen": { + "2024-11-01T00:00:00+02:00": 1788 + }, + "Statusänderung \"In Therapie\"": { + "2024-11-01T00:00:00+02:00": 89 + }, + "Anfrage von Hilfesuchenden zurückgezogen": { + "2024-11-01T00:00:00+02:00": 77 + }, + "Erwähnung im Kommentar": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Erinnerung an Termin (einen Tag vorher)": { + "2024-11-01T00:00:00+02:00": 243 + }, + "Termin von allen abgelehnt": { + "2024-11-01T00:00:00+02:00": 16 + } + } + }, + "641c3bb95d9af70da93f09a9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1550 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1550 + }, + "trip-completed": { + "2024-11-01T00:00:00+02:00": 201 + }, + "trip-operational-note": { + "2024-11-01T00:00:00+02:00": 99 + }, + "trip-cancelled": { + "2024-11-01T00:00:00+02:00": 15 + }, + "trip-booked": { + "2024-11-01T00:00:00+02:00": 94 + }, + "trip-eta-update": { + "2024-11-01T00:00:00+02:00": 100 + }, + "trip-driver-update": { + "2024-11-01T00:00:00+02:00": 630 + }, + "trip-driver-assessment": { + "2024-11-01T00:00:00+02:00": 407 + } + } + }, + "63c1debfe84f99fee270acf7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 499 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 499 + }, + "link-session-inserted": { + "2024-11-01T00:00:00+02:00": 143 + }, + "message-inserted": { + "2024-11-01T00:00:00+02:00": 24 + }, + "room-joined": { + "2024-11-01T00:00:00+02:00": 17 + }, + "link-listen-inserted": { + "2024-11-01T00:00:00+02:00": 231 + }, + "showcase-inserted": { + "2024-11-01T00:00:00+02:00": 13 + }, + "room-track-inserted": { + "2024-11-01T00:00:00+02:00": 10 + }, + "room-track-comment-inserted": { + "2024-11-01T00:00:00+02:00": 45 + }, + "unlock-inserted": { + "2024-11-01T00:00:00+02:00": 11 + } + } + }, + "653f9eeac93cc0129acf4bcb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34459 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34459 + }, + "Group Invite: Email": { + "2024-11-01T00:00:00+02:00": 2470 + }, + "Group Invite: Push": { + "2024-11-01T00:00:00+02:00": 1155 + }, + "Playlist: New song added": { + "2024-11-01T00:00:00+02:00": 22430 + }, + "Playlist: Invite": { + "2024-11-01T00:00:00+02:00": 2079 + }, + "Group Invite: In-app": { + "2024-11-01T00:00:00+02:00": 1188 + }, + "Playlist: User joined": { + "2024-11-01T00:00:00+02:00": 4791 + }, + "Playlist: Song added": { + "2024-11-01T00:00:00+02:00": 346 + } + } + }, + "651ea1381df1b46454f21192": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2005 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2005 + }, + "Disbursal Auto Mail": { + "2024-11-01T00:00:00+02:00": 686 + }, + "Interested Auto Mail": { + "2024-11-01T00:00:00+02:00": 118 + }, + "Reminder Mail": { + "2024-11-01T00:00:00+02:00": 112 + }, + "NOC Mail": { + "2024-11-01T00:00:00+02:00": 27 + }, + "Settlement Mail": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Loan Approval and Sanction Letter send": { + "2024-11-01T00:00:00+02:00": 870 + }, + "Loan closed Mail": { + "2024-11-01T00:00:00+02:00": 17 + }, + "Rejection Mail": { + "2024-11-01T00:00:00+02:00": 162 + } + } + }, + "636044f61fbb8368897eadbc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 123307 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 123307 + }, + "Target Reward: 75% Progress": { + "2024-11-01T00:00:00+02:00": 2641 + }, + "Target Rewards: 100% Progress": { + "2024-11-01T00:00:00+02:00": 2372 + }, + "BackupCodesRegen": { + "2024-11-01T00:00:00+02:00": 60 + }, + "Target Reward: 50% Progress": { + "2024-11-01T00:00:00+02:00": 2699 + }, + "StarChefNotification": { + "2024-11-01T00:00:00+02:00": 50801 + }, + "3090/4080ReactivationNov-2024": { + "2024-11-01T00:00:00+02:00": 14153 + }, + "NotStarChef": { + "2024-11-01T00:00:00+02:00": 17 + }, + "VenmoReleaseUSA": { + "2024-11-01T00:00:00+02:00": 5886 + }, + "BackupCodesViewed": { + "2024-11-01T00:00:00+02:00": 655 + }, + "PayPalAccountLink": { + "2024-11-01T00:00:00+02:00": 1190 + }, + "EarningThresholdSurveyNov2024": { + "2024-11-01T00:00:00+02:00": 8807 + }, + "EsimatedEarningsBlastOct2024": { + "2024-11-01T00:00:00+02:00": 24387 + }, + "PasskeyRemovedLast": { + "2024-11-01T00:00:00+02:00": 24 + }, + "Target Reward: 25% Progress": { + "2024-11-01T00:00:00+02:00": 2095 + }, + "PasskeyAdded": { + "2024-11-01T00:00:00+02:00": 533 + }, + "GoogleAccountLink": { + "2024-11-01T00:00:00+02:00": 300 + }, + "SatisfactionSurveyNov-2024": { + "2024-11-01T00:00:00+02:00": 6682 + } + } + }, + "64f09213faeddba41e0137d9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1759 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1759 + }, + "Enrolment form submitted": { + "2024-11-01T00:00:00+02:00": 233 + }, + "Profile completion reminder": { + "2024-11-01T00:00:00+02:00": 127 + }, + "Setup Password": { + "2024-11-01T00:00:00+02:00": 11 + }, + "Email Verification": { + "2024-11-01T00:00:00+02:00": 56 + }, + "Welcome email": { + "2024-11-01T00:00:00+02:00": 91 + }, + "Password Reset": { + "2024-11-01T00:00:00+02:00": 9 + }, + "Query": { + "2024-11-01T00:00:00+02:00": 290 + }, + "Learner reallocate course": { + "2024-11-01T00:00:00+02:00": 13 + }, + "Activation Reminder": { + "2024-11-01T00:00:00+02:00": 104 + }, + "Class rebooking": { + "2024-11-01T00:00:00+02:00": 25 + }, + "Staff Cancellation Enrolment Notification to Learner": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Referral Email": { + "2024-11-01T00:00:00+02:00": 61 + }, + "Notification to Inform Referrer": { + "2024-11-01T00:00:00+02:00": 49 + }, + "Learner self enrolled - No account": { + "2024-11-01T00:00:00+02:00": 166 + }, + "Learner Query Response Notification": { + "2024-11-01T00:00:00+02:00": 193 + }, + "Testing API call": { + "2024-11-01T00:00:00+02:00": 59 + }, + "Notification to Learner (has account) added in admin portal": { + "2024-11-01T00:00:00+02:00": 72 + }, + "Course Enrollment Invitation": { + "2024-11-01T00:00:00+02:00": 139 + }, + "Class booking confirmation": { + "2024-11-01T00:00:00+02:00": 36 + } + } + }, + "66d536cdcf609b1343d0e115": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1273 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1273 + }, + "maintenance_created_from_inspection": { + "2024-11-01T00:00:00+02:00": 63 + }, + "new_tenant_expense": { + "2024-11-01T00:00:00+02:00": 6 + }, + "private_viewing_reminder_non_user": { + "2024-11-01T00:00:00+02:00": 18 + }, + "unregistered_user_private_viewing_cancelled": { + "2024-11-01T00:00:00+02:00": 25 + }, + "new_tenancy_request_property_manager_variant": { + "2024-11-01T00:00:00+02:00": 144 + }, + "change_of_tenant_application_submitted": { + "2024-11-01T00:00:00+02:00": 44 + }, + "tenancy_extension_added": { + "2024-11-01T00:00:00+02:00": 10 + }, + "rent_payment_overdue": { + "2024-11-01T00:00:00+02:00": 130 + }, + "tenancy_in_arrears": { + "2024-11-01T00:00:00+02:00": 9 + }, + "renter_tenancy_confirmed_property_management_variant": { + "2024-11-01T00:00:00+02:00": 18 + }, + "private_viewing_confirmed": { + "2024-11-01T00:00:00+02:00": 32 + }, + "close_reminder": { + "2024-11-01T00:00:00+02:00": 24 + }, + "reminder_to_confirm": { + "2024-11-01T00:00:00+02:00": 29 + }, + "change_of_tenant_application_ready_to_sign": { + "2024-11-01T00:00:00+02:00": 117 + }, + "tenancy_request_accepted": { + "2024-11-01T00:00:00+02:00": 19 + }, + "rental_application_unsuccessful": { + "2024-11-01T00:00:00+02:00": 16 + }, + "payment_remittance": { + "2024-11-01T00:00:00+02:00": 9 + }, + "expense_updated_for_uninvited_tenants": { + "2024-11-01T00:00:00+02:00": 6 + }, + "new_enquiry_message": { + "2024-11-01T00:00:00+02:00": 10 + }, + "confirmation_instructions": { + "2024-11-01T00:00:00+02:00": 31 + }, + "awaiting_sign_offs": { + "2024-11-01T00:00:00+02:00": 32 + }, + "account_summary": { + "2024-11-01T00:00:00+02:00": 81 + }, + "open_home_reminder": { + "2024-11-01T00:00:00+02:00": 6 + }, + "tenancy_services_bond_filing": { + "2024-11-01T00:00:00+02:00": 14 + }, + "bond_payment_due": { + "2024-11-01T00:00:00+02:00": 48 + }, + "new_rental_application": { + "2024-11-01T00:00:00+02:00": 21 + }, + "time_confirmed_with_message": { + "2024-11-01T00:00:00+02:00": 6 + }, + "rent_split_set": { + "2024-11-01T00:00:00+02:00": 18 + }, + "change_of_tenant_application_tenancy_services": { + "2024-11-01T00:00:00+02:00": 10 + }, + "listing_approved": { + "2024-11-01T00:00:00+02:00": 38 + }, + "landlord_registration_submitted": { + "2024-11-01T00:00:00+02:00": 7 + }, + "user_edited_notice": { + "2024-11-01T00:00:00+02:00": 21 + }, + "renter_tenancy_confirmed": { + "2024-11-01T00:00:00+02:00": 10 + }, + "migrate_invite_accepted": { + "2024-11-01T00:00:00+02:00": 32 + }, + "rental_application_shortlisted": { + "2024-11-01T00:00:00+02:00": 13 + }, + "updated_tenant_expense": { + "2024-11-01T00:00:00+02:00": 18 + }, + "tenancy_variation_added": { + "2024-11-01T00:00:00+02:00": 78 + } + } + }, + "655f20b2afd4055e0df6ae1d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1619 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1619 + }, + "Welcome Email": { + "2024-11-01T00:00:00+02:00": 46 + }, + "Scheduled Dashboard": { + "2024-11-01T00:00:00+02:00": 558 + }, + "alert": { + "2024-11-01T00:00:00+02:00": 915 + }, + "Create Dashboard": { + "2024-11-01T00:00:00+02:00": 100 + } + } + }, + "64c94e80fc11bce407229550": { + "$overall": { + "2024-11-01T00:00:00+02:00": 37894 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 37894 + }, + "Notificação de Potencial Clientes": { + "2024-11-01T00:00:00+02:00": 22 + }, + "Query Success": { + "2024-11-01T00:00:00+02:00": 37872 + } + } + }, + "6721fd6e30d1c09960214146": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1319 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1319 + }, + "Competition Start": { + "2024-11-01T00:00:00+02:00": 259 + }, + "Transaction Event": { + "2024-11-01T00:00:00+02:00": 82 + }, + "Battle Request": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Battle Request Accepted": { + "2024-11-01T00:00:00+02:00": 18 + }, + "Battle Result": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Battle Event": { + "2024-11-01T00:00:00+02:00": 131 + }, + "Competition Event": { + "2024-11-01T00:00:00+02:00": 302 + }, + "New Achievements": { + "2024-11-01T00:00:00+02:00": 476 + } + } + }, + "651aea5133924ee69071720d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36120 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36120 + }, + "Invitacion Nuevo Asesor": { + "2024-11-01T00:00:00+02:00": 68 + }, + "Quejas": { + "2024-11-01T00:00:00+02:00": 52 + }, + "Agente Suspendido MB": { + "2024-11-01T00:00:00+02:00": 169 + }, + "Nuevo inicio de sesión": { + "2024-11-01T00:00:00+02:00": 2716 + }, + "Recordatorio consulta pendiente": { + "2024-11-01T00:00:00+02:00": 3982 + }, + "Agente suspendido": { + "2024-11-01T00:00:00+02:00": 79 + }, + "Nuevo postulante para tu inmobiliaria": { + "2024-11-01T00:00:00+02:00": 35 + }, + "Nuevo postulante": { + "2024-11-01T00:00:00+02:00": 10 + }, + "Bienvenida Asesor": { + "2024-11-01T00:00:00+02:00": 58 + }, + "Correo búsqueda cerrada": { + "2024-11-01T00:00:00+02:00": 2318 + }, + "accion requerida": { + "2024-11-01T00:00:00+02:00": 125 + }, + "Login": { + "2024-11-01T00:00:00+02:00": 358 + }, + "Nuevo lead - cliente": { + "2024-11-01T00:00:00+02:00": 1893 + }, + "traer referido al desayuno": { + "2024-11-01T00:00:00+02:00": 8 + }, + "Nuevo lead": { + "2024-11-01T00:00:00+02:00": 11127 + }, + "Broker asignado a cliente": { + "2024-11-01T00:00:00+02:00": 9369 + }, + "Agente Reactivado MB": { + "2024-11-01T00:00:00+02:00": 155 + }, + "Correo baja de precio": { + "2024-11-01T00:00:00+02:00": 2357 + }, + "Visita solicitada": { + "2024-11-01T00:00:00+02:00": 306 + }, + "Envío de Contrato": { + "2024-11-01T00:00:00+02:00": 808 + }, + "Nuevo Comentario Legal - Equipo": { + "2024-11-01T00:00:00+02:00": 19 + }, + "Nuevo referido": { + "2024-11-01T00:00:00+02:00": 12 + }, + "Agente Reactivado": { + "2024-11-01T00:00:00+02:00": 70 + } + } + }, + "65fbe3a58453b14f2f670e14": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3303 + }, + "undefined": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3303 + }, + "Listing Detail Updates": { + "2024-11-01T00:00:00+02:00": 2430 + }, + "Agent Signup Updates": { + "2024-11-01T00:00:00+02:00": 36 + }, + "Transaction Updates": { + "2024-11-01T00:00:00+02:00": 90 + }, + "Deal Status Updates": { + "2024-11-01T00:00:00+02:00": 576 + }, + "Deal Status Slack Updates": { + "2024-11-01T00:00:00+02:00": 32 + }, + "Listing Change Slack Update": { + "2024-11-01T00:00:00+02:00": 135 + } + } + } + }, + "B. Process Workflow Step - [Triggers] [Total Events]": { + "$overall": { + "2024-11-01T00:00:00+02:00": 79061891 + }, + "64c78706e994a8dc20cdb2e1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 452 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 226 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 226 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 226 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 226 + } + } + }, + "65c1f64ef94456f501d98f49": { + "$overall": { + "2024-11-01T00:00:00+02:00": 329529 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 164765 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 164765 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 164764 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 164764 + } + } + }, + "64c3f5e72df653eabdc06c32": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10869 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5434 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5434 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5435 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5435 + } + } + }, + "65887da2f14b6f3ef002d584": { + "$overall": { + "2024-11-01T00:00:00+02:00": 446 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 223 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 223 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 223 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 223 + } + } + }, + "65f9e3b139829e6c76826cb5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1327408 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 175426 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 175426 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 721483 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 721483 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 215248 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 215248 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 215251 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 215251 + } + } + }, + "63b6208e711db04e8129df6b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10540 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2430 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2430 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4055 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4055 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4055 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4055 + } + } + }, + "65af718b8e557ef0af46f7c0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7082 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3206 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3206 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3223 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3223 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 504 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 504 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 149 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 149 + } + } + }, + "6423f39a2586c27b11d98d84": { + "$overall": { + "2024-11-01T00:00:00+02:00": 147345 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 55953 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 55953 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44787 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 44787 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 19244 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 19244 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27361 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 27361 + } + } + }, + "65b03e6d7facd2ac9be61dc4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3308 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1654 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1654 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1500 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1500 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 154 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 154 + } + } + }, + "6721fd6e30d1c09960214146": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4508 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1319 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1319 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 99 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 99 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 653 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 653 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1297 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1297 + } + }, + "custom": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1140 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1140 + } + } + }, + "6523dfc76b6e9b692e5b79d6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2506 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1253 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1253 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1253 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1253 + } + } + }, + "6569c906478e147113dd7a9e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 46 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 23 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 23 + } + } + }, + "63a988938099fc7fe0b9f12d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1329 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 644 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 644 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 685 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 685 + } + } + }, + "65e0b87e3a2387ff89a82beb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1516 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 758 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 758 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 501 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 501 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 257 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 257 + } + } + }, + "670e0dc18b5274f5475e4b73": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6975 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5300 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5300 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1675 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1675 + } + } + }, + "64dbea7b28a0b10b3b77239e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7306 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3653 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3653 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3653 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3653 + } + } + }, + "63fbb0118920eed9471fa1b2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22500 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 138 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 138 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22168 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22168 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 194 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 194 + } + } + }, + "64d37f84045bf0282da7b498": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9805 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4098 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4098 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3151 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3151 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1145 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1145 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 399 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 399 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1012 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1012 + } + } + }, + "648079c03a4ec8a5999d3eb1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1160 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 580 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 580 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 580 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 580 + } + } + }, + "66621bc53a586fac83886829": { + "$overall": { + "2024-11-01T00:00:00+02:00": 41907 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13969 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13969 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13969 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13969 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13969 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13969 + } + } + }, + "64e46fc009b229a7c5c1735c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 68699 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15444 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15444 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34338 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 34338 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18917 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18917 + } + } + }, + "64919f0eb5f1ae122b876762": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4894 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2447 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2447 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2447 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2447 + } + } + }, + "644a988e631887e5f000dae6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14680 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7340 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7340 + } + } + }, + "65aad6098e557ef0afa191c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 186 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 27 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 39 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 39 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 40 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 40 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 40 + } + } + }, + "65fa38148453b14f2f5aeea2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 872 + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 127 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 127 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 201 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 201 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 276 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 276 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 268 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 268 + } + } + }, + "63b4a3edc2c62a5b4b374cc6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1943 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 929 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 929 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 755 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 755 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 79 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 79 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 180 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 180 + } + } + }, + "66b36aa7aa4218d12678f006": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1141 + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 200 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 200 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 309 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 309 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 324 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 324 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 204 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 204 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 104 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 104 + } + } + }, + "64d10e4220f4008b5df1e37a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4674 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 647 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 647 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 157 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 157 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3870 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3870 + } + } + }, + "650b644a42707458fe431762": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2742 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1554 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1554 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1163 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1163 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 25 + } + } + }, + "656f1ea74663d4c5f711bce4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 900 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 334 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 334 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 283 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 283 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 283 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 283 + } + } + }, + "66cedf34cf609b134361bfa7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 59 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 27 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 12 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4 + } + } + }, + "65129c6a87135ffdc368e7a3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3199 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 999 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 999 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1031 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1031 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 212 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 212 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 955 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 955 + } + } + }, + "64092d0773a1721d0476baa9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2508 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 170 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 170 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 816 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 816 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1122 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1122 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 113 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 113 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 281 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 281 + } + } + }, + "671faf6b285bc655d85f6e65": { + "$overall": { + "2024-11-01T00:00:00+02:00": 199 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 88 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 88 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 100 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 100 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11 + } + } + }, + "6639eeff0c0215ee78621015": { + "$overall": { + "2024-11-01T00:00:00+02:00": 64145 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 32072 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 32072 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 31840 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 31840 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 233 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 233 + } + } + }, + "628f82923c3e82001812b7cf": { + "$overall": { + "2024-11-01T00:00:00+02:00": 400 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 200 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 200 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 200 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 200 + } + } + }, + "65cb7ceb619fe4f9cf882165": { + "$overall": { + "2024-11-01T00:00:00+02:00": 69041 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34517 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 34517 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34514 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 34514 + } + } + }, + "654e95e71b0a1377ffe4f755": { + "$overall": { + "2024-11-01T00:00:00+02:00": 133751 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 66877 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 66877 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 66874 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 66874 + } + } + }, + "651fa9f835fbd6284965127c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26268 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12216 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 12216 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14052 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14052 + } + } + }, + "646f08088b0b51ed17340c31": { + "$overall": { + "2024-11-01T00:00:00+02:00": 43754 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14953 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14953 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14789 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14789 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14012 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14012 + } + } + }, + "651add0cb03ff038cedc7448": { + "$overall": { + "2024-11-01T00:00:00+02:00": 715837 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 357920 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 357920 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 357913 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 357913 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4 + } + } + }, + "638a3301ed1c4c44d2a58839": { + "$overall": { + "2024-11-01T00:00:00+02:00": 633121 + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 208853 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 208853 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 212134 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 212134 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 212134 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 212134 + } + } + }, + "667d2415de5890bc6c29b3cc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 19457 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6982 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6982 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6894 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6894 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5581 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5581 + } + } + }, + "6684fd53e40a50735b55a981": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3508 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1745 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1745 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1745 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1745 + } + } + }, + "6361ae479e04bb11b51b9401": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9752 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1285 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1285 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3588 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3588 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 420 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 420 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4024 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4024 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 435 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 435 + } + } + }, + "638241fa15685362a30e0365": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1431 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 477 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 477 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 477 + } + } + }, + "630ca7b800f7dbd3faf2d726": { + "$overall": { + "2024-11-01T00:00:00+02:00": 101127 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 94553 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 94553 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3972 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3972 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2602 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2602 + } + } + }, + "671f768afb21db27362e8d5f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 51696 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26849 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 26849 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24847 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 24847 + } + } + }, + "64c7be962df653eabd0a53dd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2949 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 983 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 983 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 983 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 983 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 983 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 983 + } + } + }, + "66432c55c4df36a964927b2c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 154327 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 76937 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 76937 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 76919 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 76919 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 457 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 457 + } + } + }, + "64ee088296eacf2243b8b25b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9927 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3258 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3258 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3656 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3656 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3004 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3004 + } + } + }, + "6501cc0935286a5ea69aa722": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2876 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1438 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1438 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1438 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1438 + } + } + }, + "65ce436d99b1dce753411d4a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2151 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 133 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 133 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 136 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 136 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 941 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 941 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 941 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 941 + } + } + }, + "6447d7ccf2e1143129042903": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11245 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5619 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5619 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2487 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2487 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1068 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1068 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2071 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2071 + } + } + }, + "637b2240c58b301920b2f70c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 157817 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40967 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 40967 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 38950 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 38950 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 38950 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 38950 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 38950 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 38950 + } + } + }, + "655f20b2afd4055e0df6ae1d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2981 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1619 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1619 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 704 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 704 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 658 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 658 + } + } + }, + "644c1877631887e5f006a54f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3756 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1252 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1252 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1252 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1252 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1252 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1252 + } + } + }, + "62f93267cd5afb6ad39b12b1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 43968 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21984 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 21984 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21984 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 21984 + } + } + }, + "6687b6fe3069ddef14178411": { + "$overall": { + "2024-11-01T00:00:00+02:00": 47359 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45388 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 45388 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1971 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1971 + } + } + }, + "6663404493a6b815ffefb2f0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2463457 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 79928 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 79928 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 776221 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 776221 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 831090 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 831090 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 776218 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 776218 + } + } + }, + "6673d3288b7329c353ad689d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2680 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1340 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1340 + } + } + }, + "64f6ffa51bb9daae5164392a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12069 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6035 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6035 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6034 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6034 + } + } + }, + "6463ebef60f1803b3a6fbf6b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 223456 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17456 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17456 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 106765 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 106765 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 99235 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 99235 + } + } + }, + "624c1d9fdd3137001824f6ef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28399 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14199 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14199 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14200 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14200 + } + } + }, + "64135799799e3c974d3f6426": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11581625 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 143176 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 143176 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3984865 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3984865 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3724167 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3724167 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3729417 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3729417 + } + } + }, + "646327aed6925ea19b9c43ea": { + "$overall": { + "2024-11-01T00:00:00+02:00": 89186 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29729 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29729 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29728 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29728 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29729 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29729 + } + } + }, + "67444c602c32fe389fd89f54": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1424 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 731 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 731 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 693 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 693 + } + } + }, + "6397389154ca30325edb6391": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2867 + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 165 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 165 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 739 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 739 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1270 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1270 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 693 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 693 + } + } + }, + "653f9eeac93cc0129acf4bcb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 108757 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18322 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18322 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34462 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 34462 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14842 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14842 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10294 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10294 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30837 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30837 + } + } + }, + "650af582c016453d5bdfb209": { + "$overall": { + "2024-11-01T00:00:00+02:00": 70 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 35 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 35 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 35 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 35 + } + } + }, + "66f19c98cf609b134304a0f6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2877 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 983 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 983 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 947 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 947 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 947 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 947 + } + } + }, + "65eb2863bd6a1b3de8913c21": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5993 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1163 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1163 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2401 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2401 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1787 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1787 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 642 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 642 + } + } + }, + "64d7bb315b5e6bb444d4dd86": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8953 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4034 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4034 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4034 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4034 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 885 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 885 + } + } + }, + "65af69c5aeb88319ddace25a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 138949 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 69474 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 69474 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 69475 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 69475 + } + } + }, + "63fa339af93b4fa85aac153d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3105 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1083 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1083 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1011 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1011 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1011 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1011 + } + } + }, + "63215ba3a4ca4df9242c24c4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2170 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 106 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 106 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1032 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1032 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1032 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1032 + } + } + }, + "63b80e5704fdc888671f3820": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1710 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 180 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 180 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 855 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 855 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 675 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 675 + } + } + }, + "63cfe876ab8d9270851c178d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9088 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6976 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6976 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1928 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1928 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 184 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 184 + } + } + }, + "6680a87553d09da082d4fd31": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8804 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4402 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4402 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4402 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4402 + } + } + }, + "657312d2fd6a606fd6eaa203": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4082 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1381 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1381 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1381 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1381 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1320 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1320 + } + } + }, + "651d2708e1b82d64b37fb064": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3469 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1733 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1733 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1718 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1718 + } + } + }, + "650d24f8f39b9230da78520b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1378 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 689 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 689 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 689 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 689 + } + } + }, + "64ecc8ef96eacf2243a91769": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30645 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11768 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11768 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3426 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3426 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10904 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10904 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4547 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4547 + } + } + }, + "66fc55c5cf609b13433a677d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11942 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5988 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5988 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5954 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5954 + } + } + }, + "6627a8d783dccfeec76eb3f3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 32112 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13975 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13975 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4163 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4163 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13974 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13974 + } + } + }, + "66b1fe79aa4218d12657d85b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1571 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 786 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 786 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 785 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 785 + } + } + }, + "6637e82483488a7091d0513d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2409 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 912 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 912 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 787 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 787 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 710 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 710 + } + } + }, + "655c93211a91da1b109bea70": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5299 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 679 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 679 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2202 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2202 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 216 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 216 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2202 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2202 + } + } + }, + "6439d814d3f2f7f8eb014099": { + "$overall": { + "2024-11-01T00:00:00+02:00": 614 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 307 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 307 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 307 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 307 + } + } + }, + "6525396bae3f3225a9475db0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24142 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4891 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4891 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 676 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 676 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 209 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 209 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1292 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1292 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9300 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9300 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7774 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7774 + } + } + }, + "66cf1c1bcf609b134337b496": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14321 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7160 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7160 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7161 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7161 + } + } + }, + "654fe30fc36c6d67b96de432": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8651 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4326 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4326 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4325 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4325 + } + } + }, + "6314b4eb232b8996aaa4c9bc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3874 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1937 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1937 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1937 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1937 + } + } + }, + "63f586fd589ed09e95f0010f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1098 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 549 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 549 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 549 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 549 + } + } + }, + "63a81723bee1d5aed77eeecc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 507 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 169 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 169 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 169 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 169 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 169 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 169 + } + } + }, + "63d31df842cfbce360a1f91d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2367 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 530 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 530 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 594 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 594 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 632 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 632 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 611 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 611 + } + } + }, + "62b8aeda9bbe840018528c47": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3708 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1236 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1236 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1236 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1236 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1236 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1236 + } + } + }, + "6627ad47fe81f5c852ec1b6a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 19535 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 162 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 162 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6561 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6561 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6389 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6389 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6423 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6423 + } + } + }, + "64f0638825339d16c5d2738a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1644 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 506 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 506 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 316 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 316 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 316 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 316 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 506 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 506 + } + } + }, + "63a059f5bee1d5aed7e4d95c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3987 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1329 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1329 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1329 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1329 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1329 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1329 + } + } + }, + "63cf21de42cfbce360219228": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1508 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 754 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 754 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 754 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 754 + } + } + }, + "6643b1e7fbadc9d325959e25": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7470 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2212 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2212 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2212 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2212 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 272 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 272 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2774 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2774 + } + } + }, + "656197541eb377d7c3b258a0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16535 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5677 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5677 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5677 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5677 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5181 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5181 + } + } + }, + "66fa9de25d6b8aa393727348": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2834 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 985 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 985 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 925 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 925 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 924 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 924 + } + } + }, + "665f80fe8e255032572549f2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1599 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 319 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 319 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 319 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 319 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 319 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 319 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 323 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 323 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 319 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 319 + } + } + }, + "651eff411df1b46454f4c05a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 41990 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2865 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2865 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7924 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7924 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14712 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14712 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 864 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 864 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7522 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7522 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8103 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8103 + } + } + }, + "6439210da97b5d90d4874f30": { + "$overall": { + "2024-11-01T00:00:00+02:00": 96215 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17890 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17890 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 19986 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 19986 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21672 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 21672 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18101 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18101 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18565 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18565 + } + } + }, + "6568b37faa67fd979c0b94d8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1796 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 776 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 776 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 340 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 340 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 340 + } + } + }, + "658a048acb274a771b085163": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4618 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2309 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2309 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2309 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2309 + } + } + }, + "648e433db5f1ae122b746d19": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6390 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3195 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3195 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3195 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3195 + } + } + }, + "666c096bb3464b7775094768": { + "$overall": { + "2024-11-01T00:00:00+02:00": 70 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 21 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 21 + } + } + }, + "6549444cb6c1c9448db38bc2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1112 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1052 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1052 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30 + } + } + }, + "6502d39087135ffdc35caf67": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17310 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14224 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14224 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1543 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1543 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1543 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1543 + } + } + }, + "6329fc7ae2a2de81df4b10a6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11298 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5589 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5589 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5466 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5466 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 243 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 243 + } + } + }, + "65439145e3bcee0f76a5a368": { + "$overall": { + "2024-11-01T00:00:00+02:00": 62267 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 38524 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 38524 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5936 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5936 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5936 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5936 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5936 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5936 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5935 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5935 + } + } + }, + "672e2335a197476669200759": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21867 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10093 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10093 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10720 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10720 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1054 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1054 + } + } + }, + "650c474042707458fe59f367": { + "$overall": { + "2024-11-01T00:00:00+02:00": 418918 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 177034 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 177034 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18735 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18735 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18737 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18737 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18736 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18736 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 185676 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 185676 + } + } + }, + "65113f461a7614493dc5a9f0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2258 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 765 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 765 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 857 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 857 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 636 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 636 + } + } + }, + "6448e3efe2067a03ba33cbb7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8858 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4430 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4430 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4428 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4428 + } + } + }, + "66a79f82dfafba8038bc3399": { + "$overall": { + "2024-11-01T00:00:00+02:00": 727 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 249 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 249 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 229 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 229 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 249 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 249 + } + } + }, + "64341d3fd766fd13ee96b6a1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5865 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1956 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1956 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1955 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1955 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1954 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1954 + } + } + }, + "651fca9cb03ff038cef1c54f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15279 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3820 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3820 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3820 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3820 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3820 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3820 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3819 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3819 + } + } + }, + "63b3f614749085d8f285703a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 46060 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15351 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15351 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9692 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9692 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 165 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 165 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10423 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10423 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10429 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10429 + } + } + }, + "662a58724b6cd9280bf5139d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 220 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 110 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 110 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 108 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 108 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2 + } + } + }, + "651e2d9e8816295152897198": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1346 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 673 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 673 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 673 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 673 + } + } + }, + "632cae5927d50dea0bf3898b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3543 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1184 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1184 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1184 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1184 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1175 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1175 + } + } + }, + "66b3c633abc563f5ee1c4ffa": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11387 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2663 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2663 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 12 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5990 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5990 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2722 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2722 + } + } + }, + "6436e7094f087a109c0322a7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14236 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7118 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7118 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7118 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7118 + } + } + }, + "64fb853287135ffdc3b410ec": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15782 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3945 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3945 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3978 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3978 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3497 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3497 + } + }, + "custom": { + "$overall": { + "2024-11-01T00:00:00+02:00": 385 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 385 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3977 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3977 + } + } + }, + "65e5c6dde5b9e5a88a318d93": { + "$overall": { + "2024-11-01T00:00:00+02:00": 814 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 498 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 498 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 158 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 158 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 158 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 158 + } + } + }, + "642552b70136cef86a79373c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1202 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 469 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 469 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 67 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 67 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 469 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 469 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 197 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 197 + } + } + }, + "65a56e2e8e557ef0afd6f872": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21936 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10052 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10052 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10052 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10052 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1832 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1832 + } + } + }, + "671dcbd5fb21db27364e8179": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3172 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 816 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 816 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1339 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1339 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1017 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1017 + } + } + }, + "64df0f4ea9172aa4b7052247": { + "$overall": { + "2024-11-01T00:00:00+02:00": 102232 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27678 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 27678 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20390 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20390 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26485 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 26485 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27679 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 27679 + } + } + }, + "66ce471dcf609b1343289560": { + "$overall": { + "2024-11-01T00:00:00+02:00": 33358 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16686 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 16686 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16672 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 16672 + } + } + }, + "6554c9199139d6b01f88625d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4652 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1351 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1351 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1383 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1383 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 535 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 535 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1383 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1383 + } + } + }, + "669559c51c484e3d9a0e1839": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2450 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1225 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1225 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1225 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1225 + } + } + }, + "6408720f46fde50c6d4affe5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17116 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4296 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4296 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4263 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4263 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4261 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4261 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4296 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4296 + } + } + }, + "64f0c28825339d16c5d8131a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1262 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 631 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 631 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 631 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 631 + } + } + }, + "6669f5fec7f96cc1968787d9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 66526 + }, + "custom": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16186 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 16186 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15777 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15777 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17663 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17663 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16900 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 16900 + } + } + }, + "6615460e6df43c247a0e01bb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 42516 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14172 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14172 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14172 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14172 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14172 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14172 + } + } + }, + "63d548c1a9b6cc61d4c3beb3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 19107 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 897 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 897 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9553 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9553 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8657 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8657 + } + } + }, + "6641cac9c4df36a9648c8dd5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24105 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7709 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7709 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8534 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8534 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7862 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7862 + } + } + }, + "662f0d0e843a6a8496596159": { + "$overall": { + "2024-11-01T00:00:00+02:00": 158 + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 74 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 74 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 61 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 61 + } + } + }, + "646d9f170b49196df3ab5f80": { + "$overall": { + "2024-11-01T00:00:00+02:00": 34794 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17397 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17397 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17397 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17397 + } + } + }, + "643d4f7130bdc004e35b8b0e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4852 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1636 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1636 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 790 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 790 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 790 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 790 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1636 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1636 + } + } + }, + "645863ebd6925ea19b7d2456": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2983 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2821 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2821 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 81 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 81 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 81 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 81 + } + } + }, + "64c1760e3ec3e6a351ea3ba1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1538 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 769 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 769 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 769 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 769 + } + } + }, + "6481d805720b54f89e143404": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2754 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1377 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1377 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1377 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1377 + } + } + }, + "64c94e80fc11bce407229550": { + "$overall": { + "2024-11-01T00:00:00+02:00": 113658 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 37872 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 37872 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 37892 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 37892 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 37872 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 37872 + } + } + }, + "647817a98b0b51ed174db1a8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45259 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3743 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3743 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20511 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20511 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 494 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 494 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20511 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20511 + } + } + }, + "64db6d7084fbabb0eef2e7a0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 42003 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14001 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14001 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14001 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14001 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14001 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14001 + } + } + }, + "646f26388b0b51ed1734729b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 51435 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17145 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17145 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17145 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17145 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17145 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17145 + } + } + }, + "6337ca88ee1316a5c8a9009e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2766 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 922 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 922 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 922 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 922 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 922 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 922 + } + } + }, + "66b13ca4238f8cf6c4a2478e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1048 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 539 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 539 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 494 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 494 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + } + }, + "67475e932c32fe389fa51052": { + "$overall": { + "2024-11-01T00:00:00+02:00": 908 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 452 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 452 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 453 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 453 + } + } + }, + "656b003c666d47dc7d25648c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27014 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9006 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9006 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9002 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9002 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9006 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9006 + } + } + }, + "657006a1d69593bcb426d80e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3072 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1536 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1536 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1536 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1536 + } + } + }, + "6335791aee1316a5c89b6d93": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20899 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10449 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10449 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10450 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10450 + } + } + }, + "6593f529f58e905ecac5cf4b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 81374 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22768 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22768 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12947 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 12947 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20368 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20368 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10397 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10397 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14894 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14894 + } + } + }, + "6437a1cdc3f9dd9ef6a22609": { + "$overall": { + "2024-11-01T00:00:00+02:00": 154 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 54 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 54 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 45 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 45 + } + } + }, + "66d536cdcf609b1343d0e115": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2818 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1273 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1273 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 992 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 992 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 553 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 553 + } + } + }, + "66b9e7e99c11077f0298542c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1880 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 940 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 940 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 940 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 940 + } + } + }, + "64b703eb90b5785d4734577a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1767 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 816 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 816 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 52 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 52 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 661 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 661 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 238 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 238 + } + } + }, + "66b997fe9c11077f0257d94e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1040 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 461 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 461 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 194 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 194 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 384 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 384 + } + } + }, + "647e50e6720b54f89e06480e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 922 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 449 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 449 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 449 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 449 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 24 + } + } + }, + "6734a5a33b50565012d8dce0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + } + }, + "651c209f8816295152811079": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4013 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1360 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1360 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1256 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1256 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 38 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 38 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1359 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1359 + } + } + }, + "65fb16744fe3628e5e65fe2e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4502 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1695 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1695 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2246 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2246 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 561 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 561 + } + } + }, + "652d210133aa2d8c68b1bea6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29207 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9736 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9736 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9736 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9736 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9735 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9735 + } + } + }, + "647d42173a4ec8a59984c750": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24846 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7729 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7729 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7729 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7729 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1659 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1659 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7729 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7729 + } + } + }, + "65fd55c44f991166e7a7335e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7402 + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 199 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 199 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2515 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2515 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 869 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 869 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2207 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2207 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1232 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1232 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 380 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 380 + } + } + }, + "62cd681212f9e10011655a35": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3115685 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1037731 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1037731 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1037727 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1037727 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1037303 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1037303 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2924 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2924 + } + } + }, + "656dbe9f27f644ad0ecba9ae": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2132 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1066 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1066 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1066 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1066 + } + } + }, + "672e25d0a1974766693e1703": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 36 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 36 + } + } + }, + "63c1debfe84f99fee270acf7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1170 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 66 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 66 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 196 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 196 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 499 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 499 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 201 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 201 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 208 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 208 + } + } + }, + "65718e1d37b5f612059c62ef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 106040 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17762 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 17762 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 88278 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 88278 + } + } + }, + "65d5e7fa2d8ee2bc1404fa0f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 204 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 102 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 102 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 102 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 102 + } + } + }, + "63320239ee1316a5c87e38d1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 48212 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24106 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 24106 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24106 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 24106 + } + } + }, + "664c96c0e6f72af294ae867a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2911 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 663 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 663 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 525 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 525 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 794 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 794 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 929 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 929 + } + } + }, + "64e4824819860000717aecb9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21436 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9300 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9300 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12136 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 12136 + } + } + }, + "66ac042fb11ac224eaf4f23a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 43049 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14364 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14364 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14364 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14364 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14321 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14321 + } + } + }, + "6537ebf5585a37886d9f05b5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21576 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9211 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9211 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 355 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 355 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3614 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3614 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8396 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8396 + } + } + }, + "667afbe4231acc7b876e0a8a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1966 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 414 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 414 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 414 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 414 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 414 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 414 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 310 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 310 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 414 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 414 + } + } + }, + "671bcf830ab03d9467221e9b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1237 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 513 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 513 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 714 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 714 + } + } + }, + "670d176b8b5274f547d231c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2232 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1173 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1173 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1059 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1059 + } + } + }, + "656d49757b44306b3c820521": { + "$overall": { + "2024-11-01T00:00:00+02:00": 861 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 439 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 439 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 422 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 422 + } + } + }, + "668fa1064111ae088df8ecd3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 930 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 465 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 465 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 465 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 465 + } + } + }, + "66ab0c482a0b42870f2dadef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13659 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1976 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1976 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7163 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7163 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4520 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4520 + } + } + }, + "65c17ff93086d5972f17c2d0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4482 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 344 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 344 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1154 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1154 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1492 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1492 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1492 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1492 + } + } + }, + "6543a644e3126f05f0cad775": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4694 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2347 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2347 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2318 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2318 + } + } + }, + "63edbed95f1718af27dc2f2f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 31284 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10428 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10428 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10428 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10428 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10428 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10428 + } + } + }, + "65bbbfe9cadbf9deb57b546e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2386 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 804 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 804 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 778 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 778 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 804 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 804 + } + } + }, + "643682a035c8dd9a2c46ac2b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 201966 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 112586 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 112586 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26347 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 26347 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26347 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 26347 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18123 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18123 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18563 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18563 + } + } + }, + "6502ec79f39b9230da7cc89f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8992 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4019 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4019 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 602 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 602 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4371 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4371 + } + } + }, + "67212578d50b4e9ff9a6cc1f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 369 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 314 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 314 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 44 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11 + } + } + }, + "660ef03291bd69a79e31a321": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18824 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9412 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9412 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9412 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9412 + } + } + }, + "63bb02b5063f6d94cdf18ac9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15020 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4514 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4514 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1679 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1679 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 80 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 80 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5257 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5257 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3490 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3490 + } + } + }, + "66704e3f30319d13334f4306": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1225185 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 612260 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 612260 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 611467 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 611467 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1458 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1458 + } + } + }, + "6516702d73891288fc1ca032": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44465 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14819 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14819 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14821 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14821 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14825 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14825 + } + } + }, + "6408f2f0dd5f589fe2ca61b4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4719 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1602 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1602 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2363 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2363 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 753 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 753 + } + } + }, + "66d61e9dcf609b134368c516": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15341 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6299 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6299 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6208 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6208 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2834 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2834 + } + } + }, + "63c8f9dd69a571f23a1f87d0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 399 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 195 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 195 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 195 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 195 + } + } + }, + "647a49083a4ec8a5997fb67c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1364 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 680 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 680 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 684 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 684 + } + } + }, + "62a0b9433de29f001cb6626f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10949 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3204 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3204 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3367 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3367 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4217 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4217 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 161 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 161 + } + } + }, + "64ae84fa90b5785d4716e362": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11794 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5897 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5897 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5897 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5897 + } + } + }, + "64c03a19bab542bccfebc4c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16980 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1049 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1049 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14738 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14738 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1193 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1193 + } + } + }, + "62fa8155227ab843d407b3f5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28593 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10286 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10286 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5874 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5874 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3852 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3852 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8581 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8581 + } + } + }, + "6593fa76f58e905ecac67a12": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36028 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18014 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18014 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18014 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18014 + } + } + }, + "6413051f44e9291a6455e3e7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 42 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + } + }, + "650002893cc619d36e43a166": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1826 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 267 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 267 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 518 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 518 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 523 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 523 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 518 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 518 + } + } + }, + "64362dac4e5fea401a0f19af": { + "$overall": { + "2024-11-01T00:00:00+02:00": 144428 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72215 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 72215 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72213 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 72213 + } + } + }, + "6582723f08be7e008ad65128": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21366 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8645 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8645 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8645 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8645 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4076 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4076 + } + } + }, + "64b4e554d82471a0444f8415": { + "$overall": { + "2024-11-01T00:00:00+02:00": 118578 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29646 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29646 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29647 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29647 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29642 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29642 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29643 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29643 + } + } + }, + "666a0c480f48d9a01fea8e2c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4165 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1036 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1036 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3129 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3129 + } + } + }, + "6635236c843a6a8496d4d38e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 656 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 328 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 328 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 328 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 328 + } + } + }, + "66cde6ffcf609b13433bff6b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36505 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13766 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13766 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18302 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18302 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4437 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4437 + } + } + }, + "669d47da98a7c2cace1dea46": { + "$overall": { + "2024-11-01T00:00:00+02:00": 194 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 84 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 84 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 82 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 82 + } + } + }, + "65c67ec9b637cdb23e09edef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 820 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 410 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 410 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 410 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 410 + } + } + }, + "6639346438754624b559d51d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1083 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 33 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 33 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 28 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 718 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 718 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 304 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 304 + } + } + }, + "66f0dd46cf609b13436885f5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1233 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 411 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 411 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 411 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 411 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 411 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 411 + } + } + }, + "64654f8125b1fb30f26b3ce3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 276877 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10889 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10889 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1703 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1703 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 111277 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 111277 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45126 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 45126 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 107882 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 107882 + } + } + }, + "636a6b4d9e04bb11b575cf74": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8588 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4294 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4294 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3886 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3886 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 408 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 408 + } + } + }, + "653ffc80c93cc0129ad126ab": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3117 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 874 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 874 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 874 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 495 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 495 + } + } + }, + "6571c58bfd6a606fd6c8f3f0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 956 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 478 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 478 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 478 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 478 + } + } + }, + "64011cb9841d0bacae01f6ff": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8801 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2091 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2091 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 131 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 131 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2260 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2260 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2072 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2072 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2241 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2241 + } + } + }, + "663d16aa34ea4ddc9b9f2f3d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1774 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 887 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 887 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 887 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 887 + } + } + }, + "64480a48771e7bed3dc3600e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 109233 + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28979 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 28979 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6504 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6504 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 75 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 75 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 73675 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 73675 + } + } + }, + "630cb844fafbba9bf010f186": { + "$overall": { + "2024-11-01T00:00:00+02:00": 248538 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 48883 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 48883 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72065 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 72065 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 49088 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 49088 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6432 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6432 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 72070 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 72070 + } + } + }, + "652e5833fff93419480c951b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 463818 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 231905 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 231905 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 231913 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 231913 + } + } + }, + "652d099361752f4c288defb9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1716 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 858 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 858 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 858 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 858 + } + } + }, + "665f34e28e2550325700cda9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 116 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 58 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 58 + } + } + }, + "63ad63d5a3d6d6f6e46334a0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15324 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5485 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5485 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4352 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4352 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4353 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4353 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1134 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1134 + } + } + }, + "6644fabbfbadc9d325d90248": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4383 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1559 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1559 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 674 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 674 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 44 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1428 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1428 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 676 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 676 + } + } + }, + "6670ed6e78b0832675c76f6a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3065 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1026 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1026 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1026 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1026 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1013 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1013 + } + } + }, + "63ff64e6f591ea2e097d64bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6833 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1566 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1566 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 112 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 112 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3598 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3598 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 21 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1536 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1536 + } + } + }, + "65799faaab5221590f7f1cc1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5248 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2282 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2282 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2555 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2555 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 273 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 273 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 138 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 138 + } + } + }, + "64ca38d1a936a1d182441a27": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3226 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1613 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1613 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1613 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1613 + } + } + }, + "6578af0c7500743a91038c4b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 363 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 121 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 121 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 121 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 121 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 121 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 121 + } + } + }, + "63ecb58fd38e757796a68c1c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28679507 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3703 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3703 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7041512 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7041512 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7242863 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7242863 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7195749 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7195749 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7195680 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7195680 + } + } + }, + "641df7485d9af70da9c29397": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3775 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 644 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 644 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 829 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 829 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1473 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1473 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 829 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 829 + } + } + }, + "63eaaa4dd1a5554c97db1b86": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6130 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3065 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3065 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3061 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3061 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4 + } + } + }, + "634826ed27d50dea0ba493f9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 51955 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25976 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 25976 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25979 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 25979 + } + } + }, + "65d368c9a1dfc9ae299cbd1e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3528 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1988 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1988 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 826 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 826 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 714 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 714 + } + } + }, + "627cf999d4869d0018625c67": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9598 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 120 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 120 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4739 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4739 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4739 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4739 + } + } + }, + "6421cf785876c8840c441642": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1093 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 472 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 472 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 148 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 148 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 472 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 472 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + } + }, + "659b604dbfebd8d8d51299ca": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10443 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3481 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3481 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3481 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3481 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3481 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3481 + } + } + }, + "6634cbe4612e6f34a400b05e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1350 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 510 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 510 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 510 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 510 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 330 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 330 + } + } + }, + "66319137a95d2d5be0cffdd5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2326 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1163 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1163 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1163 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1163 + } + } + }, + "6627ff494ad60adb146eca32": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6449 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1183 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1183 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1533 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1533 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2460 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2460 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 256 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 256 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1017 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1017 + } + } + }, + "66a0f9f7f502999ed8453644": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2130 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 710 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 710 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 710 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 710 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 710 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 710 + } + } + }, + "654eb4b8d71fd8620c6d174e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 113516 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28379 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 28379 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28379 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 28379 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28379 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 28379 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 28379 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 28379 + } + } + }, + "6453755860f1803b3a3fba83": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1390 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 477 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 436 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 436 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 477 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 477 + } + } + }, + "63317d6327d50dea0b03d16e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1537 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 44 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1418 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1418 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 75 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 75 + } + } + }, + "64e32ac81e192345f283d627": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3737 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 557 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 557 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1638 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1638 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1542 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1542 + } + } + }, + "653fbf348928fc83db032ef4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7703 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3850 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3850 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3843 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3843 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9 + } + } + }, + "63a3be9fe0b58885ea9a25b0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 644 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 322 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 322 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 322 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 322 + } + } + }, + "66b35706aa4218d126bbbf49": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1441 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 481 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 481 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 480 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 480 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 480 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 480 + } + } + }, + "64477125ac1c08f04edc14aa": { + "$overall": { + "2024-11-01T00:00:00+02:00": 50785 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20521 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20521 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4872 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4872 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4871 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4871 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20521 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20521 + } + } + }, + "6685216144e8f8b477105e38": { + "$overall": { + "2024-11-01T00:00:00+02:00": 16468 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8235 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8235 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8233 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8233 + } + } + }, + "669ba0033c94be87b123b8c5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 104652 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 52672 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 52672 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 51980 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 51980 + } + } + }, + "6508ba6e7722fc74ea9637ec": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25339 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10121 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10121 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5402 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5402 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3796 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3796 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4414 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4414 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1606 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1606 + } + } + }, + "661541fa6df43c247a0a31f9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2584 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1234 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1234 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1234 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1234 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 116 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 116 + } + } + }, + "6742dd7d1bb91e63d914a510": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5 + } + } + }, + "668708d194330132afefdfcc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13960 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6980 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6980 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6980 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6980 + } + } + }, + "651aea5133924ee69071720d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 126006 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11438 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11438 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 36075 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 36075 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 35920 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 35920 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30919 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30919 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11654 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11654 + } + } + }, + "641d8c2fda8256b93f228fd0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 66325 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 33164 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 33164 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 33161 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 33161 + } + } + }, + "660b31f5b551758561fb037c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1271014 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 75545 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 75545 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 75548 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 75548 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 383439 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 383439 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 660940 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 660940 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 75542 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 75542 + } + } + }, + "6557f01a8c7cd7ff32f2d475": { + "$overall": { + "2024-11-01T00:00:00+02:00": 287087 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 56871 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 56871 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58238 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 58238 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 58238 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 58238 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 56870 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 56870 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 56870 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 56870 + } + } + }, + "646eaa72e0d0d1b39ac3b281": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1890 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 945 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 945 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 945 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 945 + } + } + }, + "642d9001c6b53aa5dd5124f5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2264722 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20129 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20129 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20129 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20129 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1201296 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1201296 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1023168 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1023168 + } + } + }, + "66d9e408cf609b134331065f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40205 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 27659 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 27659 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 560 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 560 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 638 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 638 + } + }, + "custom": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5543 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5543 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5805 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5805 + } + } + }, + "67063d37ba6a0580bfccc7e3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 897 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 124 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 124 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 129 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 129 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 398 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 398 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 246 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 246 + } + } + }, + "6600f0d38453b14f2ff41c7d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1454 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 300 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 300 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 577 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 577 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 576 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 576 + } + } + }, + "671bba5a0ab03d946718eb3b": { + "$overall": { + "2024-11-01T00:00:00+02:00": 453 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 19 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 19 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 232 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 232 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 76 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 76 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 123 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 123 + } + } + }, + "65f086bfeb4977909f034ec2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2196 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1098 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1098 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1098 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1098 + } + } + }, + "6322333a2d7b721933bd8cf6": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23048 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7252 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7252 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8307 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8307 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7489 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7489 + } + } + }, + "659d3b40f58e905eca1793b0": { + "$overall": { + "2024-11-01T00:00:00+02:00": 244 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 122 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 122 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 122 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 122 + } + } + }, + "6321e40f1a3ff48f5712daa8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 53500 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26750 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 26750 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26750 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 26750 + } + } + }, + "652ea963fa315318e7925510": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7765 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1836 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1836 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1132 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1132 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1132 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1132 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3665 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3665 + } + } + }, + "66fd558bcf609b1343268e49": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40061 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20030 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20030 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20031 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20031 + } + } + }, + "65e5b2bac09e1cf82ec747bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1566 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 783 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 783 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 783 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 783 + } + } + }, + "653ba5e0583a1ec8f82b3589": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3547 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1774 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1774 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1773 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1773 + } + } + }, + "6507114e90b85787fd58b6d2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 68756 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23632 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 23632 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20340 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 20340 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2946 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2946 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 21838 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 21838 + } + } + }, + "63a32471bee1d5aed72cc01d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14462 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7231 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7231 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7231 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7231 + } + } + }, + "64747ec18b0b51ed1741923d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2010 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1005 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1005 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1005 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1005 + } + } + }, + "668d398684227ca750502c57": { + "$overall": { + "2024-11-01T00:00:00+02:00": 53223 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15659 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15659 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 278 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 278 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18381 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18381 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18905 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 18905 + } + } + }, + "636975131fbb836889d6f696": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14772 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6284 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6284 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6804 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6804 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1684 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1684 + } + } + }, + "6422c50c5876c8840c8b4668": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8418 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4209 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4209 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4209 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4209 + } + } + }, + "63b85858b775d8ef0ed805cb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 68963 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22994 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22994 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22994 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22994 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22975 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22975 + } + } + }, + "6605a26d8b3193b7f042cff3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 312 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 156 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 156 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 156 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 156 + } + } + }, + "64b03bae2eb78d11de58c1bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 18429 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9215 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9215 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9214 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9214 + } + } + }, + "660c351dbfb1f0d56f7a6fcc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7622 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 645 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 645 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 645 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 645 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 645 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 645 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2468 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2468 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3219 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3219 + } + } + }, + "6578cf542c7e267bc3e3897a": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14043 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3887 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3887 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5078 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5078 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5078 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5078 + } + } + }, + "63bcf68d35958e9aa59578ff": { + "$overall": { + "2024-11-01T00:00:00+02:00": 566 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 283 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 283 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 283 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 283 + } + } + }, + "6727412d456590b1d8992d83": { + "$overall": { + "2024-11-01T00:00:00+02:00": 605 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 303 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 303 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 298 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 298 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4 + } + } + }, + "6671df91f4a238f107fe9f56": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2405 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 719 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 719 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 124 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 124 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 843 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 843 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 376 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 376 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 343 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 343 + } + } + }, + "67463a802c32fe389fa61341": { + "$overall": { + "2024-11-01T00:00:00+02:00": 55 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 32 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 32 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22 + } + } + }, + "66a5008b076eb7c94c1adb92": { + "$overall": { + "2024-11-01T00:00:00+02:00": 64 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 40 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 40 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 24 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 24 + } + } + }, + "65f3db2b4599fa000c2becc7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1834 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 915 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 915 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 917 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 917 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2 + } + } + }, + "65af6ad4f58e905ecab29441": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4826194 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2413171 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2413171 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2413023 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2413023 + } + } + }, + "666b875bb3464b7775f56472": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4088 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2044 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2044 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2044 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2044 + } + } + }, + "658c15eae2d5aed98bef8f80": { + "$overall": { + "2024-11-01T00:00:00+02:00": 41359 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 13705 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 13705 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7180 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7180 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2388 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2388 + } + }, + "custom": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5324 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5324 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4243 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4243 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8519 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8519 + } + } + }, + "64f09213faeddba41e0137d9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7267 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1759 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1759 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2252 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2252 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2145 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2145 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 176 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 176 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 935 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 935 + } + } + }, + "62ac67523de29f001cb8bfdb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1180 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 590 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 590 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 590 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 590 + } + } + }, + "65caa89e619fe4f9cf723907": { + "$overall": { + "2024-11-01T00:00:00+02:00": 37938 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5828 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5828 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 26282 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 26282 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5828 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5828 + } + } + }, + "646e25734c1d7d4ec22acfa5": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11208 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5405 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5405 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 179 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 179 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4467 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4467 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1157 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1157 + } + } + }, + "6580bfe12c7e267bc3af8dc2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25491 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8497 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8497 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8497 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8497 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8497 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8497 + } + } + }, + "639c385254ca30325e86f445": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29268 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14634 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14634 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14634 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14634 + } + } + }, + "64ef9990faeddba41ef3caae": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1606 + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 134 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 134 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 803 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 803 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 669 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 669 + } + } + }, + "63f2c2af62dd0f648118e82f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 88940 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44470 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 44470 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 29154 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 29154 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15316 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15316 + } + } + }, + "6572fd669788e6811d7b4d64": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23180 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7727 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7727 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7727 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7727 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7726 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7726 + } + } + }, + "657752b62682a8ccf9887a7c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7765 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3900 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3900 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 156 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 156 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3707 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3707 + } + } + }, + "65df17f92b39eba95ab6ae95": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1732 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 869 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 869 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 863 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 863 + } + } + }, + "64e793a5dd99c21f1ef1ddcb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 35548 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5832 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5832 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6265 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6265 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12072 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 12072 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11379 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11379 + } + } + }, + "64e77d4b96eacf22439b13cd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2644 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 574 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 574 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1322 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1322 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 549 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 549 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 199 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 199 + } + } + }, + "64d2121ee443560425c07189": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3962 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1981 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1981 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1981 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1981 + } + } + }, + "6494e6cab1ef6a7f8830e871": { + "$overall": { + "2024-11-01T00:00:00+02:00": 824 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 412 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 412 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 412 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 412 + } + } + }, + "65f2f98b79ffb10acbce98c2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2294 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 869 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 869 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1147 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1147 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 278 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 278 + } + } + }, + "63e9893f8ce4830a19151391": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6252 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 615 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 615 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3325 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3325 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2312 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2312 + } + } + }, + "671b580c7cf00cbadbb9b0c3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1902 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 634 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 634 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 634 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 634 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 634 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 634 + } + } + }, + "637daec62610c873786139a1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7597 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3821 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3821 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3689 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3689 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 87 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 87 + } + } + }, + "65453e2c44cca773bdf1cdd7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1104 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 552 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 552 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 552 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 552 + } + } + }, + "65f8f7959343b5be34ab729c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22715 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11358 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11358 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11357 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11357 + } + } + }, + "6523e5f01941f73be45e3ac3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1344 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 672 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 672 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 672 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 672 + } + } + }, + "652e95466c3964c5a2832222": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15598 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2594 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2594 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5233 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5233 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5123 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5123 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2648 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2648 + } + } + }, + "641c3bb95d9af70da93f09a9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4144 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1500 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1500 + } + }, + "custom": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1088 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1088 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1550 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1550 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6 + } + } + }, + "63ed36d0f38aed64140c6720": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1769 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 590 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 590 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 874 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 874 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 305 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 305 + } + } + }, + "63fe730e5787050c5df466a9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 17266 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4189 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4189 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7061 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7061 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 465 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 465 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 300 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 300 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5251 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5251 + } + } + }, + "63c7b1ddab8d9270851b219f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1120 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 560 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 560 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 560 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 560 + } + } + }, + "6400caeef591ea2e090f6040": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10477917 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1736691 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1736691 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1737812 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1737812 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1738055 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1738055 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1736693 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1736693 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1736722 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1736722 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 54240 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 54240 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1737704 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1737704 + } + } + }, + "643e8d58b6a53d8ae70721c2": { + "$overall": { + "2024-11-01T00:00:00+02:00": 61979 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30989 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30989 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30990 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30990 + } + } + }, + "674586592c32fe389f95879e": { + "$overall": { + "2024-11-01T00:00:00+02:00": 414 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 208 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 208 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 206 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 206 + } + } + }, + "64e3554548249e7e76aeffc3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 50719 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14793 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14793 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15164 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 15164 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2612 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2612 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14792 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14792 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3358 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3358 + } + } + }, + "65bb0ed1516fabd8520d5673": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2339 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 94 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 94 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 855 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 855 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1390 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1390 + } + } + }, + "67235ab730d1c099604bf849": { + "$overall": { + "2024-11-01T00:00:00+02:00": 953 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 304 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 304 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 306 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 306 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 343 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 343 + } + } + }, + "654bab8b191027742aa28ec7": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3428 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1142 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1142 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1143 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1143 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1143 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1143 + } + } + }, + "673b3b592f10dba8e8616a90": { + "$overall": { + "2024-11-01T00:00:00+02:00": 711 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 166 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 166 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 395 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 395 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 150 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 150 + } + } + }, + "64469b1b4919b8d7cbf845ef": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14988 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4921 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4921 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 469 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 469 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4550 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4550 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2554 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2554 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2494 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2494 + } + } + }, + "66032532f43359bff28c011f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1170879 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 585441 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 585441 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 585438 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 585438 + } + } + }, + "63cea3496779056a3f2fff8d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7295 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1191 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1191 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1217 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1217 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1249 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1249 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1191 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1191 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1191 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1191 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 33 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 33 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1223 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1223 + } + } + }, + "63b86f5db775d8ef0ed8f08f": { + "$overall": { + "2024-11-01T00:00:00+02:00": 63284 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 31641 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 31641 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 31643 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 31643 + } + } + }, + "65fbe3a58453b14f2f670e14": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10314 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 576 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 576 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3303 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3303 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3132 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3132 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 171 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 171 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3132 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3132 + } + } + }, + "667b514853d09da0827f2c20": { + "$overall": { + "2024-11-01T00:00:00+02:00": 740 + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 45 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 45 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 37 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 37 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 658 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 658 + } + } + }, + "636044f61fbb8368897eadbc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 246615 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 123306 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 123306 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 123309 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 123309 + } + } + }, + "66688112d05b953ba10ab594": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14640 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4827 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4827 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4796 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4796 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 190 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 190 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4827 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4827 + } + } + }, + "640f33277df3c830240b71b4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1137 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 429 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 429 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 287 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 287 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 421 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 421 + } + } + }, + "6540cb89c086274eec8fb0b1": { + "$overall": { + "2024-11-01T00:00:00+02:00": 44012 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10855 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10855 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 22006 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 22006 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 11151 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 11151 + } + } + }, + "64a079225cccb636d843bd26": { + "$overall": { + "2024-11-01T00:00:00+02:00": 330 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 165 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 165 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 165 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 165 + } + } + }, + "66cb2b9ecf609b1343ac5d85": { + "$overall": { + "2024-11-01T00:00:00+02:00": 15254 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7627 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7627 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7627 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7627 + } + } + }, + "667abaa4218289a1c466b985": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2590 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1295 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1295 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1295 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1295 + } + } + }, + "63a32b86bee1d5aed72d7f15": { + "$overall": { + "2024-11-01T00:00:00+02:00": 23557 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4701 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4701 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5502 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5502 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 801 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 801 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 7852 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 7852 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4701 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4701 + } + } + }, + "6414934fda8256b93f957df3": { + "$overall": { + "2024-11-01T00:00:00+02:00": 914 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 457 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 457 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 457 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 457 + } + } + }, + "64eda93c14b8a3ace6f4c5e9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 25084 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 12573 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 12573 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2652 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2652 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3288 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3288 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3288 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3288 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3283 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3283 + } + } + }, + "6298723bbf5f05001986dd80": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2646 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1323 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1323 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1323 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1323 + } + } + }, + "652efbf06c3964c5a2845118": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1508 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 754 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 754 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 152 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 152 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 602 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 602 + } + } + }, + "634d5b1a27d50dea0bbfa3bd": { + "$overall": { + "2024-11-01T00:00:00+02:00": 39367 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14946 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14946 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 409 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 409 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 14508 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 14508 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9504 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9504 + } + } + }, + "64aa3f5d5f8a9af8437ea498": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20333 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4425 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4425 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6108 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 6108 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4643 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4643 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 122 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 122 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4534 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4534 + } + }, + "delay": { + "$overall": { + "2024-11-01T00:00:00+02:00": 501 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 501 + } + } + }, + "651ea1381df1b46454f21192": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4011 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2005 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2005 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2006 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2006 + } + } + }, + "67219003d36466abaeb1f995": { + "$overall": { + "2024-11-01T00:00:00+02:00": 792 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 396 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 396 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 396 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 396 + } + } + }, + "62fe5f8f227ab843d4272a38": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6474 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2193 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2193 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2084 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2084 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2197 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2197 + } + } + }, + "66362cc66c5885a3257940bb": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4948 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2474 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2474 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2466 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2466 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 8 + } + } + }, + "66cbf5decf609b134349ac56": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2570 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1285 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1285 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1285 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1285 + } + } + }, + "63362369e2a2de81df9b0573": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6368 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1722 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1722 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1731 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1731 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1453 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1453 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1462 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1462 + } + } + }, + "6630a51483064b959c801961": { + "$overall": { + "2024-11-01T00:00:00+02:00": 148997 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 64866 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 64866 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 74498 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 74498 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 9633 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 9633 + } + } + }, + "66ea0719cf609b1343a50a19": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1494 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 552 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 552 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 522 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 522 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 420 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 420 + } + } + }, + "64197347da8256b93fd7bbb8": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1238 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 619 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 619 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 619 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 619 + } + } + }, + "66437ce7b370e6b94e711d3c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 651 + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 43 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 43 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 294 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 294 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 314 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 314 + } + } + }, + "6524263d72a8166dd08346c9": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2082 + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 175 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 175 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 954 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 954 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 82 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 82 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 871 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 871 + } + } + }, + "63c146116c33f15eefc12c8d": { + "$overall": { + "2024-11-01T00:00:00+02:00": 8658 + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2422 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2422 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1740 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1740 + } + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 334 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 334 + } + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2422 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2422 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 870 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 870 + } + }, + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 870 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 870 + } + } }, - "undefined": { + "65f440088edf3eee31cf371b": { "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "Reset Password": { - "2024-12-01T00:00:00+02:00": 13 + "2024-11-01T00:00:00+02:00": 2320 }, - "User Welcome Email": { - "2024-12-01T00:00:00+02:00": 20 + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1160 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1160 + } }, - "Client UserAccount verification": { - "2024-12-01T00:00:00+02:00": 14 + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1160 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1160 + } + } + }, + "65ceaef2535ad490c942a13c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 47464 }, - "DOWNLOAD_FILES": { - "2024-12-01T00:00:00+02:00": 1 + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4709 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4709 + } }, - "WEBFORM_CREATED": { - "2024-12-01T00:00:00+02:00": 3 + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4711 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4711 + } }, - "incorrect-password": { - "2024-12-01T00:00:00+02:00": 15 + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2519 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 2519 + } }, - "FILE_UPLOAD": { - "2024-12-01T00:00:00+02:00": 187 + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30888 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30888 + } }, - "Account Verification": { - "2024-12-01T00:00:00+02:00": 27 + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 4637 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 4637 + } + } + }, + "6478b60f3a95df70dfeab13c": { + "$overall": { + "2024-11-01T00:00:00+02:00": 20376 }, - "WEBFORM_SUBMITTED": { - "2024-12-01T00:00:00+02:00": 1 + "chat": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10188 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10188 + } }, - "Schedule Project": { - "2024-12-01T00:00:00+02:00": 392 + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 10188 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 10188 + } } - } - } - }, - "B. Process Workflow Step - [Triggers] [Total Events]": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1536 - }, - "63215ba3a4ca4df9242c24c4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1536 }, - "push": { + "655cccfb8c7cd7ff32031773": { "$overall": { - "2024-12-01T00:00:00+02:00": 190 + "2024-11-01T00:00:00+02:00": 440 }, - "undefined": { - "2024-12-01T00:00:00+02:00": 190 + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 110 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 110 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 220 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 220 + } + }, + "sms": { + "$overall": { + "2024-11-01T00:00:00+02:00": 110 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 110 + } } }, - "trigger": { + "65537ecc00c55a508c06f6ce": { "$overall": { - "2024-12-01T00:00:00+02:00": 673 + "2024-11-01T00:00:00+02:00": 10850 }, - "undefined": { - "2024-12-01T00:00:00+02:00": 673 + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5425 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5425 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 5425 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 5425 + } } }, - "email": { + "6635b78bbe41ef77518aaba0": { "$overall": { - "2024-12-01T00:00:00+02:00": 673 + "2024-11-01T00:00:00+02:00": 60390 }, - "undefined": { - "2024-12-01T00:00:00+02:00": 673 + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30195 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30195 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 30195 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 30195 + } } - } - } - } - }, - "time_comparison": { - "date_range": { - "from_date": "2024-11-01T00:00:00+02:00", - "to_date": "2024-11-30T23:59:59.999000+02:00" - }, - "series": { - "A. Notification Subscriber Event Trigger [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1032 }, - "63215ba3a4ca4df9242c24c4": { + "6433d2fc6e1e72f63f63b5fe": { "$overall": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 95472 }, - "undefined": { + "trigger": { "$overall": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 47736 }, - "incorrect-password": { - "2024-11-01T00:00:00+02:00": 16 + "undefined": { + "2024-11-01T00:00:00+02:00": 47736 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 47736 }, - "Reset Password": { - "2024-11-01T00:00:00+02:00": 5 + "undefined": { + "2024-11-01T00:00:00+02:00": 47736 + } + } + }, + "63ac163b2588b530704387fc": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1797 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 599 }, - "Client UserAccount verification": { - "2024-11-01T00:00:00+02:00": 13 + "undefined": { + "2024-11-01T00:00:00+02:00": 599 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 599 }, - "TAG_ADDED": { - "2024-11-01T00:00:00+02:00": 32 + "undefined": { + "2024-11-01T00:00:00+02:00": 599 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 599 }, - "Account Verification": { - "2024-11-01T00:00:00+02:00": 323 + "undefined": { + "2024-11-01T00:00:00+02:00": 599 + } + } + }, + "648c0658616db8f05a735ef4": { + "$overall": { + "2024-11-01T00:00:00+02:00": 6877 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2522 }, - "User Welcome Email": { - "2024-11-01T00:00:00+02:00": 22 + "undefined": { + "2024-11-01T00:00:00+02:00": 2522 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1029 }, - "Schedule Project": { - "2024-11-01T00:00:00+02:00": 514 + "undefined": { + "2024-11-01T00:00:00+02:00": 1029 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1967 }, - "FILE_UPLOAD": { - "2024-11-01T00:00:00+02:00": 106 + "undefined": { + "2024-11-01T00:00:00+02:00": 1967 + } + }, + "push": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1359 }, - "REMIND_INVOICE": { - "2024-11-01T00:00:00+02:00": 1 + "undefined": { + "2024-11-01T00:00:00+02:00": 1359 } } - } - }, - "B. Process Workflow Step - [Triggers] [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2170 }, - "63215ba3a4ca4df9242c24c4": { + "66828021e73f8d95adbb100f": { "$overall": { - "2024-11-01T00:00:00+02:00": 2170 + "2024-11-01T00:00:00+02:00": 12316 + }, + "digest": { + "$overall": { + "2024-11-01T00:00:00+02:00": 188 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 188 + } }, "email": { "$overall": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 2625 }, "undefined": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 2625 } }, - "push": { + "trigger": { "$overall": { - "2024-11-01T00:00:00+02:00": 106 + "2024-11-01T00:00:00+02:00": 5529 }, "undefined": { - "2024-11-01T00:00:00+02:00": 106 + "2024-11-01T00:00:00+02:00": 5529 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 3974 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 3974 } + } + }, + "658e6a3b0ad62708782a93bf": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1556 }, "trigger": { "$overall": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 778 }, "undefined": { - "2024-11-01T00:00:00+02:00": 1032 + "2024-11-01T00:00:00+02:00": 778 + } + }, + "in_app": { + "$overall": { + "2024-11-01T00:00:00+02:00": 778 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 778 + } + } + }, + "669187bb9efb8372ce7c6483": { + "$overall": { + "2024-11-01T00:00:00+02:00": 2102 + }, + "trigger": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1051 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1051 + } + }, + "email": { + "$overall": { + "2024-11-01T00:00:00+02:00": 1051 + }, + "undefined": { + "2024-11-01T00:00:00+02:00": 1051 } } } diff --git a/apps/api/src/app/insights/services/metrics-calculator.service.ts b/apps/api/src/app/insights/services/metrics-calculator.service.ts index d889266abf5..60df9dcc384 100644 --- a/apps/api/src/app/insights/services/metrics-calculator.service.ts +++ b/apps/api/src/app/insights/services/metrics-calculator.service.ts @@ -9,6 +9,7 @@ import { IMixpanelResponse, IMetricStats, MixpanelSeriesNameEnum, + IChannelData, } from '../types/usage-insights.types'; @Injectable() @@ -59,28 +60,40 @@ export class MetricsCalculatorService { Logger.debug(`Calculating inbox metrics for organization: ${orgId}`); const getMetricStats = ( currentSeriesData: ISeriesData | undefined, - previousSeriesData: ISeriesData | undefined, - orgKey: string + previousSeriesData: ISeriesData | undefined ): IMetricStats => { if (!currentSeriesData || !previousSeriesData) { - Logger.debug(`No series data available for ${orgKey}`); + Logger.debug(`No series data available for ${orgId}`); + + return { current: 0, previous: 0, change: 0 }; + } + + const currentOrgData = currentSeriesData[orgId]; + const previousOrgData = previousSeriesData[orgId]; + + if (!currentOrgData || !previousOrgData) { + Logger.debug(`No series data available for ${orgId}`); return { current: 0, previous: 0, change: 0 }; } - const currentData = currentSeriesData[orgKey]; - const previousData = previousSeriesData[orgKey]; + const currentData = currentOrgData[this.roundToStartOfDay(dateRange.to_date)]; + const previousData = previousOrgData[this.roundToStartOfDay(dateRange.from_date)]; + + console.log(currentOrgData, 'HIII', this.roundToStartOfDay(dateRange.to_date)); + console.log(previousOrgData, 'HIII', this.roundToStartOfDay(dateRange.from_date)); + if (!currentData || !previousData) { - Logger.debug(`No data available for ${orgKey}`); + Logger.debug(`No data available for ${orgId}`); return { current: 0, previous: 0, change: 0 }; } - const current = Number(Object.values(currentData)[0] || 0); - const previous = Number(Object.values(previousData)[0] || 0); + const current = Number(currentData || 0); + const previous = Number(previousData || 0); const change = this.calculateChange(current, previous); - Logger.debug(`Metric stats for ${orgKey}: current=${current}, previous=${previous}, change=${change}%`); + Logger.debug(`Metric stats for ${orgId}: current=${current}, previous=${previous}, change=${change}%`); return { current, previous, change }; }; @@ -88,36 +101,33 @@ export class MetricsCalculatorService { return { sessionInitialized: getMetricStats( inboxSeries[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED], - orgId + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED] ), updatePreferences: getMetricStats( inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES], - orgId + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES] ), markNotification: getMetricStats( inboxSeries[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION], - orgId + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION] ), updateAction: getMetricStats( inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION], - orgId + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION] ), }; } calculateOverallInboxMetrics( + orgId: string, inboxSeries: IInboxResponse['series'], inboxTimeComparison: IInboxResponse['time_comparison']['series'] ): IInboxMetrics { Logger.debug('Calculating overall inbox metrics'); const getMetricStats = ( - currentSeriesData: ISeriesData | undefined, - previousSeriesData: ISeriesData | undefined + currentSeriesData: IChannelData | undefined, + previousSeriesData: IChannelData | undefined ): IMetricStats => { if (!currentSeriesData?.$overall || !previousSeriesData?.$overall) { return { current: 0, previous: 0, change: 0 }; @@ -132,20 +142,20 @@ export class MetricsCalculatorService { return { sessionInitialized: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED] + inboxSeries[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED][orgId], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED][orgId] ), updatePreferences: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES] + inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES][orgId], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES][orgId] ), markNotification: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION] + inboxSeries[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION][orgId], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION][orgId] ), updateAction: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION] + inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION][orgId], + inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION][orgId] ), }; } @@ -197,23 +207,17 @@ export class MetricsCalculatorService { } calculateWorkflowStats( + orgId: string, subscriberSeries: ISeriesData, subscriberTimeComparison: ISeriesData ): IMixpanelResponse['workflowStats'] { Logger.debug('Calculating workflow statistics'); const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; - const firstOrgId = Object.keys(subscriberSeries).find((key) => key !== '$overall'); - if (!firstOrgId) { - Logger.debug('No organization data found for workflow stats'); - - return workflowStats; - } - - const orgData = subscriberSeries[firstOrgId]?.undefined; - const orgPreviousData = subscriberTimeComparison[firstOrgId]?.undefined; + const orgData = subscriberSeries[orgId]?.undefined; + const orgPreviousData = subscriberTimeComparison[orgId]?.undefined; if (!orgData || !orgPreviousData) { - Logger.debug(`No workflow data found for organization: ${firstOrgId}`); + Logger.debug(`No workflow data found for organization: ${orgId}`); return workflowStats; } diff --git a/apps/api/src/app/insights/services/mixpanel.service.ts b/apps/api/src/app/insights/services/mixpanel.service.ts index 1cc1ac14f04..80bd01f7f65 100644 --- a/apps/api/src/app/insights/services/mixpanel.service.ts +++ b/apps/api/src/app/insights/services/mixpanel.service.ts @@ -101,6 +101,7 @@ export class MixpanelService { try { Logger.debug('Making Mixpanel API request for inbox insights'); + const response = await axios.get('https://mixpanel.com/api/2.0/insights', { params: { project_id: '2667883', diff --git a/apps/api/src/app/insights/services/organization-notification.service.ts b/apps/api/src/app/insights/services/organization-notification.service.ts index 6081671889c..a6129e4e180 100644 --- a/apps/api/src/app/insights/services/organization-notification.service.ts +++ b/apps/api/src/app/insights/services/organization-notification.service.ts @@ -54,6 +54,7 @@ export class OrganizationNotificationService { email: `dima+testing-${organization._id}@novu.co`, }, payload: { + organizationName: organization.name, period: { current: dateRange.to_date, previous: dateRange.from_date, @@ -63,6 +64,8 @@ export class OrganizationNotificationService { email: metrics.channelBreakdown.email || { current: 0, previous: 0, change: 0 }, sms: metrics.channelBreakdown.sms || { current: 0, previous: 0, change: 0 }, push: metrics.channelBreakdown.push || { current: 0, previous: 0, change: 0 }, + inApp: metrics.channelBreakdown.in_app || { current: 0, previous: 0, change: 0 }, + chat: metrics.channelBreakdown.chat || { current: 0, previous: 0, change: 0 }, }, inboxMetrics: { sessionInitialized: metrics.inboxMetrics?.sessionInitialized, diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 66e5543f7a0..4a4295d7ef5 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -46,33 +46,25 @@ export class UsageInsights { return null; } - const seriesDateRange = { - from_date: mixpanelData.time_comparison.date_range.from_date, - to_date: mixpanelData.date_range.to_date, - }; - - const workflowStats = this.metricsCalculator.calculateWorkflowStats(subscriberSeries, subscriberTimeComparison); - mixpanelData.workflowStats = workflowStats; - - const defaultInboxMetrics: IInboxMetrics = { - sessionInitialized: { current: 0, previous: 0, change: 0 }, - updatePreferences: { current: 0, previous: 0, change: 0 }, - markNotification: { current: 0, previous: 0, change: 0 }, - updateAction: { current: 0, previous: 0, change: 0 }, - }; - - Logger.debug('Initializing inbox stats'); - const inboxStats: IUsageInsightsResponse['inboxStats'] = { - byOrganization: {}, - overall: inboxData?.series - ? this.metricsCalculator.calculateOverallInboxMetrics(inboxData.series, inboxData.time_comparison.series) - : defaultInboxMetrics, - }; - Logger.debug('Processing organization data'); for (const [orgId, orgData] of Object.entries(workflowSeries)) { if (orgId === '$overall') continue; + const workflowStats = this.metricsCalculator.calculateWorkflowStats( + orgId, + subscriberSeries, + subscriberTimeComparison + ); + mixpanelData.workflowStats = workflowStats; + + const defaultInboxMetrics: IInboxMetrics = { + sessionInitialized: { current: 0, previous: 0, change: 0 }, + updatePreferences: { current: 0, previous: 0, change: 0 }, + markNotification: { current: 0, previous: 0, change: 0 }, + updateAction: { current: 0, previous: 0, change: 0 }, + }; + + Logger.debug('Initializing inbox stats'); Logger.debug(`Processing metrics for organization: ${orgId}`); const metrics = this.metricsCalculator.createOrganizationMetrics( orgId, @@ -103,25 +95,23 @@ export class UsageInsights { inboxData.series, inboxData.time_comparison.series, orgId, - seriesDateRange + { + from_date: inboxData.time_comparison.date_range.from_date, + to_date: inboxData.date_range.from_date, + } ); metrics.inboxMetrics = inboxMetrics; - inboxStats.byOrganization[orgId] = inboxMetrics; } else { Logger.debug(`Using default inbox metrics for organization: ${orgId}`); metrics.inboxMetrics = defaultInboxMetrics; - inboxStats.byOrganization[orgId] = defaultInboxMetrics; } - await this.organizationNotification.sendOrganizationNotification(metrics, workflowStats, seriesDateRange); + await this.organizationNotification.sendOrganizationNotification(metrics, workflowStats, { + from_date: mixpanelData.time_comparison.date_range.from_date, + to_date: mixpanelData.date_range.to_date, + }); } Logger.debug('UsageInsights execution completed successfully'); - - return { - series: mixpanelData.series, - workflowStats: mixpanelData.workflowStats, - inboxStats, - }; } } diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index 34259a4fb7a..d23b2f3b924 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -94,10 +94,10 @@ function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBrea @@ -114,6 +114,17 @@ function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBrea } function InboxMetrics({ metrics }: { metrics: IUsageEmailData['inboxMetrics'] }) { + if ( + !metrics.markNotification.current && + !metrics.markNotification.previous && + !metrics.sessionInitialized.current && + !metrics.sessionInitialized.previous && + !metrics.updatePreferences.previous && + !metrics.updatePreferences.current + ) { + return null; + } + return (
diff --git a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts index 38163ec345e..241a555b994 100644 --- a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts +++ b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts @@ -3,7 +3,6 @@ import { workflow } from '@novu/framework'; import { z } from 'zod'; import UsageInsightsEmail from './email'; import { IUsageEmailData } from './types'; -import { sampleUsageData } from './sample-data'; const marketingLinkSchema = z .object({ @@ -75,30 +74,32 @@ export const usageInsightsWorkflow = workflow( name: 'Usage Insights', payloadSchema: z .object({ - organizationName: z.string().default(sampleUsageData.organizationName), + organizationName: z.string(), period: z .object({ - current: z.string().default(sampleUsageData.period.current), - previous: z.string().default(sampleUsageData.period.previous), + current: z.string(), + previous: z.string(), }) .required(), - subscriberNotifications: channelMetricsSchema.default(sampleUsageData.subscriberNotifications), + subscriberNotifications: channelMetricsSchema, channelBreakdown: z .object({ - email: channelMetricsSchema.default(sampleUsageData.channelBreakdown.email), - sms: channelMetricsSchema.default(sampleUsageData.channelBreakdown.sms), - push: channelMetricsSchema.default(sampleUsageData.channelBreakdown.push), + email: channelMetricsSchema, + sms: channelMetricsSchema, + push: channelMetricsSchema, + inApp: channelMetricsSchema, + chat: channelMetricsSchema, }) .required(), inboxMetrics: z .object({ - sessionInitialized: channelMetricsSchema.default(sampleUsageData.inboxMetrics.sessionInitialized), - updatePreferences: channelMetricsSchema.default(sampleUsageData.inboxMetrics.updatePreferences), - markNotification: channelMetricsSchema.default(sampleUsageData.inboxMetrics.markNotification), - updateAction: channelMetricsSchema.default(sampleUsageData.inboxMetrics.updateAction), + sessionInitialized: channelMetricsSchema, + updatePreferences: channelMetricsSchema, + markNotification: channelMetricsSchema, + updateAction: channelMetricsSchema, }) .required(), - workflowStats: z.record(z.string(), channelMetricsSchema).default(sampleUsageData.workflowStats), + workflowStats: z.record(z.string(), channelMetricsSchema), }) .required(), } From 4c9bd12f54994f2f166f13125991349dbb40cbef Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:12:04 +0200 Subject: [PATCH 19/31] fix: working state --- .../services/metrics-calculator.service.ts | 157 ++++++++-------- .../app/insights/services/mixpanel.service.ts | 10 +- .../organization-notification.service.ts | 64 +++---- .../insights/types/usage-insights.types.ts | 58 +++--- .../usage-insights/usage-insights.usecase.ts | 172 +++++++++++------- .../src/workflows/usage-insights/email.tsx | 44 ++--- .../src/workflows/usage-insights/types.ts | 4 +- .../usage-insights/usage-insights.workflow.ts | 23 ++- 8 files changed, 282 insertions(+), 250 deletions(-) diff --git a/apps/api/src/app/insights/services/metrics-calculator.service.ts b/apps/api/src/app/insights/services/metrics-calculator.service.ts index 60df9dcc384..d3c854f6b14 100644 --- a/apps/api/src/app/insights/services/metrics-calculator.service.ts +++ b/apps/api/src/app/insights/services/metrics-calculator.service.ts @@ -1,15 +1,16 @@ import { Injectable, Logger } from '@nestjs/common'; import { startOfDay, formatISO } from 'date-fns'; +import { ChannelTypeEnum } from '@novu/shared'; import { IDateRange, ISeriesData, - IInboxResponse, + IMixpanelInboxResponse, IInboxMetrics, IOrganizationMetrics, - IMixpanelResponse, + IMixpanelTriggerResponse, IMetricStats, - MixpanelSeriesNameEnum, IChannelData, + MixpanelInboxSeriesNameEnum, } from '../types/usage-insights.types'; @Injectable() @@ -52,15 +53,24 @@ export class MetricsCalculatorService { } calculateInboxMetrics( - inboxSeries: IInboxResponse['series'], - inboxTimeComparison: IInboxResponse['time_comparison']['series'], - orgId: string, - dateRange: IDateRange + inboxSeries?: Record, + inboxTimeComparison?: Record, + orgId?: string, + dateRange?: IDateRange ): IInboxMetrics { - Logger.debug(`Calculating inbox metrics for organization: ${orgId}`); + if (!inboxSeries || !inboxTimeComparison || !orgId || !dateRange) { + return { + sessionInitialized: { current: 0, previous: 0, change: 0 }, + updatePreferences: { current: 0, previous: 0, change: 0 }, + markNotification: { current: 0, previous: 0, change: 0 }, + updateAction: { current: 0, previous: 0, change: 0 }, + }; + } + + Logger.debug(`Calculating inbox metrics for organization`); const getMetricStats = ( - currentSeriesData: ISeriesData | undefined, - previousSeriesData: ISeriesData | undefined + currentSeriesData: IChannelData | undefined, + previousSeriesData: IChannelData | undefined ): IMetricStats => { if (!currentSeriesData || !previousSeriesData) { Logger.debug(`No series data available for ${orgId}`); @@ -80,9 +90,6 @@ export class MetricsCalculatorService { const currentData = currentOrgData[this.roundToStartOfDay(dateRange.to_date)]; const previousData = previousOrgData[this.roundToStartOfDay(dateRange.from_date)]; - console.log(currentOrgData, 'HIII', this.roundToStartOfDay(dateRange.to_date)); - console.log(previousOrgData, 'HIII', this.roundToStartOfDay(dateRange.from_date)); - if (!currentData || !previousData) { Logger.debug(`No data available for ${orgId}`); @@ -100,28 +107,28 @@ export class MetricsCalculatorService { return { sessionInitialized: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED] ), updatePreferences: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES] ), markNotification: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION] ), updateAction: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION] ), }; } calculateOverallInboxMetrics( orgId: string, - inboxSeries: IInboxResponse['series'], - inboxTimeComparison: IInboxResponse['time_comparison']['series'] + inboxSeries: IMixpanelInboxResponse['series'], + inboxTimeComparison: IMixpanelInboxResponse['time_comparison']['series'] ): IInboxMetrics { Logger.debug('Calculating overall inbox metrics'); @@ -142,94 +149,94 @@ export class MetricsCalculatorService { return { sessionInitialized: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED][orgId], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED][orgId] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED][orgId], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED][orgId] ), updatePreferences: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES][orgId], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES][orgId] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES][orgId], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES][orgId] ), markNotification: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION][orgId], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION][orgId] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION][orgId], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION][orgId] ), updateAction: getMetricStats( - inboxSeries[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION][orgId], - inboxTimeComparison[MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION][orgId] + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION][orgId], + inboxTimeComparison[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION][orgId] ), }; } - createOrganizationMetrics( - orgId: string, - subscriberSeries: ISeriesData, - subscriberTimeComparison: ISeriesData, - workflowSeries: ISeriesData, - workflowTimeComparison: ISeriesData - ): IOrganizationMetrics { - Logger.debug(`Creating organization metrics for: ${orgId}`); - - const orgMetrics: IOrganizationMetrics = { - id: orgId, - name: '', - subscriberNotifications: { - current: Number(Object.values(subscriberSeries[orgId]?.$overall || {})[0] || 0), - previous: Number(Object.values(subscriberTimeComparison[orgId]?.$overall || {})[0] || 0), - change: 0, - }, - channelBreakdown: {}, + calculateEventTriggersMetrics( + subscriberSeries: IChannelData, + subscriberTimeComparison: IChannelData + ): IOrganizationMetrics['eventTriggers'] { + const current = Number(Object.values(subscriberSeries?.$overall || {})[0] || 0); + const previous = Number(Object.values(subscriberTimeComparison?.$overall || {})[0] || 0); + const change = this.calculateChange(current, previous); + + return { current, previous, change }; + } + + calculateChannelBreakdown( + workflowSeries: IChannelData, + workflowTimeComparison: IChannelData + ): IOrganizationMetrics['channelBreakdown'] { + const channelBreakdown: IOrganizationMetrics['channelBreakdown'] = { + [ChannelTypeEnum.EMAIL]: { current: 0, previous: 0, change: 0 }, + [ChannelTypeEnum.SMS]: { current: 0, previous: 0, change: 0 }, + [ChannelTypeEnum.PUSH]: { current: 0, previous: 0, change: 0 }, + [ChannelTypeEnum.IN_APP]: { current: 0, previous: 0, change: 0 }, + [ChannelTypeEnum.CHAT]: { current: 0, previous: 0, change: 0 }, }; - Logger.debug(`Subscriber notifications for ${orgId}:`, orgMetrics.subscriberNotifications); + const orgWorkflowData = workflowSeries; + const orgWorkflowPreviousData = workflowTimeComparison; - const orgWorkflowData = workflowSeries[orgId]; - const orgWorkflowPreviousData = workflowTimeComparison[orgId]; if (orgWorkflowData && orgWorkflowPreviousData) { Object.entries(orgWorkflowData).forEach(([channel, data]) => { if (channel !== '$overall') { - const current = Number(Object.values(data.$overall || {})[0] || 0); - const previous = Number(Object.values(orgWorkflowPreviousData[channel]?.$overall || {})[0] || 0); - - orgMetrics.channelBreakdown[channel] = { - current, - previous, - change: 0, + const currentChannelData = Number(Object.values(data.$overall || {})[0] || 0); + const previousChannelData = Number(Object.values(orgWorkflowPreviousData[channel]?.$overall || {})[0] || 0); + const currentChannelChange = this.calculateChange(currentChannelData, previousChannelData); + + channelBreakdown[channel] = { + current: currentChannelData, + previous: previousChannelData, + change: currentChannelChange, }; - - Logger.debug(`Channel metrics for ${orgId}/${channel}: current=${current}, previous=${previous}`); } }); } else { - Logger.debug(`No workflow data available for organization: ${orgId}`); + Logger.debug(`No workflow data available for organization`); } - return orgMetrics; + return channelBreakdown; } calculateWorkflowStats( - orgId: string, - subscriberSeries: ISeriesData, - subscriberTimeComparison: ISeriesData - ): IMixpanelResponse['workflowStats'] { + triggerEventSeries: IChannelData, + previousTriggerEventSeries: IChannelData + ): IMixpanelTriggerResponse['workflowStats']['workflows'] { Logger.debug('Calculating workflow statistics'); - const workflowStats: IMixpanelResponse['workflowStats'] = { workflows: {} }; + const workflowStats: IMixpanelTriggerResponse['workflowStats']['workflows'] = {}; - const orgData = subscriberSeries[orgId]?.undefined; - const orgPreviousData = subscriberTimeComparison[orgId]?.undefined; - if (!orgData || !orgPreviousData) { - Logger.debug(`No workflow data found for organization: ${orgId}`); + const currentWorkflowsData = triggerEventSeries.undefined; + const previousWorkflowsData = previousTriggerEventSeries.undefined; + if (!currentWorkflowsData || !previousWorkflowsData) { + Logger.debug(`No workflow data found for organization`); return workflowStats; } - Object.entries(orgData) + Object.entries(currentWorkflowsData) .filter(([name]) => name !== '$overall') .forEach(([name, data]) => { const current = Number(Object.values(data)[0] || 0); - const previous = Number(Object.values(orgPreviousData[name] || {})[0] || 0); + const previous = Number(Object.values(previousWorkflowsData[name] || {})[0] || 0); const change = this.calculateChange(current, previous); - workflowStats.workflows[name] = { current, previous, change }; + workflowStats[name] = { current, previous, change }; Logger.debug(`Workflow stats for ${name}: current=${current}, previous=${previous}, change=${change}%`); }); diff --git a/apps/api/src/app/insights/services/mixpanel.service.ts b/apps/api/src/app/insights/services/mixpanel.service.ts index 80bd01f7f65..3490ca1695f 100644 --- a/apps/api/src/app/insights/services/mixpanel.service.ts +++ b/apps/api/src/app/insights/services/mixpanel.service.ts @@ -2,7 +2,7 @@ import { Injectable, Logger } from '@nestjs/common'; import axios from 'axios'; import { promises as fs } from 'fs'; import { join } from 'path'; -import { IMixpanelResponse, IInboxResponse } from '../usecases/usage-insights/types/usage-insights.types'; +import { IMixpanelInboxResponse, IMixpanelTriggerResponse } from '../types/usage-insights.types'; const USE_INSIGHTS_CACHE = process.env.USE_INSIGHTS_CACHE === 'true'; @@ -61,7 +61,7 @@ export class MixpanelService { } } - async fetchMixpanelInsights(): Promise { + async fetchMixpanelInsights(): Promise { Logger.debug('Fetching Mixpanel insights'); const cachedData = await this.readCacheFile(this.CACHE_FILE); if (cachedData) { @@ -70,7 +70,7 @@ export class MixpanelService { try { Logger.debug('Making Mixpanel API request for insights'); - const response = await axios.get('https://mixpanel.com/api/2.0/insights', { + const response = await axios.get('https://mixpanel.com/api/2.0/insights', { params: { project_id: '2667883', bookmark_id: '68515975', @@ -92,7 +92,7 @@ export class MixpanelService { } } - async fetchInboxInsights(): Promise { + async fetchInboxInsights(): Promise { Logger.debug('Fetching Inbox insights'); const cachedData = await this.readCacheFile(this.INBOX_CACHE_FILE); if (cachedData) { @@ -102,7 +102,7 @@ export class MixpanelService { try { Logger.debug('Making Mixpanel API request for inbox insights'); - const response = await axios.get('https://mixpanel.com/api/2.0/insights', { + const response = await axios.get('https://mixpanel.com/api/2.0/insights', { params: { project_id: '2667883', bookmark_id: '68521376', diff --git a/apps/api/src/app/insights/services/organization-notification.service.ts b/apps/api/src/app/insights/services/organization-notification.service.ts index a6129e4e180..4b08b192ea3 100644 --- a/apps/api/src/app/insights/services/organization-notification.service.ts +++ b/apps/api/src/app/insights/services/organization-notification.service.ts @@ -3,8 +3,7 @@ import { CommunityOrganizationRepository } from '@novu/dal'; import { FeatureFlagsService } from '@novu/application-generic'; import { FeatureFlagsKeysEnum } from '@novu/shared'; import { usageInsightsWorkflow } from '@novu/notifications'; - -import { IDateRange, ICombinedMetrics, IMixpanelResponse } from '../usecases/usage-insights/types/usage-insights.types'; +import { IDateRange, IOrganizationMetrics } from '../types/usage-insights.types'; @Injectable() export class OrganizationNotificationService { @@ -13,28 +12,18 @@ export class OrganizationNotificationService { private featureFlagsService: FeatureFlagsService ) {} - async sendOrganizationNotification( - metrics: ICombinedMetrics, - workflowStats: IMixpanelResponse['workflowStats'], - dateRange: IDateRange - ) { - Logger.debug(`Processing metrics for organization: ${metrics.id}`); + async sendOrganizationNotification(organizationId: string, metrics: IOrganizationMetrics, dateRange: IDateRange) { + Logger.debug(`Processing metrics for organization: ${organizationId}`); try { const organization = await this.organizationRepository.findById('675fe9bcab6a05bb6dcb7dab'); if (!organization) { - Logger.warn(`Organization not found in repository: ${metrics.id}`); + Logger.warn(`Organization not found in repository: ${organizationId}`); return; } - const enrichedMetrics = { - ...metrics, - name: organization.name, - workflowStats: workflowStats.workflows, - }; - - Logger.debug(`Enriched metrics for ${organization.name}:`, enrichedMetrics); + Logger.debug(`Enriched metrics for ${organization.name}:`, metrics); const isEnabled = await this.featureFlagsService.get(FeatureFlagsKeysEnum.IS_USAGE_INSIGHTS_ENABLED, false, { environmentId: 'system', @@ -43,42 +32,37 @@ export class OrganizationNotificationService { }); if (!isEnabled) { - Logger.log('Skipping notification delivery - usage insights disabled by feature flag', enrichedMetrics); + Logger.log('Skipping notification delivery - usage insights disabled by feature flag', metrics); return; } + const payload = { + organizationName: organization.name, + period: { + current: dateRange.to_date, + previous: dateRange.from_date, + }, + subscriberNotifications: metrics.eventTriggers, + channelBreakdown: metrics.channelBreakdown, + inboxMetrics: metrics.inboxMetrics, + workflowStats: metrics.workflowStats, + }; + + delete (payload.channelBreakdown as any).trigger; + + Logger.debug(`Sending notification for ${organization.name} with payload:`, payload); + await usageInsightsWorkflow.trigger({ to: { subscriberId: '675fe9bcab6a05bb6dcb7dab_11', email: `dima+testing-${organization._id}@novu.co`, }, - payload: { - organizationName: organization.name, - period: { - current: dateRange.to_date, - previous: dateRange.from_date, - }, - subscriberNotifications: metrics.subscriberNotifications, - channelBreakdown: { - email: metrics.channelBreakdown.email || { current: 0, previous: 0, change: 0 }, - sms: metrics.channelBreakdown.sms || { current: 0, previous: 0, change: 0 }, - push: metrics.channelBreakdown.push || { current: 0, previous: 0, change: 0 }, - inApp: metrics.channelBreakdown.in_app || { current: 0, previous: 0, change: 0 }, - chat: metrics.channelBreakdown.chat || { current: 0, previous: 0, change: 0 }, - }, - inboxMetrics: { - sessionInitialized: metrics.inboxMetrics?.sessionInitialized, - updatePreferences: metrics.inboxMetrics?.updatePreferences, - markNotification: metrics.inboxMetrics?.markNotification, - updateAction: metrics.inboxMetrics?.updateAction, - }, - workflowStats: workflowStats.workflows, - }, + payload, secretKey: process.env.NOVU_INTERNAL_SECRET_KEY, }); } catch (error) { - Logger.error(`Failed to process metrics for organization ${metrics.id}:`, error); + Logger.error(`Failed to process metrics for organization ${organizationId}:`, error); } } } diff --git a/apps/api/src/app/insights/types/usage-insights.types.ts b/apps/api/src/app/insights/types/usage-insights.types.ts index 14bf258199f..12fc2e43201 100644 --- a/apps/api/src/app/insights/types/usage-insights.types.ts +++ b/apps/api/src/app/insights/types/usage-insights.types.ts @@ -1,6 +1,11 @@ -export enum MixpanelSeriesNameEnum { +import { ChannelTypeEnum } from '@novu/shared'; + +export enum MixpanelTriggerEventNameEnum { NOTIFICATION_SUBSCRIBER_EVENT = 'A. Notification Subscriber Event Trigger [Total Events]', PROCESS_WORKFLOW_STEP = 'B. Process Workflow Step - [Triggers] [Total Events]', +} + +export enum MixpanelInboxSeriesNameEnum { INBOX_SESSION_INITIALIZED = 'A. Session Initialized - [Inbox] [Total Events]', INBOX_UPDATE_PREFERENCES = 'B. Update Preferences - [Inbox] [Total Events]', INBOX_MARK_NOTIFICATION = 'C. Mark Notification As - [Inbox] [Total Events]', @@ -19,17 +24,14 @@ export interface IChannelMetrics { } export interface IOrganizationMetrics { - readonly id: string; - readonly name: string; - subscriberNotifications: { - current: number; - previous: number; - change: number; - }; + eventTriggers: IChannelMetrics; channelBreakdown: { - [channel: string]: IChannelMetrics; + [channel in ChannelTypeEnum]: IChannelMetrics; }; - inboxMetrics?: IInboxMetrics; + workflowStats: { + [workflow: string]: IChannelMetrics; + }; + inboxMetrics: IInboxMetrics; } export interface IMetricData { @@ -47,17 +49,17 @@ export type ISeriesData = { $overall: IMetricData; }; -export interface IMixpanelResponse { +export interface IMixpanelTriggerResponse { series: { - [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; - [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; + [MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; + [MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; }; date_range: IDateRange; time_comparison: { date_range: IDateRange; series: { - [MixpanelSeriesNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; - [MixpanelSeriesNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; + [MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]: ISeriesData; + [MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP]: ISeriesData; }; }; workflowStats: { @@ -71,21 +73,21 @@ export interface IMixpanelResponse { }; } -export interface IInboxResponse { +export interface IMixpanelInboxResponse { series: { - [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; }; date_range: IDateRange; time_comparison: { date_range: IDateRange; series: { - [MixpanelSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; - [MixpanelSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: ISeriesData; + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: ISeriesData; }; }; } @@ -104,8 +106,8 @@ export interface IInboxMetrics { } export interface IUsageInsightsResponse { - series: IMixpanelResponse['series']; - workflowStats: IMixpanelResponse['workflowStats']; + series: IMixpanelTriggerResponse['series']; + workflowStats: IMixpanelTriggerResponse['workflowStats']; inboxStats: { byOrganization: { [organizationId: string]: IInboxMetrics; @@ -113,7 +115,3 @@ export interface IUsageInsightsResponse { overall: IInboxMetrics; }; } - -export interface ICombinedMetrics extends IOrganizationMetrics { - inboxMetrics?: IInboxMetrics; -} diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 4a4295d7ef5..438e4284099 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -1,12 +1,32 @@ import { Injectable, Logger } from '@nestjs/common'; import { InstrumentUsecase } from '@novu/application-generic'; -import { IUsageInsightsResponse, IInboxMetrics } from './types/usage-insights.types'; +import { + IChannelData, + IOrganizationMetrics, + MixpanelInboxSeriesNameEnum, + MixpanelTriggerEventNameEnum, +} from '../../types/usage-insights.types'; import { MixpanelService } from '../../services/mixpanel.service'; import { MetricsCalculatorService } from '../../services/metrics-calculator.service'; import { OrganizationNotificationService } from '../../services/organization-notification.service'; import { UsageInsightsCommand } from './usage-insights.command'; +interface IOrganizationData { + workflowTrigger: { + current: IChannelData; + previous: IChannelData; + }; + stepProcessing: { + current: IChannelData; + previous: IChannelData; + }; + inbox?: { + current: Record; + previous: Record; + }; +} + @Injectable() export class UsageInsights { constructor( @@ -18,7 +38,7 @@ export class UsageInsights { } @InstrumentUsecase() - async execute(command: UsageInsightsCommand): Promise { + async execute(command: UsageInsightsCommand): Promise { Logger.debug('Executing UsageInsights usecase', { command }); const [mixpanelData, inboxData] = await Promise.all([ @@ -29,89 +49,109 @@ export class UsageInsights { if (!mixpanelData?.series) { Logger.error('Mixpanel data unavailable or invalid'); - return null; + return; } Logger.debug('Processing Mixpanel and Inbox data'); - const subscriberSeries = mixpanelData.series['A. Notification Subscriber Event Trigger [Total Events]']; - const workflowSeries = mixpanelData.series['B. Process Workflow Step - [Triggers] [Total Events]']; - const subscriberTimeComparison = - mixpanelData.time_comparison.series['A. Notification Subscriber Event Trigger [Total Events]']; - const workflowTimeComparison = - mixpanelData.time_comparison.series['B. Process Workflow Step - [Triggers] [Total Events]']; - - if (!subscriberSeries || !workflowSeries || !subscriberTimeComparison || !workflowTimeComparison) { + // Trigger Workflow data + const triggerEventSeries = mixpanelData.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]; + const triggerEventPreviousSeries = + mixpanelData.time_comparison.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]; + + const processWorkflowSeries = mixpanelData.series[MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP]; + const previousProcessWorkflowSeries = + mixpanelData.time_comparison.series[MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP]; + + // Inbox data + const inboxSeries = inboxData?.series ?? {}; + const previousInboxSeries = inboxData?.time_comparison.series ?? {}; + const inboxSessionInitializedSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]; + const inboxUpdatePreferencesSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]; + const inboxMarkNotificationSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]; + const inboxUpdateActionSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]; + const previousInboxSessionInitializedSeries = + previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]; + const previousInboxUpdatePreferencesSeries = + previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]; + const previousInboxMarkNotificationSeries = + previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]; + const previousInboxUpdateActionSeries = previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]; + + if ( + !triggerEventSeries || + !processWorkflowSeries || + !triggerEventPreviousSeries || + !previousProcessWorkflowSeries + ) { Logger.error('Required series data missing from Mixpanel response'); - return null; + return; } + let counter = 0; Logger.debug('Processing organization data'); - for (const [orgId, orgData] of Object.entries(workflowSeries)) { + for (const [orgId, orgData] of Object.entries(processWorkflowSeries)) { if (orgId === '$overall') continue; - const workflowStats = this.metricsCalculator.calculateWorkflowStats( - orgId, - subscriberSeries, - subscriberTimeComparison - ); - mixpanelData.workflowStats = workflowStats; - - const defaultInboxMetrics: IInboxMetrics = { - sessionInitialized: { current: 0, previous: 0, change: 0 }, - updatePreferences: { current: 0, previous: 0, change: 0 }, - markNotification: { current: 0, previous: 0, change: 0 }, - updateAction: { current: 0, previous: 0, change: 0 }, + counter += 1; + + if (counter > 5) break; + + const organizationData: IOrganizationData = { + workflowTrigger: { + current: triggerEventSeries[orgId], + previous: triggerEventPreviousSeries[orgId], + }, + stepProcessing: { + current: processWorkflowSeries[orgId], + previous: previousProcessWorkflowSeries[orgId], + }, + inbox: { + current: { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: inboxSessionInitializedSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: inboxUpdatePreferencesSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: inboxMarkNotificationSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxUpdateActionSeries[orgId], + }, + previous: { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: previousInboxSessionInitializedSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: previousInboxUpdatePreferencesSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: previousInboxMarkNotificationSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: previousInboxUpdateActionSeries[orgId], + }, + }, }; - Logger.debug('Initializing inbox stats'); - Logger.debug(`Processing metrics for organization: ${orgId}`); - const metrics = this.metricsCalculator.createOrganizationMetrics( - orgId, - subscriberSeries, - subscriberTimeComparison, - workflowSeries, - workflowTimeComparison - ); - - metrics.subscriberNotifications.change = this.metricsCalculator.calculateChange( - metrics.subscriberNotifications.current, - metrics.subscriberNotifications.previous - ); - - metrics.channelBreakdown = Object.fromEntries( - Object.entries(metrics.channelBreakdown).map(([channel, channelData]) => [ - channel, - { - ...channelData, - change: this.metricsCalculator.calculateChange(channelData.current, channelData.previous), - }, - ]) - ); - - if (inboxData?.series) { - Logger.debug(`Adding inbox metrics for organization: ${orgId}`); - const inboxMetrics = this.metricsCalculator.calculateInboxMetrics( - inboxData.series, - inboxData.time_comparison.series, + const metrics: IOrganizationMetrics = { + eventTriggers: this.metricsCalculator.calculateEventTriggersMetrics( + organizationData.workflowTrigger.current, + organizationData.workflowTrigger.previous + ), + channelBreakdown: this.metricsCalculator.calculateChannelBreakdown( + organizationData.stepProcessing.current, + organizationData.stepProcessing.previous + ), + workflowStats: this.metricsCalculator.calculateWorkflowStats( + organizationData.workflowTrigger.current, + organizationData.workflowTrigger.previous + ), + inboxMetrics: this.metricsCalculator.calculateInboxMetrics( + organizationData.inbox?.current, + organizationData.inbox?.previous, orgId, { - from_date: inboxData.time_comparison.date_range.from_date, - to_date: inboxData.date_range.from_date, + from_date: inboxData!.time_comparison.date_range.from_date, + to_date: inboxData!.date_range.from_date, } - ); - metrics.inboxMetrics = inboxMetrics; - } else { - Logger.debug(`Using default inbox metrics for organization: ${orgId}`); - metrics.inboxMetrics = defaultInboxMetrics; - } - - await this.organizationNotification.sendOrganizationNotification(metrics, workflowStats, { + ), + }; + + await this.organizationNotification.sendOrganizationNotification(orgId, metrics, { from_date: mixpanelData.time_comparison.date_range.from_date, to_date: mixpanelData.date_range.to_date, }); } - Logger.debug('UsageInsights execution completed successfully'); + Logger.debug('Usage Insights execution completed successfully'); } } diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index d23b2f3b924..c50e3bb0de0 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -46,7 +46,7 @@ function MetricCard({ const formattedChange = Math.abs(Math.floor(change)); return ( -
+
@@ -95,9 +95,9 @@ function ChannelBreakdown({ channels }: { channels: IUsageEmailData['channelBrea @@ -182,8 +182,8 @@ function WorkflowStats({ workflows }: { workflows: IUsageEmailData['workflowStat {name} - {Math.floor(metrics.current).toLocaleString()} notifications sent vs{' '} - {Math.floor(metrics.previous).toLocaleString()} + {Math.floor(metrics.current).toLocaleString()} notifications sent vs{' '} + {Math.floor(metrics.previous).toLocaleString()} @@ -210,15 +210,15 @@ interface IMarketingConfig { text: string; buttonText: string; buttonUrl: string; - }; + } | null; } function MarketingSection({ config }: { config: IMarketingConfig }) { return (

-
- {config.title} +
+ {config.title}
{config.links.map((link, index) => (
-
- {config.cta.text} - - {config.cta.buttonText} - -
+ {config.cta ? ( +
+ {config.cta.text} + + {config.cta.buttonText} + +
+ ) : null}
); } @@ -254,13 +256,13 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC 📊 Usage Insights for {props.organizationName} - {formatDate(props.period.current)} - + Novu
diff --git a/libs/notifications/src/workflows/usage-insights/types.ts b/libs/notifications/src/workflows/usage-insights/types.ts index e2a78de3f9a..142e38141df 100644 --- a/libs/notifications/src/workflows/usage-insights/types.ts +++ b/libs/notifications/src/workflows/usage-insights/types.ts @@ -1,3 +1,5 @@ +import { ChannelTypeEnum } from '@novu/shared'; + export interface IChannelMetrics { current: number; previous: number; @@ -25,7 +27,7 @@ export interface IUsageEmailData { }; subscriberNotifications: IChannelMetrics; channelBreakdown: { - [channel: string]: IChannelMetrics; + [channel in ChannelTypeEnum]: IChannelMetrics; }; inboxMetrics: IInboxMetrics; workflowStats: { diff --git a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts index 241a555b994..ea1148a616e 100644 --- a/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts +++ b/libs/notifications/src/workflows/usage-insights/usage-insights.workflow.ts @@ -43,20 +43,19 @@ export const usageInsightsWorkflow = workflow( previewText: z.string().default('Here are your usage insights for {{payload.organizationName}}'), marketingConfig: z .object({ - title: z.string().default('Discover More with Novu'), + title: z.string(), links: z.array(marketingLinkSchema), - cta: z.object({ - text: z.string().default('Ready to take your notifications to the next level?'), - buttonText: z.string().default('Upgrade Your Plan →'), - buttonUrl: z.string().default('https://novu.co/pricing'), - }), + cta: z + .object({ + text: z.string(), + buttonText: z.string(), + buttonUrl: z.string(), + }) + .optional() + .nullable(), }) .default({ - cta: { - text: 'Ready to take your notifications to the next level?', - buttonText: 'Upgrade Your Plan →', - buttonUrl: 'https://novu.co/pricing', - }, + cta: null, links: [ { href: 'https://docs.novu.co', @@ -87,7 +86,7 @@ export const usageInsightsWorkflow = workflow( email: channelMetricsSchema, sms: channelMetricsSchema, push: channelMetricsSchema, - inApp: channelMetricsSchema, + in_app: channelMetricsSchema, chat: channelMetricsSchema, }) .required(), From 3b4e5a9c50826f1c1650b7946fa58ba9f520ed68 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:25:06 +0200 Subject: [PATCH 20/31] feat: add controller --- .../src/app/insights/insights.controller.ts | 27 ++++ apps/api/src/app/insights/insights.module.ts | 2 + .../services/insights-initializer.service.ts | 5 - .../usage-insights/usage-insights.command.ts | 8 +- .../usage-insights/usage-insights.usecase.ts | 144 ++++++++++-------- .../src/workflows/usage-insights/email.tsx | 4 +- 6 files changed, 118 insertions(+), 72 deletions(-) create mode 100644 apps/api/src/app/insights/insights.controller.ts diff --git a/apps/api/src/app/insights/insights.controller.ts b/apps/api/src/app/insights/insights.controller.ts new file mode 100644 index 00000000000..0153e50e1e3 --- /dev/null +++ b/apps/api/src/app/insights/insights.controller.ts @@ -0,0 +1,27 @@ +import { Controller, Get, Query } from '@nestjs/common'; +import { ApiOperation, ApiQuery } from '@nestjs/swagger'; +import { UsageInsights } from './usecases/usage-insights/usage-insights.usecase'; +import { UsageInsightsCommand } from './usecases/usage-insights/usage-insights.command'; + +@Controller({ + path: 'insights', +}) +export class InsightsController { + constructor(private usageInsights: UsageInsights) {} + + @Get('/execute') + @ApiOperation({ + summary: 'Execute insights for a specific organization', + }) + @ApiQuery({ + name: 'organizationId', + type: String, + required: true, + description: 'The ID of the organization to execute insights for', + }) + async executeInsights(@Query('organizationId') organizationId: string) { + const command = new UsageInsightsCommand({ organizationId }); + + return this.usageInsights.execute(command); + } +} diff --git a/apps/api/src/app/insights/insights.module.ts b/apps/api/src/app/insights/insights.module.ts index 9e842775087..95798a88cfe 100644 --- a/apps/api/src/app/insights/insights.module.ts +++ b/apps/api/src/app/insights/insights.module.ts @@ -12,6 +12,7 @@ import { InsightsInitializerService } from './services/insights-initializer.serv import { MixpanelService } from './services/mixpanel.service'; import { MetricsCalculatorService } from './services/metrics-calculator.service'; import { OrganizationNotificationService } from './services/organization-notification.service'; +import { InsightsController } from './insights.controller'; @Module({ imports: [SharedModule], @@ -27,6 +28,7 @@ import { OrganizationNotificationService } from './services/organization-notific MetricsCalculatorService, OrganizationNotificationService, ], + controllers: [InsightsController], exports: [...USE_CASES], }) export class InsightsModule {} diff --git a/apps/api/src/app/insights/services/insights-initializer.service.ts b/apps/api/src/app/insights/services/insights-initializer.service.ts index dae1b8e4e0a..377b0ba3e04 100644 --- a/apps/api/src/app/insights/services/insights-initializer.service.ts +++ b/apps/api/src/app/insights/services/insights-initializer.service.ts @@ -1,6 +1,5 @@ import { Injectable, OnApplicationBootstrap, Logger } from '@nestjs/common'; import { UsageInsights } from '../usecases/usage-insights/usage-insights.usecase'; -import { UsageInsightsCommand } from '../usecases/usage-insights/usage-insights.command'; @Injectable() export class InsightsInitializerService implements OnApplicationBootstrap { @@ -9,11 +8,7 @@ export class InsightsInitializerService implements OnApplicationBootstrap { async onApplicationBootstrap() { try { Logger.log('Initializing usage insights...'); - const command = new UsageInsightsCommand(); - setTimeout(() => { - this.usageInsights.execute(command); - }, 10000); Logger.log('Usage insights initialization completed'); } catch (error) { Logger.error('Failed to initialize insights:', error); diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts index 7ddfb922246..cf916a1e6e7 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.command.ts @@ -1 +1,7 @@ -export class UsageInsightsCommand {} +export class UsageInsightsCommand { + organizationId?: string; + + constructor(data: { organizationId?: string } = {}) { + this.organizationId = data.organizationId; + } +} diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 438e4284099..1d6b526b541 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -3,6 +3,8 @@ import { InstrumentUsecase } from '@novu/application-generic'; import { IChannelData, + IMixpanelInboxResponse, + IMixpanelTriggerResponse, IOrganizationMetrics, MixpanelInboxSeriesNameEnum, MixpanelTriggerEventNameEnum, @@ -46,12 +48,38 @@ export class UsageInsights { this.mixpanelService.fetchInboxInsights(), ]); - if (!mixpanelData?.series) { + if (!mixpanelData?.series || !inboxData?.series) { Logger.error('Mixpanel data unavailable or invalid'); return; } + Logger.debug('Processing organization data'); + + if (command.organizationId) { + await this.processOrganization(command.organizationId, mixpanelData, inboxData); + } else { + let counter = 0; + for (const [orgId, orgData] of Object.entries( + mixpanelData.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT] + )) { + if (orgId === '$overall') continue; + + counter += 1; + if (counter > 5) break; + + await this.processOrganization(orgId, mixpanelData, inboxData); + } + } + + Logger.debug('Usage Insights execution completed successfully'); + } + + private async processOrganization( + orgId: string, + mixpanelData: IMixpanelTriggerResponse, + inboxData: IMixpanelInboxResponse + ) { Logger.debug('Processing Mixpanel and Inbox data'); // Trigger Workflow data const triggerEventSeries = mixpanelData.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]; @@ -88,70 +116,58 @@ export class UsageInsights { return; } - let counter = 0; - Logger.debug('Processing organization data'); - for (const [orgId, orgData] of Object.entries(processWorkflowSeries)) { - if (orgId === '$overall') continue; - - counter += 1; - - if (counter > 5) break; - - const organizationData: IOrganizationData = { - workflowTrigger: { - current: triggerEventSeries[orgId], - previous: triggerEventPreviousSeries[orgId], + const organizationData: IOrganizationData = { + workflowTrigger: { + current: triggerEventSeries[orgId], + previous: triggerEventPreviousSeries[orgId], + }, + stepProcessing: { + current: processWorkflowSeries[orgId], + previous: previousProcessWorkflowSeries[orgId], + }, + inbox: { + current: { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: inboxSessionInitializedSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: inboxUpdatePreferencesSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: inboxMarkNotificationSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxUpdateActionSeries[orgId], }, - stepProcessing: { - current: processWorkflowSeries[orgId], - previous: previousProcessWorkflowSeries[orgId], + previous: { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: previousInboxSessionInitializedSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: previousInboxUpdatePreferencesSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: previousInboxMarkNotificationSeries[orgId], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: previousInboxUpdateActionSeries[orgId], }, - inbox: { - current: { - [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: inboxSessionInitializedSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: inboxUpdatePreferencesSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: inboxMarkNotificationSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxUpdateActionSeries[orgId], - }, - previous: { - [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: previousInboxSessionInitializedSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: previousInboxUpdatePreferencesSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: previousInboxMarkNotificationSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: previousInboxUpdateActionSeries[orgId], - }, - }, - }; - - const metrics: IOrganizationMetrics = { - eventTriggers: this.metricsCalculator.calculateEventTriggersMetrics( - organizationData.workflowTrigger.current, - organizationData.workflowTrigger.previous - ), - channelBreakdown: this.metricsCalculator.calculateChannelBreakdown( - organizationData.stepProcessing.current, - organizationData.stepProcessing.previous - ), - workflowStats: this.metricsCalculator.calculateWorkflowStats( - organizationData.workflowTrigger.current, - organizationData.workflowTrigger.previous - ), - inboxMetrics: this.metricsCalculator.calculateInboxMetrics( - organizationData.inbox?.current, - organizationData.inbox?.previous, - orgId, - { - from_date: inboxData!.time_comparison.date_range.from_date, - to_date: inboxData!.date_range.from_date, - } - ), - }; - - await this.organizationNotification.sendOrganizationNotification(orgId, metrics, { - from_date: mixpanelData.time_comparison.date_range.from_date, - to_date: mixpanelData.date_range.to_date, - }); - } - - Logger.debug('Usage Insights execution completed successfully'); + }, + }; + + const metrics: IOrganizationMetrics = { + eventTriggers: this.metricsCalculator.calculateEventTriggersMetrics( + organizationData.workflowTrigger.current, + organizationData.workflowTrigger.previous + ), + channelBreakdown: this.metricsCalculator.calculateChannelBreakdown( + organizationData.stepProcessing.current, + organizationData.stepProcessing.previous + ), + workflowStats: this.metricsCalculator.calculateWorkflowStats( + organizationData.workflowTrigger.current, + organizationData.workflowTrigger.previous + ), + inboxMetrics: this.metricsCalculator.calculateInboxMetrics( + organizationData.inbox?.current, + organizationData.inbox?.previous, + orgId, + { + from_date: inboxData!.time_comparison.date_range.from_date, + to_date: inboxData!.date_range.from_date, + } + ), + }; + + await this.organizationNotification.sendOrganizationNotification(orgId, metrics, { + from_date: mixpanelData!.time_comparison.date_range.from_date, + to_date: mixpanelData!.date_range.to_date, + }); } } diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index c50e3bb0de0..960cb333a94 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -256,13 +256,13 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC 📊 Usage Insights for {props.organizationName} - {formatDate(props.period.current)} - + Novu Logo
From 4a4f6bced9d8da42d31b607f54579b29b88ce8ea Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:28:05 +0200 Subject: [PATCH 21/31] feat: add insights tester --- .../src/app/insights/insights.controller.ts | 23 +++++++++++++++++-- packages/shared/src/types/feature-flags.ts | 1 + 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/apps/api/src/app/insights/insights.controller.ts b/apps/api/src/app/insights/insights.controller.ts index 0153e50e1e3..f1f06983228 100644 --- a/apps/api/src/app/insights/insights.controller.ts +++ b/apps/api/src/app/insights/insights.controller.ts @@ -1,5 +1,7 @@ -import { Controller, Get, Query } from '@nestjs/common'; +import { Controller, Get, Query, UnauthorizedException } from '@nestjs/common'; import { ApiOperation, ApiQuery } from '@nestjs/swagger'; +import { FeatureFlagsService } from '@novu/application-generic'; +import { FeatureFlagsKeysEnum } from '@novu/shared'; import { UsageInsights } from './usecases/usage-insights/usage-insights.usecase'; import { UsageInsightsCommand } from './usecases/usage-insights/usage-insights.command'; @@ -7,7 +9,10 @@ import { UsageInsightsCommand } from './usecases/usage-insights/usage-insights.c path: 'insights', }) export class InsightsController { - constructor(private usageInsights: UsageInsights) {} + constructor( + private usageInsights: UsageInsights, + private featureFlagsService: FeatureFlagsService + ) {} @Get('/execute') @ApiOperation({ @@ -20,6 +25,20 @@ export class InsightsController { description: 'The ID of the organization to execute insights for', }) async executeInsights(@Query('organizationId') organizationId: string) { + const isAllowedToTestInsights = await this.featureFlagsService.get( + FeatureFlagsKeysEnum.IS_ALLOWED_TO_TEST_INSIGHTS, + false, + { + organizationId, + userId: 'system', + environmentId: 'system', + } + ); + + if (!isAllowedToTestInsights) { + throw new UnauthorizedException('Organization is not allowed to test insights'); + } + const command = new UsageInsightsCommand({ organizationId }); return this.usageInsights.execute(command); diff --git a/packages/shared/src/types/feature-flags.ts b/packages/shared/src/types/feature-flags.ts index ab8268f26de..ac585819398 100644 --- a/packages/shared/src/types/feature-flags.ts +++ b/packages/shared/src/types/feature-flags.ts @@ -50,4 +50,5 @@ export enum FeatureFlagsKeysEnum { IS_ND_INTEGRATION_STORE_ENABLED = 'IS_ND_INTEGRATION_STORE_ENABLED', IS_ND_SMS_CHAT_PUSH_ENABLED = 'IS_ND_SMS_CHAT_PUSH_ENABLED', IS_USAGE_INSIGHTS_ENABLED = 'IS_USAGE_INSIGHTS_ENABLED', + IS_ALLOWED_TO_TEST_INSIGHTS = 'IS_ALLOWED_TO_TEST_INSIGHTS', } From 88f05304f9e0f875186378c6ce31580b8d18383c Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:29:00 +0200 Subject: [PATCH 22/31] fix: mixpanel --- .../insights/services/organization-notification.service.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/api/src/app/insights/services/organization-notification.service.ts b/apps/api/src/app/insights/services/organization-notification.service.ts index 4b08b192ea3..c083e007932 100644 --- a/apps/api/src/app/insights/services/organization-notification.service.ts +++ b/apps/api/src/app/insights/services/organization-notification.service.ts @@ -15,7 +15,7 @@ export class OrganizationNotificationService { async sendOrganizationNotification(organizationId: string, metrics: IOrganizationMetrics, dateRange: IDateRange) { Logger.debug(`Processing metrics for organization: ${organizationId}`); try { - const organization = await this.organizationRepository.findById('675fe9bcab6a05bb6dcb7dab'); + const organization = await this.organizationRepository.findById(organizationId); if (!organization) { Logger.warn(`Organization not found in repository: ${organizationId}`); @@ -49,8 +49,6 @@ export class OrganizationNotificationService { workflowStats: metrics.workflowStats, }; - delete (payload.channelBreakdown as any).trigger; - Logger.debug(`Sending notification for ${organization.name} with payload:`, payload); await usageInsightsWorkflow.trigger({ From 510860a21a81df8e5de82101a08cf9ea93d89b02 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:29:20 +0200 Subject: [PATCH 23/31] fix: remove cache --- apps/api/mixpanel-inbox-cache.json | 1197 - apps/api/mixpanel-insights-cache.json | 48886 ------------------------ 2 files changed, 50083 deletions(-) delete mode 100644 apps/api/mixpanel-inbox-cache.json delete mode 100644 apps/api/mixpanel-insights-cache.json diff --git a/apps/api/mixpanel-inbox-cache.json b/apps/api/mixpanel-inbox-cache.json deleted file mode 100644 index 7430e14403d..00000000000 --- a/apps/api/mixpanel-inbox-cache.json +++ /dev/null @@ -1,1197 +0,0 @@ -{ - "timestamp": 1734873088570, - "data": { - "headers": ["$event", "$distinct_id"], - "computed_at": "2024-12-22T13:11:28.263347+00:00", - "date_range": { - "from_date": "2024-12-01T00:00:00+02:00", - "to_date": "2024-12-22T15:11:26.246838+02:00" - }, - "meta": { - "min_sampling_factor": 1, - "is_segmentation_limit_hit": false, - "report_sections": { - "group": [ - { - "bookmark": { - "dataset": "$mixpanel", - "value": "$distinct_id", - "resourceType": "people", - "search": "", - "dataGroupId": "7400984862319914261", - "propertyType": "string" - } - } - ], - "show": [ - { - "metric_key": "A. Session Initialized - [Inbox] [Total Events]" - }, - { - "metric_key": "B. Update Preferences - [Inbox] [Total Events]" - }, - { - "metric_key": "C. Mark Notification As - [Inbox] [Total Events]" - }, - { - "metric_key": "D. Update Notification Action - [Inbox] [Total Events]" - } - ] - } - }, - "series": { - "A. Session Initialized - [Inbox] [Total Events]": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4153206 - }, - "62cd681212f9e10011655a35": { - "2024-12-01T00:00:00+02:00": 7 - }, - "6758633bd0bc5c5859e4d0b0": { - "2024-12-01T00:00:00+02:00": 1326 - }, - "6408f2f0dd5f589fe2ca61b4": { - "2024-12-01T00:00:00+02:00": 1884 - }, - "66b3c633abc563f5ee1c4ffa": { - "2024-12-01T00:00:00+02:00": 11212 - }, - "662a58724b6cd9280bf5139d": { - "2024-12-01T00:00:00+02:00": 192 - }, - "67463a802c32fe389fa61341": { - "2024-12-01T00:00:00+02:00": 3401 - }, - "63fbb0118920eed9471fa1b2": { - "2024-12-01T00:00:00+02:00": 60 - }, - "6671df91f4a238f107fe9f56": { - "2024-12-01T00:00:00+02:00": 859 - }, - "66f19c98cf609b134304a0f6": { - "2024-12-01T00:00:00+02:00": 32475 - }, - "6644fabbfbadc9d325d90248": { - "2024-12-01T00:00:00+02:00": 49364 - }, - "67475e932c32fe389fa51052": { - "2024-12-01T00:00:00+02:00": 45414 - }, - "6759b8ec6b43e4625123293e": { - "2024-12-01T00:00:00+02:00": 1966 - }, - "66362cc66c5885a3257940bb": { - "2024-12-01T00:00:00+02:00": 234 - }, - "66a0f9f7f502999ed8453644": { - "2024-12-01T00:00:00+02:00": 4954 - }, - "6742dd7d1bb91e63d914a510": { - "2024-12-01T00:00:00+02:00": 1365 - }, - "674586592c32fe389f95879e": { - "2024-12-01T00:00:00+02:00": 1760 - }, - "66ce471dcf609b1343289560": { - "2024-12-01T00:00:00+02:00": 2921510 - }, - "66b35706aa4218d126bbbf49": { - "2024-12-01T00:00:00+02:00": 29948 - }, - "650002893cc619d36e43a166": { - "2024-12-01T00:00:00+02:00": 17334 - }, - "662f0d0e843a6a8496596159": { - "2024-12-01T00:00:00+02:00": 15824 - }, - "671dcbd5fb21db27364e8179": { - "2024-12-01T00:00:00+02:00": 26281 - }, - "63320239ee1316a5c87e38d1": { - "2024-12-01T00:00:00+02:00": 3836 - }, - "658e6a3b0ad62708782a93bf": { - "2024-12-01T00:00:00+02:00": 116 - }, - "64e46fc009b229a7c5c1735c": { - "2024-12-01T00:00:00+02:00": 296758 - }, - "67235ab730d1c099604bf849": { - "2024-12-01T00:00:00+02:00": 8187 - }, - "659d3b40f58e905eca1793b0": { - "2024-12-01T00:00:00+02:00": 1063 - }, - "665f34e28e2550325700cda9": { - "2024-12-01T00:00:00+02:00": 1667 - }, - "6643b1e7fbadc9d325959e25": { - "2024-12-01T00:00:00+02:00": 5842 - }, - "67212578d50b4e9ff9a6cc1f": { - "2024-12-01T00:00:00+02:00": 2951 - }, - "67444c602c32fe389fd89f54": { - "2024-12-01T00:00:00+02:00": 214 - }, - "668d398684227ca750502c57": { - "2024-12-01T00:00:00+02:00": 23549 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-12-01T00:00:00+02:00": 462910 - }, - "66f0dd46cf609b13436885f5": { - "2024-12-01T00:00:00+02:00": 832 - }, - "64fb853287135ffdc3b410ec": { - "2024-12-01T00:00:00+02:00": 25534 - }, - "66b36aa7aa4218d12678f006": { - "2024-12-01T00:00:00+02:00": 21 - }, - "641c3bb95d9af70da93f09a9": { - "2024-12-01T00:00:00+02:00": 218 - }, - "67219003d36466abaeb1f995": { - "2024-12-01T00:00:00+02:00": 466 - }, - "642552b70136cef86a79373c": { - "2024-12-01T00:00:00+02:00": 4532 - }, - "671bba5a0ab03d946718eb3b": { - "2024-12-01T00:00:00+02:00": 6868 - }, - "66a5008b076eb7c94c1adb92": { - "2024-12-01T00:00:00+02:00": 1343 - }, - "66cf1c1bcf609b134337b496": { - "2024-12-01T00:00:00+02:00": 754 - }, - "67063d37ba6a0580bfccc7e3": { - "2024-12-01T00:00:00+02:00": 1 - }, - "657752b62682a8ccf9887a7c": { - "2024-12-01T00:00:00+02:00": 447 - }, - "66fa9de25d6b8aa393727348": { - "2024-12-01T00:00:00+02:00": 1529 - }, - "66fd558bcf609b1343268e49": { - "2024-12-01T00:00:00+02:00": 4762 - }, - "6322333a2d7b721933bd8cf6": { - "2024-12-01T00:00:00+02:00": 89052 - }, - "6734a5a33b50565012d8dce0": { - "2024-12-01T00:00:00+02:00": 2121 - }, - "66a79f82dfafba8038bc3399": { - "2024-12-01T00:00:00+02:00": 3 - }, - "66fc55c5cf609b13433a677d": { - "2024-12-01T00:00:00+02:00": 4462 - }, - "671faf6b285bc655d85f6e65": { - "2024-12-01T00:00:00+02:00": 729 - }, - "65cb7ceb619fe4f9cf882165": { - "2024-12-01T00:00:00+02:00": 1059 - }, - "671f768afb21db27362e8d5f": { - "2024-12-01T00:00:00+02:00": 22529 - }, - "669ba0033c94be87b123b8c5": { - "2024-12-01T00:00:00+02:00": 917 - }, - "66d9e408cf609b134331065f": { - "2024-12-01T00:00:00+02:00": 7062 - }, - "652ea963fa315318e7925510": { - "2024-12-01T00:00:00+02:00": 187 - }, - "650b644a42707458fe431762": { - "2024-12-01T00:00:00+02:00": 584 - }, - "6721fd6e30d1c09960214146": { - "2024-12-01T00:00:00+02:00": 786 - }, - "63fe730e5787050c5df466a9": { - "2024-12-01T00:00:00+02:00": 1935 - }, - "674e32b62c32fe389f0ea40a": { - "2024-12-01T00:00:00+02:00": 10 - } - }, - "B. Update Preferences - [Inbox] [Total Events]": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3849158 - }, - "6641cac9c4df36a9648c8dd5": { - "2024-12-01T00:00:00+02:00": 2 - }, - "62cd681212f9e10011655a35": { - "2024-12-01T00:00:00+02:00": 560 - }, - "63215ba3a4ca4df9242c24c4": { - "2024-12-01T00:00:00+02:00": 34 - }, - "6439210da97b5d90d4874f30": { - "2024-12-01T00:00:00+02:00": 264 - }, - "63cea3496779056a3f2fff8d": { - "2024-12-01T00:00:00+02:00": 71 - }, - "66ac042fb11ac224eaf4f23a": { - "2024-12-01T00:00:00+02:00": 43 - }, - "65129c6a87135ffdc368e7a3": { - "2024-12-01T00:00:00+02:00": 14 - }, - "662f0d0e843a6a8496596159": { - "2024-12-01T00:00:00+02:00": 3 - }, - "650d24f8f39b9230da78520b": { - "2024-12-01T00:00:00+02:00": 2 - }, - "662a58724b6cd9280bf5139d": { - "2024-12-01T00:00:00+02:00": 8 - }, - "63fbb0118920eed9471fa1b2": { - "2024-12-01T00:00:00+02:00": 6 - }, - "64f09213faeddba41e0137d9": { - "2024-12-01T00:00:00+02:00": 88 - }, - "652ea963fa315318e7925510": { - "2024-12-01T00:00:00+02:00": 12 - }, - "66621bc53a586fac83886829": { - "2024-12-01T00:00:00+02:00": 2 - }, - "6453755860f1803b3a3fba83": { - "2024-12-01T00:00:00+02:00": 8 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-12-01T00:00:00+02:00": 182 - }, - "646f26388b0b51ed1734729b": { - "2024-12-01T00:00:00+02:00": 192 - }, - "643e8d58b6a53d8ae70721c2": { - "2024-12-01T00:00:00+02:00": 9 - }, - "657752b62682a8ccf9887a7c": { - "2024-12-01T00:00:00+02:00": 63 - }, - "65eb2863bd6a1b3de8913c21": { - "2024-12-01T00:00:00+02:00": 2 - }, - "67235ab730d1c099604bf849": { - "2024-12-01T00:00:00+02:00": 12 - }, - "64135799799e3c974d3f6426": { - "2024-12-01T00:00:00+02:00": 393 - }, - "64011cb9841d0bacae01f6ff": { - "2024-12-01T00:00:00+02:00": 1 - }, - "66ce471dcf609b1343289560": { - "2024-12-01T00:00:00+02:00": 2 - }, - "660c351dbfb1f0d56f7a6fcc": { - "2024-12-01T00:00:00+02:00": 10 - }, - "66f0dd46cf609b13436885f5": { - "2024-12-01T00:00:00+02:00": 10 - }, - "643682a035c8dd9a2c46ac2b": { - "2024-12-01T00:00:00+02:00": 2 - }, - "650af582c016453d5bdfb209": { - "2024-12-01T00:00:00+02:00": 7 - }, - "66d9e408cf609b134331065f": { - "2024-12-01T00:00:00+02:00": 9 - }, - "630cb844fafbba9bf010f186": { - "2024-12-01T00:00:00+02:00": 125 - }, - "651c209f8816295152811079": { - "2024-12-01T00:00:00+02:00": 18 - }, - "6639eeff0c0215ee78621015": { - "2024-12-01T00:00:00+02:00": 2 - }, - "6400caeef591ea2e090f6040": { - "2024-12-01T00:00:00+02:00": 64613 - }, - "643d4f7130bdc004e35b8b0e": { - "2024-12-01T00:00:00+02:00": 4 - }, - "651fa9f835fbd6284965127c": { - "2024-12-01T00:00:00+02:00": 2 - }, - "651aea5133924ee69071720d": { - "2024-12-01T00:00:00+02:00": 4 - }, - "64e793a5dd99c21f1ef1ddcb": { - "2024-12-01T00:00:00+02:00": 8 - }, - "653f9eeac93cc0129acf4bcb": { - "2024-12-01T00:00:00+02:00": 3773039 - }, - "655cccfb8c7cd7ff32031773": { - "2024-12-01T00:00:00+02:00": 19 - }, - "650002893cc619d36e43a166": { - "2024-12-01T00:00:00+02:00": 2 - }, - "6759b8ec6b43e4625123293e": { - "2024-12-01T00:00:00+02:00": 2596 - }, - "63b3f614749085d8f285703a": { - "2024-12-01T00:00:00+02:00": 5 - }, - "66b35706aa4218d126bbbf49": { - "2024-12-01T00:00:00+02:00": 5 - }, - "642d9001c6b53aa5dd5124f5": { - "2024-12-01T00:00:00+02:00": 5 - }, - "66f19c98cf609b134304a0f6": { - "2024-12-01T00:00:00+02:00": 8 - }, - "65fbe3a58453b14f2f670e14": { - "2024-12-01T00:00:00+02:00": 5 - }, - "64477125ac1c08f04edc14aa": { - "2024-12-01T00:00:00+02:00": 20 - }, - "668d398684227ca750502c57": { - "2024-12-01T00:00:00+02:00": 14 - }, - "6508ba6e7722fc74ea9637ec": { - "2024-12-01T00:00:00+02:00": 10 - }, - "64e3554548249e7e76aeffc3": { - "2024-12-01T00:00:00+02:00": 4 - }, - "667afbe4231acc7b876e0a8a": { - "2024-12-01T00:00:00+02:00": 11 - }, - "6670ed6e78b0832675c76f6a": { - "2024-12-01T00:00:00+02:00": 4 - }, - "64e4824819860000717aecb9": { - "2024-12-01T00:00:00+02:00": 218 - }, - "64eda93c14b8a3ace6f4c5e9": { - "2024-12-01T00:00:00+02:00": 34 - }, - "6463ebef60f1803b3a6fbf6b": { - "2024-12-01T00:00:00+02:00": 15 - }, - "6540cb89c086274eec8fb0b1": { - "2024-12-01T00:00:00+02:00": 171 - }, - "65fd55c44f991166e7a7335e": { - "2024-12-01T00:00:00+02:00": 4444 - }, - "660b31f5b551758561fb037c": { - "2024-12-01T00:00:00+02:00": 99 - }, - "6644fabbfbadc9d325d90248": { - "2024-12-01T00:00:00+02:00": 16 - }, - "6525396bae3f3225a9475db0": { - "2024-12-01T00:00:00+02:00": 271 - }, - "6663404493a6b815ffefb2f0": { - "2024-12-01T00:00:00+02:00": 447 - }, - "63a32b86bee1d5aed72d7f15": { - "2024-12-01T00:00:00+02:00": 6 - }, - "665f80fe8e255032572549f2": { - "2024-12-01T00:00:00+02:00": 2 - }, - "65ceaef2535ad490c942a13c": { - "2024-12-01T00:00:00+02:00": 333 - }, - "650c474042707458fe59f367": { - "2024-12-01T00:00:00+02:00": 3 - }, - "6337ca88ee1316a5c8a9009e": { - "2024-12-01T00:00:00+02:00": 374 - }, - "64469b1b4919b8d7cbf845ef": { - "2024-12-01T00:00:00+02:00": 55 - }, - "651eff411df1b46454f4c05a": { - "2024-12-01T00:00:00+02:00": 5 - }, - "651fca9cb03ff038cef1c54f": { - "2024-12-01T00:00:00+02:00": 64 - }, - "67475e932c32fe389fa51052": { - "2024-12-01T00:00:00+02:00": 1 - }, - "671bba5a0ab03d946718eb3b": { - "2024-12-01T00:00:00+02:00": 37 - }, - "6572fd669788e6811d7b4d64": { - "2024-12-01T00:00:00+02:00": 3 - }, - "63a059f5bee1d5aed7e4d95c": { - "2024-12-01T00:00:00+02:00": 12 - }, - "67444c602c32fe389fd89f54": { - "2024-12-01T00:00:00+02:00": 8 - }, - "66cf1c1bcf609b134337b496": { - "2024-12-01T00:00:00+02:00": 6 - } - }, - "C. Mark Notification As - [Inbox] [Total Events]": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11724 - }, - "6322333a2d7b721933bd8cf6": { - "2024-12-01T00:00:00+02:00": 154 - }, - "674586592c32fe389f95879e": { - "2024-12-01T00:00:00+02:00": 6 - }, - "67444c602c32fe389fd89f54": { - "2024-12-01T00:00:00+02:00": 2 - }, - "6742dd7d1bb91e63d914a510": { - "2024-12-01T00:00:00+02:00": 37 - }, - "66a5008b076eb7c94c1adb92": { - "2024-12-01T00:00:00+02:00": 30 - }, - "6644fabbfbadc9d325d90248": { - "2024-12-01T00:00:00+02:00": 98 - }, - "6671df91f4a238f107fe9f56": { - "2024-12-01T00:00:00+02:00": 3 - }, - "66b3c633abc563f5ee1c4ffa": { - "2024-12-01T00:00:00+02:00": 2 - }, - "66fa9de25d6b8aa393727348": { - "2024-12-01T00:00:00+02:00": 117 - }, - "662a58724b6cd9280bf5139d": { - "2024-12-01T00:00:00+02:00": 15 - }, - "66ce471dcf609b1343289560": { - "2024-12-01T00:00:00+02:00": 599 - }, - "63fbb0118920eed9471fa1b2": { - "2024-12-01T00:00:00+02:00": 63 - }, - "67463a802c32fe389fa61341": { - "2024-12-01T00:00:00+02:00": 18 - }, - "662f0d0e843a6a8496596159": { - "2024-12-01T00:00:00+02:00": 85 - }, - "66fd558bcf609b1343268e49": { - "2024-12-01T00:00:00+02:00": 3 - }, - "66f19c98cf609b134304a0f6": { - "2024-12-01T00:00:00+02:00": 64 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-12-01T00:00:00+02:00": 4 - }, - "6643b1e7fbadc9d325959e25": { - "2024-12-01T00:00:00+02:00": 19 - }, - "66d9e408cf609b134331065f": { - "2024-12-01T00:00:00+02:00": 14 - }, - "66b35706aa4218d126bbbf49": { - "2024-12-01T00:00:00+02:00": 40 - }, - "668d398684227ca750502c57": { - "2024-12-01T00:00:00+02:00": 366 - }, - "66a0f9f7f502999ed8453644": { - "2024-12-01T00:00:00+02:00": 56 - }, - "658e6a3b0ad62708782a93bf": { - "2024-12-01T00:00:00+02:00": 7 - }, - "657752b62682a8ccf9887a7c": { - "2024-12-01T00:00:00+02:00": 99 - }, - "67475e932c32fe389fa51052": { - "2024-12-01T00:00:00+02:00": 77 - }, - "665f34e28e2550325700cda9": { - "2024-12-01T00:00:00+02:00": 826 - }, - "64e46fc009b229a7c5c1735c": { - "2024-12-01T00:00:00+02:00": 3097 - }, - "671faf6b285bc655d85f6e65": { - "2024-12-01T00:00:00+02:00": 5 - }, - "64fb853287135ffdc3b410ec": { - "2024-12-01T00:00:00+02:00": 4545 - }, - "650b644a42707458fe431762": { - "2024-12-01T00:00:00+02:00": 2 - }, - "66cf1c1bcf609b134337b496": { - "2024-12-01T00:00:00+02:00": 183 - }, - "6758633bd0bc5c5859e4d0b0": { - "2024-12-01T00:00:00+02:00": 15 - }, - "67212578d50b4e9ff9a6cc1f": { - "2024-12-01T00:00:00+02:00": 55 - }, - "6734a5a33b50565012d8dce0": { - "2024-12-01T00:00:00+02:00": 39 - }, - "6721fd6e30d1c09960214146": { - "2024-12-01T00:00:00+02:00": 72 - }, - "642552b70136cef86a79373c": { - "2024-12-01T00:00:00+02:00": 4 - }, - "671bba5a0ab03d946718eb3b": { - "2024-12-01T00:00:00+02:00": 674 - }, - "67235ab730d1c099604bf849": { - "2024-12-01T00:00:00+02:00": 39 - }, - "63320239ee1316a5c87e38d1": { - "2024-12-01T00:00:00+02:00": 1 - }, - "650002893cc619d36e43a166": { - "2024-12-01T00:00:00+02:00": 112 - }, - "67219003d36466abaeb1f995": { - "2024-12-01T00:00:00+02:00": 50 - }, - "66f0dd46cf609b13436885f5": { - "2024-12-01T00:00:00+02:00": 23 - }, - "652ea963fa315318e7925510": { - "2024-12-01T00:00:00+02:00": 4 - } - }, - "D. Update Notification Action - [Inbox] [Total Events]": { - "$overall": { - "2024-12-01T00:00:00+02:00": 664 - }, - "650b644a42707458fe431762": { - "2024-12-01T00:00:00+02:00": 4 - }, - "66b35706aa4218d126bbbf49": { - "2024-12-01T00:00:00+02:00": 1 - }, - "6734a5a33b50565012d8dce0": { - "2024-12-01T00:00:00+02:00": 2 - }, - "6408f2f0dd5f589fe2ca61b4": { - "2024-12-01T00:00:00+02:00": 3 - }, - "671f768afb21db27362e8d5f": { - "2024-12-01T00:00:00+02:00": 492 - }, - "66fa9de25d6b8aa393727348": { - "2024-12-01T00:00:00+02:00": 10 - }, - "66cf1c1bcf609b134337b496": { - "2024-12-01T00:00:00+02:00": 31 - }, - "662a58724b6cd9280bf5139d": { - "2024-12-01T00:00:00+02:00": 4 - }, - "66b3c633abc563f5ee1c4ffa": { - "2024-12-01T00:00:00+02:00": 6 - }, - "6742dd7d1bb91e63d914a510": { - "2024-12-01T00:00:00+02:00": 13 - }, - "6322333a2d7b721933bd8cf6": { - "2024-12-01T00:00:00+02:00": 33 - }, - "671faf6b285bc655d85f6e65": { - "2024-12-01T00:00:00+02:00": 5 - }, - "66a0f9f7f502999ed8453644": { - "2024-12-01T00:00:00+02:00": 2 - }, - "665f34e28e2550325700cda9": { - "2024-12-01T00:00:00+02:00": 10 - }, - "662f0d0e843a6a8496596159": { - "2024-12-01T00:00:00+02:00": 38 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-12-01T00:00:00+02:00": 10 - } - } - }, - "time_comparison": { - "date_range": { - "from_date": "2024-11-01T00:00:00+02:00", - "to_date": "2024-11-30T23:59:59.999000+02:00" - }, - "series": { - "A. Session Initialized - [Inbox] [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4856982 - }, - "66d9e408cf609b134331065f": { - "2024-11-01T00:00:00+02:00": 13744 - }, - "659d3b40f58e905eca1793b0": { - "2024-11-01T00:00:00+02:00": 350 - }, - "67219003d36466abaeb1f995": { - "2024-11-01T00:00:00+02:00": 1100 - }, - "66cde6ffcf609b13433bff6b": { - "2024-11-01T00:00:00+02:00": 44 - }, - "669ba0033c94be87b123b8c5": { - "2024-11-01T00:00:00+02:00": 1095 - }, - "6742dd7d1bb91e63d914a510": { - "2024-11-01T00:00:00+02:00": 119 - }, - "67444c602c32fe389fd89f54": { - "2024-11-01T00:00:00+02:00": 564 - }, - "6322333a2d7b721933bd8cf6": { - "2024-11-01T00:00:00+02:00": 56073 - }, - "66b3c633abc563f5ee1c4ffa": { - "2024-11-01T00:00:00+02:00": 16026 - }, - "671faf6b285bc655d85f6e65": { - "2024-11-01T00:00:00+02:00": 721 - }, - "642552b70136cef86a79373c": { - "2024-11-01T00:00:00+02:00": 5894 - }, - "66f19c98cf609b134304a0f6": { - "2024-11-01T00:00:00+02:00": 59068 - }, - "662f0d0e843a6a8496596159": { - "2024-11-01T00:00:00+02:00": 21879 - }, - "67235ab730d1c099604bf849": { - "2024-11-01T00:00:00+02:00": 9581 - }, - "671bba5a0ab03d946718eb3b": { - "2024-11-01T00:00:00+02:00": 763 - }, - "66b35706aa4218d126bbbf49": { - "2024-11-01T00:00:00+02:00": 30581 - }, - "66ce471dcf609b1343289560": { - "2024-11-01T00:00:00+02:00": 3713926 - }, - "63320239ee1316a5c87e38d1": { - "2024-11-01T00:00:00+02:00": 7006 - }, - "65cb7ceb619fe4f9cf882165": { - "2024-11-01T00:00:00+02:00": 4640 - }, - "66cf1c1bcf609b134337b496": { - "2024-11-01T00:00:00+02:00": 1091 - }, - "66fa9de25d6b8aa393727348": { - "2024-11-01T00:00:00+02:00": 2045 - }, - "671dcbd5fb21db27364e8179": { - "2024-11-01T00:00:00+02:00": 14509 - }, - "674586592c32fe389f95879e": { - "2024-11-01T00:00:00+02:00": 828 - }, - "67463a802c32fe389fa61341": { - "2024-11-01T00:00:00+02:00": 35 - }, - "66f0dd46cf609b13436885f5": { - "2024-11-01T00:00:00+02:00": 312 - }, - "671b580c7cf00cbadbb9b0c3": { - "2024-11-01T00:00:00+02:00": 1547 - }, - "64e46fc009b229a7c5c1735c": { - "2024-11-01T00:00:00+02:00": 607389 - }, - "66cedf34cf609b134361bfa7": { - "2024-11-01T00:00:00+02:00": 15 - }, - "63fe730e5787050c5df466a9": { - "2024-11-01T00:00:00+02:00": 3005 - }, - "66fc55c5cf609b13433a677d": { - "2024-11-01T00:00:00+02:00": 5532 - }, - "6721fd6e30d1c09960214146": { - "2024-11-01T00:00:00+02:00": 2880 - }, - "65df17f92b39eba95ab6ae95": { - "2024-11-01T00:00:00+02:00": 1 - }, - "66a5008b076eb7c94c1adb92": { - "2024-11-01T00:00:00+02:00": 20 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-11-01T00:00:00+02:00": 102225 - }, - "66fd558bcf609b1343268e49": { - "2024-11-01T00:00:00+02:00": 4745 - }, - "6671df91f4a238f107fe9f56": { - "2024-11-01T00:00:00+02:00": 730 - }, - "67475e932c32fe389fa51052": { - "2024-11-01T00:00:00+02:00": 71 - }, - "665f34e28e2550325700cda9": { - "2024-11-01T00:00:00+02:00": 119 - }, - "650002893cc619d36e43a166": { - "2024-11-01T00:00:00+02:00": 6830 - }, - "6408f2f0dd5f589fe2ca61b4": { - "2024-11-01T00:00:00+02:00": 1471 - }, - "641c3bb95d9af70da93f09a9": { - "2024-11-01T00:00:00+02:00": 285 - }, - "66a0f9f7f502999ed8453644": { - "2024-11-01T00:00:00+02:00": 8299 - }, - "671f768afb21db27362e8d5f": { - "2024-11-01T00:00:00+02:00": 14195 - }, - "6643b1e7fbadc9d325959e25": { - "2024-11-01T00:00:00+02:00": 12322 - }, - "67212578d50b4e9ff9a6cc1f": { - "2024-11-01T00:00:00+02:00": 8521 - }, - "6644fabbfbadc9d325d90248": { - "2024-11-01T00:00:00+02:00": 67886 - }, - "652ea963fa315318e7925510": { - "2024-11-01T00:00:00+02:00": 73 - }, - "668d398684227ca750502c57": { - "2024-11-01T00:00:00+02:00": 7330 - }, - "650b644a42707458fe431762": { - "2024-11-01T00:00:00+02:00": 1268 - }, - "66b9e7e99c11077f0298542c": { - "2024-11-01T00:00:00+02:00": 8 - }, - "64fb853287135ffdc3b410ec": { - "2024-11-01T00:00:00+02:00": 38221 - } - }, - "B. Update Preferences - [Inbox] [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2742068 - }, - "64c7be962df653eabd0a53dd": { - "2024-11-01T00:00:00+02:00": 15 - }, - "646f26388b0b51ed1734729b": { - "2024-11-01T00:00:00+02:00": 48 - }, - "64477125ac1c08f04edc14aa": { - "2024-11-01T00:00:00+02:00": 6 - }, - "6508ba6e7722fc74ea9637ec": { - "2024-11-01T00:00:00+02:00": 3 - }, - "657752b62682a8ccf9887a7c": { - "2024-11-01T00:00:00+02:00": 2 - }, - "650c474042707458fe59f367": { - "2024-11-01T00:00:00+02:00": 11 - }, - "6516702d73891288fc1ca032": { - "2024-11-01T00:00:00+02:00": 2 - }, - "643d4f7130bdc004e35b8b0e": { - "2024-11-01T00:00:00+02:00": 5 - }, - "66fa9de25d6b8aa393727348": { - "2024-11-01T00:00:00+02:00": 4 - }, - "67235ab730d1c099604bf849": { - "2024-11-01T00:00:00+02:00": 1 - }, - "66ce471dcf609b1343289560": { - "2024-11-01T00:00:00+02:00": 8 - }, - "6400caeef591ea2e090f6040": { - "2024-11-01T00:00:00+02:00": 45872 - }, - "653f9eeac93cc0129acf4bcb": { - "2024-11-01T00:00:00+02:00": 2689412 - }, - "660c351dbfb1f0d56f7a6fcc": { - "2024-11-01T00:00:00+02:00": 10 - }, - "6463ebef60f1803b3a6fbf6b": { - "2024-11-01T00:00:00+02:00": 2 - }, - "63a32b86bee1d5aed72d7f15": { - "2024-11-01T00:00:00+02:00": 6 - }, - "66d9e408cf609b134331065f": { - "2024-11-01T00:00:00+02:00": 86 - }, - "64fb853287135ffdc3b410ec": { - "2024-11-01T00:00:00+02:00": 6 - }, - "671bba5a0ab03d946718eb3b": { - "2024-11-01T00:00:00+02:00": 8 - }, - "643e8d58b6a53d8ae70721c2": { - "2024-11-01T00:00:00+02:00": 2 - }, - "63cea3496779056a3f2fff8d": { - "2024-11-01T00:00:00+02:00": 140 - }, - "630cb844fafbba9bf010f186": { - "2024-11-01T00:00:00+02:00": 3 - }, - "651fa9f835fbd6284965127c": { - "2024-11-01T00:00:00+02:00": 4 - }, - "6670ed6e78b0832675c76f6a": { - "2024-11-01T00:00:00+02:00": 7 - }, - "65ceaef2535ad490c942a13c": { - "2024-11-01T00:00:00+02:00": 85 - }, - "66362cc66c5885a3257940bb": { - "2024-11-01T00:00:00+02:00": 2 - }, - "63cf21de42cfbce360219228": { - "2024-11-01T00:00:00+02:00": 1 - }, - "65439145e3bcee0f76a5a368": { - "2024-11-01T00:00:00+02:00": 1 - }, - "6525396bae3f3225a9475db0": { - "2024-11-01T00:00:00+02:00": 139 - }, - "64df0f4ea9172aa4b7052247": { - "2024-11-01T00:00:00+02:00": 1 - }, - "66ac042fb11ac224eaf4f23a": { - "2024-11-01T00:00:00+02:00": 30 - }, - "64341d3fd766fd13ee96b6a1": { - "2024-11-01T00:00:00+02:00": 3 - }, - "63b3f614749085d8f285703a": { - "2024-11-01T00:00:00+02:00": 21 - }, - "64f09213faeddba41e0137d9": { - "2024-11-01T00:00:00+02:00": 4 - }, - "66b3c633abc563f5ee1c4ffa": { - "2024-11-01T00:00:00+02:00": 7 - }, - "64135799799e3c974d3f6426": { - "2024-11-01T00:00:00+02:00": 304 - }, - "6572fd669788e6811d7b4d64": { - "2024-11-01T00:00:00+02:00": 11 - }, - "662a58724b6cd9280bf5139d": { - "2024-11-01T00:00:00+02:00": 19 - }, - "67219003d36466abaeb1f995": { - "2024-11-01T00:00:00+02:00": 6 - }, - "6540cb89c086274eec8fb0b1": { - "2024-11-01T00:00:00+02:00": 158 - }, - "66621bc53a586fac83886829": { - "2024-11-01T00:00:00+02:00": 4 - }, - "667abaa4218289a1c466b985": { - "2024-11-01T00:00:00+02:00": 4 - }, - "650002893cc619d36e43a166": { - "2024-11-01T00:00:00+02:00": 14 - }, - "62cd681212f9e10011655a35": { - "2024-11-01T00:00:00+02:00": 416 - }, - "67444c602c32fe389fd89f54": { - "2024-11-01T00:00:00+02:00": 2 - }, - "62fa8155227ab843d407b3f5": { - "2024-11-01T00:00:00+02:00": 2 - }, - "6644fabbfbadc9d325d90248": { - "2024-11-01T00:00:00+02:00": 16 - }, - "63362369e2a2de81df9b0573": { - "2024-11-01T00:00:00+02:00": 8 - }, - "6453755860f1803b3a3fba83": { - "2024-11-01T00:00:00+02:00": 3 - }, - "66cf1c1bcf609b134337b496": { - "2024-11-01T00:00:00+02:00": 29 - }, - "64011cb9841d0bacae01f6ff": { - "2024-11-01T00:00:00+02:00": 1 - }, - "662f0d0e843a6a8496596159": { - "2024-11-01T00:00:00+02:00": 29 - }, - "651d2708e1b82d64b37fb064": { - "2024-11-01T00:00:00+02:00": 2 - }, - "6578cf542c7e267bc3e3897a": { - "2024-11-01T00:00:00+02:00": 2 - }, - "66b997fe9c11077f0257d94e": { - "2024-11-01T00:00:00+02:00": 4 - }, - "6439210da97b5d90d4874f30": { - "2024-11-01T00:00:00+02:00": 136 - }, - "65fd55c44f991166e7a7335e": { - "2024-11-01T00:00:00+02:00": 3366 - }, - "64d10e4220f4008b5df1e37a": { - "2024-11-01T00:00:00+02:00": 1 - }, - "667afbe4231acc7b876e0a8a": { - "2024-11-01T00:00:00+02:00": 10 - }, - "6337ca88ee1316a5c8a9009e": { - "2024-11-01T00:00:00+02:00": 444 - }, - "64eda93c14b8a3ace6f4c5e9": { - "2024-11-01T00:00:00+02:00": 9 - }, - "64469b1b4919b8d7cbf845ef": { - "2024-11-01T00:00:00+02:00": 10 - }, - "668d398684227ca750502c57": { - "2024-11-01T00:00:00+02:00": 2 - }, - "64e4824819860000717aecb9": { - "2024-11-01T00:00:00+02:00": 271 - }, - "642d9001c6b53aa5dd5124f5": { - "2024-11-01T00:00:00+02:00": 2 - }, - "651c209f8816295152811079": { - "2024-11-01T00:00:00+02:00": 11 - }, - "6663404493a6b815ffefb2f0": { - "2024-11-01T00:00:00+02:00": 380 - }, - "652ea963fa315318e7925510": { - "2024-11-01T00:00:00+02:00": 122 - }, - "671bcf830ab03d9467221e9b": { - "2024-11-01T00:00:00+02:00": 5 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-11-01T00:00:00+02:00": 183 - }, - "660b31f5b551758561fb037c": { - "2024-11-01T00:00:00+02:00": 91 - }, - "6322333a2d7b721933bd8cf6": { - "2024-11-01T00:00:00+02:00": 26 - }, - "65fbe3a58453b14f2f670e14": { - "2024-11-01T00:00:00+02:00": 7 - }, - "650b644a42707458fe431762": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "C. Mark Notification As - [Inbox] [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15126 - }, - "66cf1c1bcf609b134337b496": { - "2024-11-01T00:00:00+02:00": 223 - }, - "66b3c633abc563f5ee1c4ffa": { - "2024-11-01T00:00:00+02:00": 11 - }, - "67444c602c32fe389fd89f54": { - "2024-11-01T00:00:00+02:00": 460 - }, - "6408f2f0dd5f589fe2ca61b4": { - "2024-11-01T00:00:00+02:00": 11 - }, - "65cb7ceb619fe4f9cf882165": { - "2024-11-01T00:00:00+02:00": 49 - }, - "669ba0033c94be87b123b8c5": { - "2024-11-01T00:00:00+02:00": 87 - }, - "66ce471dcf609b1343289560": { - "2024-11-01T00:00:00+02:00": 721 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-11-01T00:00:00+02:00": 11 - }, - "665f34e28e2550325700cda9": { - "2024-11-01T00:00:00+02:00": 13 - }, - "66f19c98cf609b134304a0f6": { - "2024-11-01T00:00:00+02:00": 204 - }, - "650002893cc619d36e43a166": { - "2024-11-01T00:00:00+02:00": 84 - }, - "6322333a2d7b721933bd8cf6": { - "2024-11-01T00:00:00+02:00": 123 - }, - "6643b1e7fbadc9d325959e25": { - "2024-11-01T00:00:00+02:00": 105 - }, - "662f0d0e843a6a8496596159": { - "2024-11-01T00:00:00+02:00": 23 - }, - "67475e932c32fe389fa51052": { - "2024-11-01T00:00:00+02:00": 10 - }, - "66a0f9f7f502999ed8453644": { - "2024-11-01T00:00:00+02:00": 32 - }, - "668d398684227ca750502c57": { - "2024-11-01T00:00:00+02:00": 61 - }, - "6742dd7d1bb91e63d914a510": { - "2024-11-01T00:00:00+02:00": 5 - }, - "652ea963fa315318e7925510": { - "2024-11-01T00:00:00+02:00": 4 - }, - "6721fd6e30d1c09960214146": { - "2024-11-01T00:00:00+02:00": 406 - }, - "6671df91f4a238f107fe9f56": { - "2024-11-01T00:00:00+02:00": 1 - }, - "66fd558bcf609b1343268e49": { - "2024-11-01T00:00:00+02:00": 128 - }, - "671bba5a0ab03d946718eb3b": { - "2024-11-01T00:00:00+02:00": 183 - }, - "66d9e408cf609b134331065f": { - "2024-11-01T00:00:00+02:00": 25 - }, - "671b580c7cf00cbadbb9b0c3": { - "2024-11-01T00:00:00+02:00": 30 - }, - "66b35706aa4218d126bbbf49": { - "2024-11-01T00:00:00+02:00": 2 - }, - "650b644a42707458fe431762": { - "2024-11-01T00:00:00+02:00": 38 - }, - "6644fabbfbadc9d325d90248": { - "2024-11-01T00:00:00+02:00": 50 - }, - "66f0dd46cf609b13436885f5": { - "2024-11-01T00:00:00+02:00": 16 - }, - "64e46fc009b229a7c5c1735c": { - "2024-11-01T00:00:00+02:00": 10030 - }, - "64fb853287135ffdc3b410ec": { - "2024-11-01T00:00:00+02:00": 1601 - }, - "66fa9de25d6b8aa393727348": { - "2024-11-01T00:00:00+02:00": 19 - }, - "63320239ee1316a5c87e38d1": { - "2024-11-01T00:00:00+02:00": 8 - }, - "67219003d36466abaeb1f995": { - "2024-11-01T00:00:00+02:00": 103 - }, - "671faf6b285bc655d85f6e65": { - "2024-11-01T00:00:00+02:00": 20 - }, - "67212578d50b4e9ff9a6cc1f": { - "2024-11-01T00:00:00+02:00": 37 - }, - "67235ab730d1c099604bf849": { - "2024-11-01T00:00:00+02:00": 192 - } - }, - "D. Update Notification Action - [Inbox] [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1285 - }, - "6408f2f0dd5f589fe2ca61b4": { - "2024-11-01T00:00:00+02:00": 19 - }, - "671faf6b285bc655d85f6e65": { - "2024-11-01T00:00:00+02:00": 17 - }, - "66cf1c1bcf609b134337b496": { - "2024-11-01T00:00:00+02:00": 48 - }, - "662f0d0e843a6a8496596159": { - "2024-11-01T00:00:00+02:00": 14 - }, - "64fb853287135ffdc3b410ec": { - "2024-11-01T00:00:00+02:00": 119 - }, - "671f768afb21db27362e8d5f": { - "2024-11-01T00:00:00+02:00": 734 - }, - "66fa9de25d6b8aa393727348": { - "2024-11-01T00:00:00+02:00": 175 - }, - "66b3c633abc563f5ee1c4ffa": { - "2024-11-01T00:00:00+02:00": 2 - }, - "650b644a42707458fe431762": { - "2024-11-01T00:00:00+02:00": 121 - }, - "66a0f9f7f502999ed8453644": { - "2024-11-01T00:00:00+02:00": 5 - }, - "64654f8125b1fb30f26b3ce3": { - "2024-11-01T00:00:00+02:00": 3 - }, - "67444c602c32fe389fd89f54": { - "2024-11-01T00:00:00+02:00": 3 - }, - "6322333a2d7b721933bd8cf6": { - "2024-11-01T00:00:00+02:00": 25 - } - } - } - } - } -} diff --git a/apps/api/mixpanel-insights-cache.json b/apps/api/mixpanel-insights-cache.json deleted file mode 100644 index a9ba3421a19..00000000000 --- a/apps/api/mixpanel-insights-cache.json +++ /dev/null @@ -1,48886 +0,0 @@ -{ - "timestamp": 1734873102299, - "data": { - "headers": ["$event", "$distinct_id", "jobType", "name"], - "computed_at": "2024-12-22T13:11:30.732341+00:00", - "date_range": { - "from_date": "2024-12-01T00:00:00+02:00", - "to_date": "2024-12-22T15:11:26.390837+02:00" - }, - "meta": { - "min_sampling_factor": 1, - "is_segmentation_limit_hit": true, - "report_sections": { - "group": [ - { - "bookmark": { - "dataset": "$mixpanel", - "value": "$distinct_id", - "resourceType": "people", - "search": "", - "dataGroupId": "7400984862319914261", - "propertyType": "string" - } - }, - { - "bookmark": { - "dataset": "$mixpanel", - "value": "jobType", - "resourceType": "events", - "search": "", - "propertyType": "string" - } - }, - { - "bookmark": { - "dataset": "$mixpanel", - "value": "name", - "resourceType": "events", - "search": "", - "propertyType": "string" - } - } - ], - "show": [ - { - "metric_key": "A. Notification Subscriber Event Trigger [Total Events]" - }, - { - "metric_key": "B. Process Workflow Step - [Triggers] [Total Events]" - } - ] - } - }, - "series": { - "A. Notification Subscriber Event Trigger [Total Events]": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19699275 - }, - "62b8aeda9bbe840018528c47": { - "$overall": { - "2024-12-01T00:00:00+02:00": 525 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 525 - }, - "New User": { - "2024-12-01T00:00:00+02:00": 42 - }, - "Activity Baseline Update": { - "2024-12-01T00:00:00+02:00": 98 - }, - "Activity Create": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Activity Update": { - "2024-12-01T00:00:00+02:00": 343 - }, - "Activity Baseline Create": { - "2024-12-01T00:00:00+02:00": 21 - } - } - }, - "6421cf785876c8840c441642": { - "$overall": { - "2024-12-01T00:00:00+02:00": 275 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 275 - }, - "Verify email": { - "2024-12-01T00:00:00+02:00": 89 - }, - "Email verified/Welcome": { - "2024-12-01T00:00:00+02:00": 50 - }, - "distance-alert": { - "2024-12-01T00:00:00+02:00": 36 - }, - "price-alert": { - "2024-12-01T00:00:00+02:00": 100 - } - } - }, - "6408f2f0dd5f589fe2ca61b4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1871 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1871 - }, - "Notificação proposta unique gerada": { - "2024-12-01T00:00:00+02:00": 12 - }, - "A sua jornada começa agora": { - "2024-12-01T00:00:00+02:00": 12 - }, - "O2T8 Código de Acesso - Aurora": { - "2024-12-01T00:00:00+02:00": 285 - }, - "Fluxo notificacao novo Lead in App Gestor": { - "2024-12-01T00:00:00+02:00": 856 - }, - "O1T1 Cadastro de colaboradores - Aurora": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Sininho assinatura auditoria concluída (médico)": { - "2024-12-01T00:00:00+02:00": 13 - }, - "Notifica médico - Assinatura auditoria concluída": { - "2024-12-01T00:00:00+02:00": 46 - }, - "O3T2 Enviar Documentação - Aurora": { - "2024-12-01T00:00:00+02:00": 76 - }, - "CARUARU - Email de Boas Vindas": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Teste Workflow 24h": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Assinar Contrato - Aurora": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Email novo lead adicionado": { - "2024-12-01T00:00:00+02:00": 489 - } - } - }, - "6627ff494ad60adb146eca32": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2030 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2030 - }, - "Invitación Nuevo Asesor": { - "2024-12-01T00:00:00+02:00": 33 - }, - "Nuevo lead": { - "2024-12-01T00:00:00+02:00": 444 - }, - "Login": { - "2024-12-01T00:00:00+02:00": 267 - }, - "Visita solicitada": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Broker Asignado a Cliente": { - "2024-12-01T00:00:00+02:00": 444 - }, - "Bienvenida Asesor": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Edición de propiedad": { - "2024-12-01T00:00:00+02:00": 392 - }, - "Nuevo inicio de sesión": { - "2024-12-01T00:00:00+02:00": 411 - } - } - }, - "656dbe9f27f644ad0ecba9ae": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "qlan-push": { - "2024-12-01T00:00:00+02:00": 915 - } - } - }, - "65aad6098e557ef0afa191c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1420 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1420 - }, - "RTUT General": { - "2024-12-01T00:00:00+02:00": 1405 - }, - "One-Time-Code": { - "2024-12-01T00:00:00+02:00": 15 - } - } - }, - "66319137a95d2d5be0cffdd5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1438 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1438 - }, - "New Feature Launch": { - "2024-12-01T00:00:00+02:00": 1438 - } - } - }, - "66ea0719cf609b1343a50a19": { - "$overall": { - "2024-12-01T00:00:00+02:00": 306 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 306 - }, - "awaiting_sign_offs": { - "2024-12-01T00:00:00+02:00": 8 - }, - "private_viewing_reminder": { - "2024-12-01T00:00:00+02:00": 95 - }, - "rental_application_shortlisted": { - "2024-12-01T00:00:00+02:00": 12 - }, - "rental_application_accepted": { - "2024-12-01T00:00:00+02:00": 9 - }, - "rental_application_unsuccessful": { - "2024-12-01T00:00:00+02:00": 40 - }, - "credit_check_completed": { - "2024-12-01T00:00:00+02:00": 7 - }, - "new_tenancy_request_property_manager_variant": { - "2024-12-01T00:00:00+02:00": 9 - }, - "open_home_reminder": { - "2024-12-01T00:00:00+02:00": 93 - }, - "share_with_owner": { - "2024-12-01T00:00:00+02:00": 4 - }, - "send_request_to_supplier": { - "2024-12-01T00:00:00+02:00": 7 - }, - "new_enquiry_message": { - "2024-12-01T00:00:00+02:00": 7 - }, - "close_reminder": { - "2024-12-01T00:00:00+02:00": 5 - } - } - }, - "65ceaef2535ad490c942a13c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30382 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30382 - }, - "New Asset Creation": { - "2024-12-01T00:00:00+02:00": 857 - }, - "Asset Risk Score Decreased": { - "2024-12-01T00:00:00+02:00": 133 - }, - "Asset Risk Score Increased": { - "2024-12-01T00:00:00+02:00": 184 - }, - "New message in Security Experts": { - "2024-12-01T00:00:00+02:00": 153 - }, - "New Vulnerability Identified": { - "2024-12-01T00:00:00+02:00": 9197 - }, - "Fixed Vulnerability": { - "2024-12-01T00:00:00+02:00": 19858 - } - } - }, - "634d5b1a27d50dea0bbfa3bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12087 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12087 - }, - "Ticket state changed": { - "2024-12-01T00:00:00+02:00": 3228 - }, - "Ticket assigned changed": { - "2024-12-01T00:00:00+02:00": 974 - }, - "Ticket commenté": { - "2024-12-01T00:00:00+02:00": 7720 - }, - "File added to ticket": { - "2024-12-01T00:00:00+02:00": 165 - } - } - }, - "64f09213faeddba41e0137d9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 634 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 634 - }, - "Course Enrollment Invitation": { - "2024-12-01T00:00:00+02:00": 123 - }, - "Learner Query Response Notification": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Notification to Inform Referrer": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Learner reallocate course": { - "2024-12-01T00:00:00+02:00": 51 - }, - "Activation Reminder": { - "2024-12-01T00:00:00+02:00": 93 - }, - "Welcome email": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Profile completion reminder": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Testing API call": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Email Verification": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Learner Cancellation Outcome": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Learner self enrolled - No account": { - "2024-12-01T00:00:00+02:00": 56 - }, - "Class rebooking": { - "2024-12-01T00:00:00+02:00": 26 - }, - "Staff Cancellation Enrolment Notification to Learner": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Referral Email": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Setup Password": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Enrolment form submitted": { - "2024-12-01T00:00:00+02:00": 19 - }, - "Learner Cancellation Request": { - "2024-12-01T00:00:00+02:00": 13 - }, - "Query": { - "2024-12-01T00:00:00+02:00": 30 - }, - "Notification to Learner (has account) referred by Referrer": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Notification to Learner (has account) added in admin portal": { - "2024-12-01T00:00:00+02:00": 43 - } - } - }, - "6502d39087135ffdc35caf67": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16808 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16808 - }, - "user-add": { - "2024-12-01T00:00:00+02:00": 8 - }, - "events-dynamo-trigger": { - "2024-12-01T00:00:00+02:00": 6864 - }, - "events-changed-status": { - "2024-12-01T00:00:00+02:00": 9936 - } - } - }, - "651add0cb03ff038cedc7448": { - "$overall": { - "2024-12-01T00:00:00+02:00": 258508 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 258508 - }, - "quota-alert-pec": { - "2024-12-01T00:00:00+02:00": 5 - }, - "quota-alert": { - "2024-12-01T00:00:00+02:00": 68 - }, - "new-message": { - "2024-12-01T00:00:00+02:00": 258434 - } - } - }, - "668fa1064111ae088df8ecd3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 356 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 356 - }, - "empa-workflow": { - "2024-12-01T00:00:00+02:00": 356 - } - } - }, - "669187bb9efb8372ce7c6483": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1117 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1117 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1117 - } - } - }, - "63f586fd589ed09e95f0010f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 747 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 747 - }, - "Notificaciones Sistema Abre.cloud": { - "2024-12-01T00:00:00+02:00": 747 - } - } - }, - "6361ae479e04bb11b51b9401": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2232 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2232 - }, - "Patient Reminder": { - "2024-12-01T00:00:00+02:00": 91 - }, - "Organisation admin to complete": { - "2024-12-01T00:00:00+02:00": 1768 - }, - "Patient Invite": { - "2024-12-01T00:00:00+02:00": 57 - }, - "send-pdf": { - "2024-12-01T00:00:00+02:00": 90 - }, - "Referral update": { - "2024-12-01T00:00:00+02:00": 166 - }, - "Practitioner to complete stage": { - "2024-12-01T00:00:00+02:00": 60 - } - } - }, - "660c351dbfb1f0d56f7a6fcc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 424 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 424 - }, - "requestlist-actorsaddedtoitem-v1": { - "2024-12-01T00:00:00+02:00": 14 - }, - "requestlist-duedatereminders-v1": { - "2024-12-01T00:00:00+02:00": 410 - } - } - }, - "666c096bb3464b7775094768": { - "$overall": { - "2024-12-01T00:00:00+02:00": 814 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 814 - }, - "initiative-updates": { - "2024-12-01T00:00:00+02:00": 644 - }, - "task-updates": { - "2024-12-01T00:00:00+02:00": 62 - }, - "kpi-updates": { - "2024-12-01T00:00:00+02:00": 12 - }, - "kpi-target-updates": { - "2024-12-01T00:00:00+02:00": 58 - }, - "praise-updates": { - "2024-12-01T00:00:00+02:00": 13 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 25 - } - } - }, - "6439d814d3f2f7f8eb014099": { - "$overall": { - "2024-12-01T00:00:00+02:00": 282 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 282 - }, - "invitation created (unregistered)": { - "2024-12-01T00:00:00+02:00": 162 - }, - "invitation created (registered)": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Reset password": { - "2024-12-01T00:00:00+02:00": 13 - }, - "subscription canceled": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Confirmation instructions": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Invitation accepted": { - "2024-12-01T00:00:00+02:00": 22 - } - } - }, - "65f086bfeb4977909f034ec2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 860 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 860 - }, - "Candidate Viewed": { - "2024-12-01T00:00:00+02:00": 554 - }, - "Candidate Submission": { - "2024-12-01T00:00:00+02:00": 134 - }, - "Candidate Submission Status -> Offer": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Candidate Submission Status -> Interview": { - "2024-12-01T00:00:00+02:00": 114 - }, - "Multiple Candidate Submission": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Candidate Submission Status -> Rejected": { - "2024-12-01T00:00:00+02:00": 22 - }, - "Create Note": { - "2024-12-01T00:00:00+02:00": 8 - } - } - }, - "657752b62682a8ccf9887a7c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 149114 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 149114 - }, - "Shared Item": { - "2024-12-01T00:00:00+02:00": 24 - }, - "Email-test": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Deleted Marked Exhibit": { - "2024-12-01T00:00:00+02:00": 74 - }, - "Annotation Sessions": { - "2024-12-01T00:00:00+02:00": 2036 - }, - "Sample Email": { - "2024-12-01T00:00:00+02:00": 43 - }, - "Sample SMS": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Documents Requested": { - "2024-12-01T00:00:00+02:00": 90 - }, - "Refresh Files": { - "2024-12-01T00:00:00+02:00": 1082 - }, - "Introduced Marked Exhibit": { - "2024-12-01T00:00:00+02:00": 140404 - }, - "Exhibit Clawbacks": { - "2024-12-01T00:00:00+02:00": 5226 - }, - "MyVeritext": { - "2024-12-01T00:00:00+02:00": 28 - }, - "Document Request Concluded": { - "2024-12-01T00:00:00+02:00": 81 - } - } - }, - "641c3bb95d9af70da93f09a9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1342 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1342 - }, - "trip-booked": { - "2024-12-01T00:00:00+02:00": 99 - }, - "trip-operational-note": { - "2024-12-01T00:00:00+02:00": 58 - }, - "trip-eta-update": { - "2024-12-01T00:00:00+02:00": 91 - }, - "trip-cancelled": { - "2024-12-01T00:00:00+02:00": 6 - }, - "trip-completed": { - "2024-12-01T00:00:00+02:00": 178 - }, - "trip-driver-assessment": { - "2024-12-01T00:00:00+02:00": 351 - }, - "trip-driver-update": { - "2024-12-01T00:00:00+02:00": 556 - } - } - }, - "644c1877631887e5f006a54f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1191 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1191 - }, - "Bergsify - MAS": { - "2024-12-01T00:00:00+02:00": 1191 - } - } - }, - "664c96c0e6f72af294ae867a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "Sign Contract": { - "2024-12-01T00:00:00+02:00": 191 - }, - "Subscription": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Order Completed": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Independent Request Acceptance": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Add On": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Associate Disconnection": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Place Order": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Share Order": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Independent Request Rejection": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Independent Association Request": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Order Closed": { - "2024-12-01T00:00:00+02:00": 5 - } - } - }, - "6436e7094f087a109c0322a7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6340 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6340 - }, - "Database Create": { - "2024-12-01T00:00:00+02:00": 4578 - }, - "Database Hibernate": { - "2024-12-01T00:00:00+02:00": 71 - }, - "Database ResumeHibernatedCluster": { - "2024-12-01T00:00:00+02:00": 65 - }, - "Database Created: Vector": { - "2024-12-01T00:00:00+02:00": 491 - }, - "Database Created: Serverless": { - "2024-12-01T00:00:00+02:00": 1135 - } - } - }, - "645863ebd6925ea19b7d2456": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2286 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2286 - }, - "Workflow Notification": { - "2024-12-01T00:00:00+02:00": 2286 - } - } - }, - "65af6ad4f58e905ecab29441": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2266879 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2266879 - }, - "Ohsogo Pegasus FCM": { - "2024-12-01T00:00:00+02:00": 2266879 - } - } - }, - "669559c51c484e3d9a0e1839": { - "$overall": { - "2024-12-01T00:00:00+02:00": 265 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 265 - }, - "send-push-notification-using-fcm": { - "2024-12-01T00:00:00+02:00": 265 - } - } - }, - "65113f461a7614493dc5a9f0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42635 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42635 - }, - "purchase_invoice_group": { - "2024-12-01T00:00:00+02:00": 16 - }, - "New Group Member": { - "2024-12-01T00:00:00+02:00": 41669 - }, - "session_reminder": { - "2024-12-01T00:00:00+02:00": 139 - }, - "Group Post Reply": { - "2024-12-01T00:00:00+02:00": 186 - }, - "purchase_invoice": { - "2024-12-01T00:00:00+02:00": 45 - }, - "Group Post Created": { - "2024-12-01T00:00:00+02:00": 551 - }, - "group_onboarding_submit": { - "2024-12-01T00:00:00+02:00": 19 - }, - "Group session questions submitted": { - "2024-12-01T00:00:00+02:00": 9 - } - } - }, - "65caa89e619fe4f9cf723907": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23726 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23726 - }, - "Saved Search Notification - 1": { - "2024-12-01T00:00:00+02:00": 23726 - } - } - }, - "63a32b86bee1d5aed72d7f15": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4662 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4662 - }, - "Job sendouts": { - "2024-12-01T00:00:00+02:00": 1764 - }, - "Reminders": { - "2024-12-01T00:00:00+02:00": 2898 - } - } - }, - "66d9e408cf609b134331065f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7646 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7646 - }, - "listing-new-collection": { - "2024-12-01T00:00:00+02:00": 1019 - }, - "offer-accepted": { - "2024-12-01T00:00:00+02:00": 14 - }, - "listing-accepted": { - "2024-12-01T00:00:00+02:00": 331 - }, - "daily-digest": { - "2024-12-01T00:00:00+02:00": 2528 - }, - "weekly-digest": { - "2024-12-01T00:00:00+02:00": 2528 - }, - "offer-new-collection": { - "2024-12-01T00:00:00+02:00": 1202 - }, - "offer-received": { - "2024-12-01T00:00:00+02:00": 24 - } - } - }, - "66a79f82dfafba8038bc3399": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1119 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1119 - }, - "account-verification-code-sms": { - "2024-12-01T00:00:00+02:00": 242 - }, - "account-verification-code": { - "2024-12-01T00:00:00+02:00": 877 - } - } - }, - "6569c906478e147113dd7a9e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 496 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 496 - }, - "SEBI RA Account Activated": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Untitled": { - "2024-12-01T00:00:00+02:00": 6 - }, - "DayTrade Welcome Email": { - "2024-12-01T00:00:00+02:00": 485 - } - } - }, - "63fe730e5787050c5df466a9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2965 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2965 - }, - "ve-alerts": { - "2024-12-01T00:00:00+02:00": 2110 - }, - "ve-model-changes": { - "2024-12-01T00:00:00+02:00": 762 - }, - "visualping-notification": { - "2024-12-01T00:00:00+02:00": 8 - }, - "ve-new-event": { - "2024-12-01T00:00:00+02:00": 85 - } - } - }, - "6639eeff0c0215ee78621015": { - "$overall": { - "2024-12-01T00:00:00+02:00": 41919 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 41919 - }, - "development ENV": { - "2024-12-01T00:00:00+02:00": 41779 - }, - "oms app": { - "2024-12-01T00:00:00+02:00": 140 - } - } - }, - "6557f01a8c7cd7ff32f2d475": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27331 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27331 - }, - "Alert: Overtime Worked": { - "2024-12-01T00:00:00+02:00": 241 - }, - "Alert: Sensor Empty": { - "2024-12-01T00:00:00+02:00": 852 - }, - "Alert: Cleaning Time Short": { - "2024-12-01T00:00:00+02:00": 19019 - }, - "Alert: Beacon offline": { - "2024-12-01T00:00:00+02:00": 676 - }, - "Alert: Missed Shift": { - "2024-12-01T00:00:00+02:00": 2535 - }, - "Alert: Basestation offline": { - "2024-12-01T00:00:00+02:00": 68 - }, - "Org invites a user": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Alert: Cleaning Time Long": { - "2024-12-01T00:00:00+02:00": 455 - }, - "Alert: Unscheduled Visit": { - "2024-12-01T00:00:00+02:00": 1305 - }, - "Alert: High Traffic": { - "2024-12-01T00:00:00+02:00": 1251 - }, - "Schedule Reports": { - "2024-12-01T00:00:00+02:00": 911 - } - } - }, - "661541fa6df43c247a0a31f9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 895 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 895 - }, - "Task Assigned": { - "2024-12-01T00:00:00+02:00": 766 - }, - "Thread Assigned": { - "2024-12-01T00:00:00+02:00": 129 - } - } - }, - "662f0d0e843a6a8496596159": { - "$overall": { - "2024-12-01T00:00:00+02:00": 361 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 361 - }, - "Task updated (self-serve)": { - "2024-12-01T00:00:00+02:00": 146 - }, - "File uploaded (self-serve)": { - "2024-12-01T00:00:00+02:00": 152 - }, - "File rejected (self-serve)": { - "2024-12-01T00:00:00+02:00": 58 - } - } - }, - "651e2d9e8816295152897198": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1032 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1032 - }, - "Liqudity Buy Alert With Referr info": { - "2024-12-01T00:00:00+02:00": 22 - }, - "Registration Successful": { - "2024-12-01T00:00:00+02:00": 63 - }, - "Onboarding Workflow": { - "2024-12-01T00:00:00+02:00": 169 - }, - "OTP DCN": { - "2024-12-01T00:00:00+02:00": 778 - } - } - }, - "655f20b2afd4055e0df6ae1d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1119 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1119 - }, - "Create Dashboard": { - "2024-12-01T00:00:00+02:00": 30 - }, - "alert": { - "2024-12-01T00:00:00+02:00": 593 - }, - "Welcome Email": { - "2024-12-01T00:00:00+02:00": 28 - }, - "Scheduled Dashboard": { - "2024-12-01T00:00:00+02:00": 468 - } - } - }, - "67235ab730d1c099604bf849": { - "$overall": { - "2024-12-01T00:00:00+02:00": 408 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 408 - }, - "App Data Updated": { - "2024-12-01T00:00:00+02:00": 331 - }, - "App Data Created": { - "2024-12-01T00:00:00+02:00": 73 - }, - "App Data Commented": { - "2024-12-01T00:00:00+02:00": 4 - } - } - }, - "63320239ee1316a5c87e38d1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18462 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18462 - }, - "roles": { - "2024-12-01T00:00:00+02:00": 6 - }, - "admin-onboarding": { - "2024-12-01T00:00:00+02:00": 2759 - }, - "admin-subscriptions": { - "2024-12-01T00:00:00+02:00": 244 - }, - "my-rows": { - "2024-12-01T00:00:00+02:00": 22 - }, - "admin-account-members": { - "2024-12-01T00:00:00+02:00": 73 - }, - "admin-rows": { - "2024-12-01T00:00:00+02:00": 8964 - }, - "admin-accounts": { - "2024-12-01T00:00:00+02:00": 4926 - }, - "admin-users": { - "2024-12-01T00:00:00+02:00": 1468 - } - } - }, - "6615460e6df43c247a0e01bb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14669 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14669 - }, - "Darter Notification": { - "2024-12-01T00:00:00+02:00": 14669 - } - } - }, - "66b35706aa4218d126bbbf49": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1130 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1130 - }, - "Assigned": { - "2024-12-01T00:00:00+02:00": 221 - }, - "Status Updates": { - "2024-12-01T00:00:00+02:00": 540 - }, - "Mentions": { - "2024-12-01T00:00:00+02:00": 369 - } - } - }, - "650d24f8f39b9230da78520b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1132 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1132 - }, - "New comment": { - "2024-12-01T00:00:00+02:00": 1057 - }, - "New comment mention": { - "2024-12-01T00:00:00+02:00": 75 - } - } - }, - "630ca7b800f7dbd3faf2d726": { - "$overall": { - "2024-12-01T00:00:00+02:00": 93064 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 93064 - }, - "new_indicators_from_feed": { - "2024-12-01T00:00:00+02:00": 275 - }, - "new_insight_created_digest_security_product_disabled_on_gw": { - "2024-12-01T00:00:00+02:00": 66 - }, - "new_insight_created_digest_protection_found_in_inactive": { - "2024-12-01T00:00:00+02:00": 17352 - }, - "new_insight_created_digest_detect_to_prevent_no_hits": { - "2024-12-01T00:00:00+02:00": 13109 - }, - "new_insight_created_digest_ip_blocked_tp": { - "2024-12-01T00:00:00+02:00": 15390 - }, - "new_insight_created_digest_security_product_license_expired": { - "2024-12-01T00:00:00+02:00": 66 - }, - "new_insight_created_digest_security_product_not_enforced_in_profile": { - "2024-12-01T00:00:00+02:00": 108 - }, - "new_insight_created_digest_protection_in_detect_with_hits_tp": { - "2024-12-01T00:00:00+02:00": 9 - }, - "new_insight_created_digest_hash_blocked": { - "2024-12-01T00:00:00+02:00": 3440 - }, - "new_insight_created_digest_endpoint_detection_script": { - "2024-12-01T00:00:00+02:00": 745 - }, - "new_insight_created_digest_protection_fp": { - "2024-12-01T00:00:00+02:00": 42385 - }, - "new_insight_created_digest_jumbo_version_is_not_up_to_date": { - "2024-12-01T00:00:00+02:00": 65 - }, - "new_insight_created_digest_security_product_not_updated": { - "2024-12-01T00:00:00+02:00": 36 - }, - "new_insight_created_digest_security_product_on_gw_not_enforced_in_rulebase": { - "2024-12-01T00:00:00+02:00": 18 - } - } - }, - "63b80e5704fdc888671f3820": { - "$overall": { - "2024-12-01T00:00:00+02:00": 513 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 513 - }, - "Email Notification": { - "2024-12-01T00:00:00+02:00": 423 - }, - "SMS Notification": { - "2024-12-01T00:00:00+02:00": 90 - } - } - }, - "6453755860f1803b3a3fba83": { - "$overall": { - "2024-12-01T00:00:00+02:00": 270 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 270 - }, - "Sample Email Generation Completed": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Message Generation Completed": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Lead list generated": { - "2024-12-01T00:00:00+02:00": 205 - }, - "Unipile Account Disconnected": { - "2024-12-01T00:00:00+02:00": 13 - }, - "Bug was successfully submitted": { - "2024-12-01T00:00:00+02:00": 13 - }, - "User Sender Token expired": { - "2024-12-01T00:00:00+02:00": 22 - } - } - }, - "64c78706e994a8dc20cdb2e1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 255 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 255 - }, - "Reset Password": { - "2024-12-01T00:00:00+02:00": 152 - }, - "Account Verification": { - "2024-12-01T00:00:00+02:00": 43 - }, - "MMU": { - "2024-12-01T00:00:00+02:00": 60 - } - } - }, - "64092d0773a1721d0476baa9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 890 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 890 - }, - "Request To Confirm Appointment": { - "2024-12-01T00:00:00+02:00": 70 - }, - "Appointment Reminder to Me": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Appointment Is Canceled": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Appointment Reminder by Email": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Clinical Findings Updates": { - "2024-12-01T00:00:00+02:00": 22 - }, - "Appointment Reminder to Patient Before 24h": { - "2024-12-01T00:00:00+02:00": 63 - }, - "Patient Request to See New Provider": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Reqeust To Update LegalCase Status": { - "2024-12-01T00:00:00+02:00": 45 - }, - "Appointment Rescheduled": { - "2024-12-01T00:00:00+02:00": 4 - }, - "How Was Your Visit?": { - "2024-12-01T00:00:00+02:00": 41 - }, - "Assigned as a negotiator": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Appointment No Showed": { - "2024-12-01T00:00:00+02:00": 42 - }, - "A new Medical Record is available": { - "2024-12-01T00:00:00+02:00": 214 - }, - "MedLevel Is Updated": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Appointment Is Confirmed": { - "2024-12-01T00:00:00+02:00": 62 - }, - "Request To Check In Appointment": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Sign request for patient membership application": { - "2024-12-01T00:00:00+02:00": 118 - }, - "Appointment Is Checked In": { - "2024-12-01T00:00:00+02:00": 57 - }, - "Legalcase_is_dropped": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Referral That Need Scheduling": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Legal Case Ended": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "6508ba6e7722fc74ea9637ec": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6468 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6468 - }, - "New chat message received": { - "2024-12-01T00:00:00+02:00": 3570 - }, - "Case Document sent to review": { - "2024-12-01T00:00:00+02:00": 1855 - }, - "Immigrant joins the case": { - "2024-12-01T00:00:00+02:00": 47 - }, - "Case document is blocked": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Case document is ready": { - "2024-12-01T00:00:00+02:00": 704 - }, - "Case Document has error": { - "2024-12-01T00:00:00+02:00": 282 - } - } - }, - "641df7485d9af70da9c29397": { - "$overall": { - "2024-12-01T00:00:00+02:00": 980 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 980 - }, - "common-alerts-email": { - "2024-12-01T00:00:00+02:00": 40 - }, - "common-alerts": { - "2024-12-01T00:00:00+02:00": 609 - }, - "reports": { - "2024-12-01T00:00:00+02:00": 329 - } - } - }, - "66fd558bcf609b1343268e49": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27646 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27646 - }, - "in-app": { - "2024-12-01T00:00:00+02:00": 27646 - } - } - }, - "651eff411df1b46454f4c05a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12181 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12181 - }, - "Team Subscription Athlete Payout": { - "2024-12-01T00:00:00+02:00": 45 - }, - "Fan Review Reminder": { - "2024-12-01T00:00:00+02:00": 57 - }, - "New Athlete Promotion": { - "2024-12-01T00:00:00+02:00": 523 - }, - "Order Cancelled Buyer": { - "2024-12-01T00:00:00+02:00": 75 - }, - "Athlete Eksperience Deactivated": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Athlete Thanked Fan": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Team Subscription Renew Success": { - "2024-12-01T00:00:00+02:00": 127 - }, - "New Team Post": { - "2024-12-01T00:00:00+02:00": 1610 - }, - "Order Fulfilled Buyer": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Athlete Invitation": { - "2024-12-01T00:00:00+02:00": 2444 - }, - "Newsletter Posted": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Order Confirmation Seller": { - "2024-12-01T00:00:00+02:00": 162 - }, - "Team Subscription Unsubscribe": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Team Subscription Refund": { - "2024-12-01T00:00:00+02:00": 108 - }, - "Order Fulfilled Seller": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Team Subscription Purchase Success": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Athlete Order Expiring Reminder": { - "2024-12-01T00:00:00+02:00": 1398 - }, - "Community Notifications": { - "2024-12-01T00:00:00+02:00": 515 - }, - "New Eksperience to Followers": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Team Subscription Newsletter": { - "2024-12-01T00:00:00+02:00": 128 - }, - "New Athletes to Followers": { - "2024-12-01T00:00:00+02:00": 134 - }, - "Order Confirmation Buyer": { - "2024-12-01T00:00:00+02:00": 162 - }, - "Team Subscription Athlete Execution Request": { - "2024-12-01T00:00:00+02:00": 1546 - }, - "Order Cancelled Seller": { - "2024-12-01T00:00:00+02:00": 75 - }, - "Athlete Order Count Reminder": { - "2024-12-01T00:00:00+02:00": 2879 - }, - "Order Accepted": { - "2024-12-01T00:00:00+02:00": 47 - } - } - }, - "658c15eae2d5aed98bef8f80": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10732 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10732 - }, - "Visio Analytics - Notificação de indicadores-chave": { - "2024-12-01T00:00:00+02:00": 5803 - }, - "custom-daily-report-workflow-with-push-notification": { - "2024-12-01T00:00:00+02:00": 3350 - }, - "custom-daily-report-notification-response": { - "2024-12-01T00:00:00+02:00": 1579 - } - } - }, - "655cccfb8c7cd7ff32031773": { - "$overall": { - "2024-12-01T00:00:00+02:00": 649 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 649 - }, - "AccesLog Notification": { - "2024-12-01T00:00:00+02:00": 65 - }, - "LoadUnload Notification": { - "2024-12-01T00:00:00+02:00": 38 - }, - "MovementOrder Notification": { - "2024-12-01T00:00:00+02:00": 396 - }, - "Operation Notification": { - "2024-12-01T00:00:00+02:00": 150 - } - } - }, - "6400caeef591ea2e090f6040": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1351317 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1351317 - }, - "doctorMessage for subscriber 150": { - "2024-12-01T00:00:00+02:00": 22 - }, - "doctorMessage for subscriber 68": { - "2024-12-01T00:00:00+02:00": 32 - }, - "firstTimeShippingConfirmation for subscriber 63": { - "2024-12-01T00:00:00+02:00": 1445 - }, - "firstTimeOrderConfirmation for subscriber 255": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Admin Pharmacy Error": { - "2024-12-01T00:00:00+02:00": 444 - }, - "orderReceipt for subscriber 121": { - "2024-12-01T00:00:00+02:00": 4 - }, - "abandonedCheckout for subscriber 263": { - "2024-12-01T00:00:00+02:00": 37 - }, - "patientWelcome for subscriber 400": { - "2024-12-01T00:00:00+02:00": 6 - }, - "orderConfirmation for subscriber 349": { - "2024-12-01T00:00:00+02:00": 13 - }, - "supportMessage for subscriber 35": { - "2024-12-01T00:00:00+02:00": 33 - }, - "followUpPastDue for subscriber 255": { - "2024-12-01T00:00:00+02:00": 148 - }, - "patientWelcome for subscriber 165": { - "2024-12-01T00:00:00+02:00": 5702 - }, - "patientMagicLink for subscriber 465": { - "2024-12-01T00:00:00+02:00": 31 - }, - "firstTimeNewPrescription for subscriber 143": { - "2024-12-01T00:00:00+02:00": 4131 - }, - "firstTimeOrderConfirmation for subscriber 452": { - "2024-12-01T00:00:00+02:00": 4 - }, - "firstTimeShippingConfirmation for subscriber 549": { - "2024-12-01T00:00:00+02:00": 117 - }, - "prescriptionChanged for subscriber 465": { - "2024-12-01T00:00:00+02:00": 19 - }, - "abandonedCheckout for subscriber 292": { - "2024-12-01T00:00:00+02:00": 11 - }, - "abandonedCheckout for subscriber 4": { - "2024-12-01T00:00:00+02:00": 3291 - }, - "outForDelivery for subscriber 349": { - "2024-12-01T00:00:00+02:00": 19 - }, - "abandonedPostCheckout for subscriber 549": { - "2024-12-01T00:00:00+02:00": 7 - }, - "firstTimeOrderConfirmation for subscriber 161": { - "2024-12-01T00:00:00+02:00": 776 - }, - "patientWelcome for subscriber 455": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderConfirmation for subscriber 542": { - "2024-12-01T00:00:00+02:00": 25 - }, - "shippingUpdate for subscriber 441": { - "2024-12-01T00:00:00+02:00": 233 - }, - "orderConfirmation for subscriber 143": { - "2024-12-01T00:00:00+02:00": 18477 - }, - "treatmentActive for subscriber 400": { - "2024-12-01T00:00:00+02:00": 6 - }, - "firstTimeNewPrescription for subscriber 84": { - "2024-12-01T00:00:00+02:00": 127 - }, - "delivered for subscriber 364": { - "2024-12-01T00:00:00+02:00": 112 - }, - "orderReceipt for subscriber 465": { - "2024-12-01T00:00:00+02:00": 20 - }, - "orderReceipt for subscriber 329": { - "2024-12-01T00:00:00+02:00": 136 - }, - "Admin Webhook Disabled": { - "2024-12-01T00:00:00+02:00": 9 - }, - "shippingUpdate for subscriber 190": { - "2024-12-01T00:00:00+02:00": 92 - }, - "shippingUpdate for subscriber 93": { - "2024-12-01T00:00:00+02:00": 108 - }, - "doctorMessage for subscriber 161": { - "2024-12-01T00:00:00+02:00": 9874 - }, - "Admin New Prescription": { - "2024-12-01T00:00:00+02:00": 41817 - }, - "delivered for subscriber 84": { - "2024-12-01T00:00:00+02:00": 1093 - }, - "orderReceipt for subscriber 400": { - "2024-12-01T00:00:00+02:00": 7 - }, - "newPrescription for subscriber 68": { - "2024-12-01T00:00:00+02:00": 7 - }, - "delivered for subscriber 217": { - "2024-12-01T00:00:00+02:00": 13 - }, - "orderConfirmation for subscriber 190": { - "2024-12-01T00:00:00+02:00": 7 - }, - "patientWelcome for subscriber 292": { - "2024-12-01T00:00:00+02:00": 15 - }, - "orderReceipt for subscriber 428": { - "2024-12-01T00:00:00+02:00": 4 - }, - "orderReceipt for subscriber 551": { - "2024-12-01T00:00:00+02:00": 7 - }, - "newPrescription for subscriber 93": { - "2024-12-01T00:00:00+02:00": 7 - }, - "firstTimeShippingConfirmation for subscriber 37": { - "2024-12-01T00:00:00+02:00": 3301 - }, - "prescriptionChanged for subscriber 378": { - "2024-12-01T00:00:00+02:00": 31 - }, - "firstTimeOrderConfirmation for subscriber 263": { - "2024-12-01T00:00:00+02:00": 10 - }, - "delivered for subscriber 165": { - "2024-12-01T00:00:00+02:00": 4736 - }, - "outForDelivery for subscriber 150": { - "2024-12-01T00:00:00+02:00": 5 - }, - "shippingUpdate for subscriber 143": { - "2024-12-01T00:00:00+02:00": 120408 - }, - "paymentError for subscriber 38": { - "2024-12-01T00:00:00+02:00": 1689 - }, - "orderConfirmation for subscriber 377": { - "2024-12-01T00:00:00+02:00": 26 - }, - "delivered for subscriber 329": { - "2024-12-01T00:00:00+02:00": 130 - }, - "newPrescription for subscriber 63": { - "2024-12-01T00:00:00+02:00": 2700 - }, - "outForDelivery for subscriber 37": { - "2024-12-01T00:00:00+02:00": 13460 - }, - "firstTimeShippingConfirmation for subscriber 217": { - "2024-12-01T00:00:00+02:00": 9 - }, - "firstTimeShippingConfirmation for subscriber 530": { - "2024-12-01T00:00:00+02:00": 56 - }, - "delivered for subscriber 542": { - "2024-12-01T00:00:00+02:00": 76 - }, - "firstTimeShippingConfirmation for subscriber 474": { - "2024-12-01T00:00:00+02:00": 11 - }, - "doctorMessage for subscriber 349": { - "2024-12-01T00:00:00+02:00": 54 - }, - "delivered for subscriber 13": { - "2024-12-01T00:00:00+02:00": 8 - }, - "shippingConfirmation for subscriber 143": { - "2024-12-01T00:00:00+02:00": 17172 - }, - "doctorMessage for subscriber 530": { - "2024-12-01T00:00:00+02:00": 104 - }, - "orderReceipt for subscriber 35": { - "2024-12-01T00:00:00+02:00": 12 - }, - "First Time Order Confirmation": { - "2024-12-01T00:00:00+02:00": 78 - }, - "orderReceipt for subscriber 238": { - "2024-12-01T00:00:00+02:00": 8 - }, - "abandonedPostCheckout for subscriber 320": { - "2024-12-01T00:00:00+02:00": 6 - }, - "orderConfirmation for subscriber 255": { - "2024-12-01T00:00:00+02:00": 147 - }, - "doctorMessage for subscriber 165": { - "2024-12-01T00:00:00+02:00": 10732 - }, - "firstTimeOrderConfirmation for subscriber 523": { - "2024-12-01T00:00:00+02:00": 22 - }, - "orderConfirmation for subscriber 523": { - "2024-12-01T00:00:00+02:00": 7 - }, - "doctorMessage for subscriber 256": { - "2024-12-01T00:00:00+02:00": 361 - }, - "supportMessage for subscriber 38": { - "2024-12-01T00:00:00+02:00": 17 - }, - "delivered for subscriber 9": { - "2024-12-01T00:00:00+02:00": 14 - }, - "supportMessage for subscriber 542": { - "2024-12-01T00:00:00+02:00": 67 - }, - "firstTimeNewPrescription for subscriber 523": { - "2024-12-01T00:00:00+02:00": 11 - }, - "supportMessage for subscriber 349": { - "2024-12-01T00:00:00+02:00": 9 - }, - "shippingUpdate for subscriber 428": { - "2024-12-01T00:00:00+02:00": 26 - }, - "abandonedCheckout for subscriber 9": { - "2024-12-01T00:00:00+02:00": 28 - }, - "passwordReset for subscriber 37": { - "2024-12-01T00:00:00+02:00": 1161 - }, - "shippingConfirmation for subscriber 4": { - "2024-12-01T00:00:00+02:00": 1829 - }, - "Password Reset for subscriber 542": { - "2024-12-01T00:00:00+02:00": 17 - }, - "doctorMessage for subscriber 441": { - "2024-12-01T00:00:00+02:00": 44 - }, - "prescriptionChanged for subscriber 549": { - "2024-12-01T00:00:00+02:00": 58 - }, - "firstTimeNewPrescription for subscriber 378": { - "2024-12-01T00:00:00+02:00": 14 - }, - "orderConfirmation for subscriber 238": { - "2024-12-01T00:00:00+02:00": 9 - }, - "abandonedCheckout for subscriber 13": { - "2024-12-01T00:00:00+02:00": 28 - }, - "shippingUpdate for subscriber 256": { - "2024-12-01T00:00:00+02:00": 1505 - }, - "patientMagicLink for subscriber 4": { - "2024-12-01T00:00:00+02:00": 382 - }, - "outForDelivery for subscriber 384": { - "2024-12-01T00:00:00+02:00": 5 - }, - "abandonedCheckout for subscriber 165": { - "2024-12-01T00:00:00+02:00": 6329 - }, - "orderReceipt for subscriber 111": { - "2024-12-01T00:00:00+02:00": 13 - }, - "newPrescription for subscriber 143": { - "2024-12-01T00:00:00+02:00": 16361 - }, - "abandonedCheckout for subscriber 415": { - "2024-12-01T00:00:00+02:00": 11 - }, - "newPrescription for subscriber 238": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderReceipt for subscriber 452": { - "2024-12-01T00:00:00+02:00": 4 - }, - "passwordReset for subscriber 217": { - "2024-12-01T00:00:00+02:00": 4 - }, - "patientMagicLink for subscriber 555": { - "2024-12-01T00:00:00+02:00": 4 - }, - "doctorMessage for subscriber 384": { - "2024-12-01T00:00:00+02:00": 21 - }, - "delivered for subscriber 143": { - "2024-12-01T00:00:00+02:00": 14151 - }, - "followUpPastDue for subscriber 349": { - "2024-12-01T00:00:00+02:00": 12 - }, - "shippingConfirmation for subscriber 275": { - "2024-12-01T00:00:00+02:00": 63 - }, - "supportMessage for subscriber 53": { - "2024-12-01T00:00:00+02:00": 6 - }, - "doctorMessage for subscriber 73": { - "2024-12-01T00:00:00+02:00": 54 - }, - "orderReceipt for subscriber 13": { - "2024-12-01T00:00:00+02:00": 8 - }, - "followUpPastDue for subscriber 150": { - "2024-12-01T00:00:00+02:00": 4 - }, - "prescriptionChanged for subscriber 84": { - "2024-12-01T00:00:00+02:00": 597 - }, - "shippingConfirmation for subscriber 266": { - "2024-12-01T00:00:00+02:00": 161 - }, - "abandonedCheckout for subscriber 329": { - "2024-12-01T00:00:00+02:00": 2000 - }, - "patientWelcome for subscriber 406": { - "2024-12-01T00:00:00+02:00": 187 - }, - "shippingUpdate for subscriber 217": { - "2024-12-01T00:00:00+02:00": 109 - }, - "abandonedCheckout for subscriber 377": { - "2024-12-01T00:00:00+02:00": 63 - }, - "abandonedPostCheckout for subscriber 364": { - "2024-12-01T00:00:00+02:00": 6 - }, - "orderConfirmation for subscriber 53": { - "2024-12-01T00:00:00+02:00": 41 - }, - "orderReceipt for subscriber 364": { - "2024-12-01T00:00:00+02:00": 112 - }, - "supportMessage for subscriber 68": { - "2024-12-01T00:00:00+02:00": 8 - }, - "orderReceipt for subscriber 614": { - "2024-12-01T00:00:00+02:00": 12 - }, - "prescriptionChanged for subscriber 53": { - "2024-12-01T00:00:00+02:00": 17 - }, - "abandonedCheckout for subscriber 320": { - "2024-12-01T00:00:00+02:00": 201 - }, - "shippingUpdate for subscriber 13": { - "2024-12-01T00:00:00+02:00": 91 - }, - "firstTimeOrderConfirmation for subscriber 13": { - "2024-12-01T00:00:00+02:00": 6 - }, - "abandonedCheckout for subscriber 523": { - "2024-12-01T00:00:00+02:00": 63 - }, - "patientWelcome for subscriber 266": { - "2024-12-01T00:00:00+02:00": 311 - }, - "shippingConfirmation for subscriber 111": { - "2024-12-01T00:00:00+02:00": 13 - }, - "outForDelivery for subscriber 53": { - "2024-12-01T00:00:00+02:00": 26 - }, - "prescriptionChanged for subscriber 349": { - "2024-12-01T00:00:00+02:00": 10 - }, - "supportMessage for subscriber 73": { - "2024-12-01T00:00:00+02:00": 51 - }, - "followUpPastDue for subscriber 604": { - "2024-12-01T00:00:00+02:00": 8 - }, - "newPrescription for subscriber 384": { - "2024-12-01T00:00:00+02:00": 4 - }, - "shippingUpdate for subscriber 465": { - "2024-12-01T00:00:00+02:00": 113 - }, - "Password Reset for subscriber 320": { - "2024-12-01T00:00:00+02:00": 9 - }, - "firstTimeOrderConfirmation for subscriber 256": { - "2024-12-01T00:00:00+02:00": 76 - }, - "shippingUpdate for subscriber 463": { - "2024-12-01T00:00:00+02:00": 32 - }, - "shippingConfirmation for subscriber 377": { - "2024-12-01T00:00:00+02:00": 42 - }, - "supportMessage for subscriber 150": { - "2024-12-01T00:00:00+02:00": 5 - }, - "shippingConfirmation for subscriber 320": { - "2024-12-01T00:00:00+02:00": 58 - }, - "shippingConfirmation for subscriber 73": { - "2024-12-01T00:00:00+02:00": 14 - }, - "followUpDue for subscriber 63": { - "2024-12-01T00:00:00+02:00": 2810 - }, - "followUpDue for subscriber 542": { - "2024-12-01T00:00:00+02:00": 25 - }, - "paymentError for subscriber 63": { - "2024-12-01T00:00:00+02:00": 118 - }, - "patientWelcome for subscriber 255": { - "2024-12-01T00:00:00+02:00": 150 - }, - "outForDelivery for subscriber 452": { - "2024-12-01T00:00:00+02:00": 5 - }, - "shippingUpdate for subscriber 84": { - "2024-12-01T00:00:00+02:00": 8394 - }, - "followUpDue for subscriber 329": { - "2024-12-01T00:00:00+02:00": 13 - }, - "followUpDue for subscriber 455": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Admin Chargebacks and Disputes": { - "2024-12-01T00:00:00+02:00": 232 - }, - "firstTimeShippingConfirmation for subscriber 255": { - "2024-12-01T00:00:00+02:00": 32 - }, - "abandonedCheckout for subscriber 428": { - "2024-12-01T00:00:00+02:00": 26 - }, - "orderReceipt for subscriber 441": { - "2024-12-01T00:00:00+02:00": 24 - }, - "patientWelcome for subscriber 150": { - "2024-12-01T00:00:00+02:00": 4 - }, - "outForDelivery for subscriber 143": { - "2024-12-01T00:00:00+02:00": 13701 - }, - "supportMessage for subscriber 63": { - "2024-12-01T00:00:00+02:00": 3316 - }, - "supportMessage for subscriber 530": { - "2024-12-01T00:00:00+02:00": 111 - }, - "shippingUpdate for subscriber 73": { - "2024-12-01T00:00:00+02:00": 209 - }, - "orderReceipt for subscriber 77": { - "2024-12-01T00:00:00+02:00": 131 - }, - "firstTimeNewPrescription for subscriber 406": { - "2024-12-01T00:00:00+02:00": 57 - }, - "firstTimeOrderConfirmation for subscriber 614": { - "2024-12-01T00:00:00+02:00": 7 - }, - "shippingConfirmation for subscriber 329": { - "2024-12-01T00:00:00+02:00": 16 - }, - "delivered for subscriber 150": { - "2024-12-01T00:00:00+02:00": 6 - }, - "paymentError for subscriber 406": { - "2024-12-01T00:00:00+02:00": 5 - }, - "patientMagicLink for subscriber 84": { - "2024-12-01T00:00:00+02:00": 292 - }, - "orderConfirmation for subscriber 150": { - "2024-12-01T00:00:00+02:00": 7 - }, - "newPrescription for subscriber 378": { - "2024-12-01T00:00:00+02:00": 12 - }, - "shippingUpdate for subscriber 37": { - "2024-12-01T00:00:00+02:00": 128900 - }, - "patientWelcome for subscriber 349": { - "2024-12-01T00:00:00+02:00": 121 - }, - "shippingUpdate for subscriber 474": { - "2024-12-01T00:00:00+02:00": 113 - }, - "outForDelivery for subscriber 441": { - "2024-12-01T00:00:00+02:00": 25 - }, - "followUpDue for subscriber 266": { - "2024-12-01T00:00:00+02:00": 205 - }, - "doctorMessage for subscriber 549": { - "2024-12-01T00:00:00+02:00": 212 - }, - "newRefill for subscriber 542": { - "2024-12-01T00:00:00+02:00": 18 - }, - "outForDelivery for subscriber 428": { - "2024-12-01T00:00:00+02:00": 4 - }, - "shippingUpdate for subscriber 384": { - "2024-12-01T00:00:00+02:00": 53 - }, - "patientWelcome for subscriber 452": { - "2024-12-01T00:00:00+02:00": 23 - }, - "patientMagicLink for subscriber 255": { - "2024-12-01T00:00:00+02:00": 32 - }, - "passwordReset for subscriber 161": { - "2024-12-01T00:00:00+02:00": 436 - }, - "patientMagicLink for subscriber 530": { - "2024-12-01T00:00:00+02:00": 29 - }, - "shippingConfirmation for subscriber 455": { - "2024-12-01T00:00:00+02:00": 13 - }, - "prescriptionChanged for subscriber 37": { - "2024-12-01T00:00:00+02:00": 505 - }, - "prescriptionChanged for subscriber 143": { - "2024-12-01T00:00:00+02:00": 825 - }, - "newPrescription for subscriber 190": { - "2024-12-01T00:00:00+02:00": 7 - }, - "prescriptionChanged for subscriber 377": { - "2024-12-01T00:00:00+02:00": 41 - }, - "newRefill for subscriber 84": { - "2024-12-01T00:00:00+02:00": 72 - }, - "shippingUpdate for subscriber 329": { - "2024-12-01T00:00:00+02:00": 943 - }, - "orderConfirmation for subscriber 465": { - "2024-12-01T00:00:00+02:00": 6 - }, - "doctorMessage for subscriber 638": { - "2024-12-01T00:00:00+02:00": 4 - }, - "doctorMessage for subscriber 93": { - "2024-12-01T00:00:00+02:00": 40 - }, - "shippingConfirmation for subscriber 292": { - "2024-12-01T00:00:00+02:00": 4 - }, - "firstTimeShippingConfirmation for subscriber 320": { - "2024-12-01T00:00:00+02:00": 23 - }, - "doctorMessage for subscriber 455": { - "2024-12-01T00:00:00+02:00": 33 - }, - "followUpDue for subscriber 190": { - "2024-12-01T00:00:00+02:00": 10 - }, - "paymentError for subscriber 329": { - "2024-12-01T00:00:00+02:00": 17 - }, - "passwordReset for subscriber 530": { - "2024-12-01T00:00:00+02:00": 24 - }, - "patientMagicLink for subscriber 73": { - "2024-12-01T00:00:00+02:00": 7 - }, - "firstTimeShippingConfirmation for subscriber 349": { - "2024-12-01T00:00:00+02:00": 16 - }, - "outForDelivery for subscriber 238": { - "2024-12-01T00:00:00+02:00": 9 - }, - "patientWelcome for subscriber 9": { - "2024-12-01T00:00:00+02:00": 27 - }, - "abandonedCheckout for subscriber 68": { - "2024-12-01T00:00:00+02:00": 13 - }, - "orderConfirmation for subscriber 256": { - "2024-12-01T00:00:00+02:00": 71 - }, - "abandonedPostCheckout for subscriber 256": { - "2024-12-01T00:00:00+02:00": 18 - }, - "followUpPastDue for subscriber 37": { - "2024-12-01T00:00:00+02:00": 7007 - }, - "patientWelcome for subscriber 378": { - "2024-12-01T00:00:00+02:00": 89 - }, - "abandonedCheckout for subscriber 629": { - "2024-12-01T00:00:00+02:00": 11 - }, - "doctorMessage for subscriber 400": { - "2024-12-01T00:00:00+02:00": 11 - }, - "newRefill for subscriber 256": { - "2024-12-01T00:00:00+02:00": 6 - }, - "abandonedPostCheckout for subscriber 84": { - "2024-12-01T00:00:00+02:00": 79 - }, - "followUpDue for subscriber 349": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Admin New Patient": { - "2024-12-01T00:00:00+02:00": 57622 - }, - "doctorMessage for subscriber 292": { - "2024-12-01T00:00:00+02:00": 16 - }, - "passwordReset for subscriber 320": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Admin Dispute Due Soon": { - "2024-12-01T00:00:00+02:00": 370 - }, - "firstTimeOrderConfirmation for subscriber 542": { - "2024-12-01T00:00:00+02:00": 66 - }, - "outForDelivery for subscriber 13": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Patient Welcome for subscriber 350": { - "2024-12-01T00:00:00+02:00": 48 - }, - "firstTimeOrderConfirmation for subscriber 266": { - "2024-12-01T00:00:00+02:00": 67 - }, - "patientMagicLink for subscriber 143": { - "2024-12-01T00:00:00+02:00": 2945 - }, - "followUpPastDue for subscriber 84": { - "2024-12-01T00:00:00+02:00": 604 - }, - "patientMagicLink for subscriber 349": { - "2024-12-01T00:00:00+02:00": 5 - }, - "followUpPastDue for subscriber 165": { - "2024-12-01T00:00:00+02:00": 1825 - }, - "abandonedCheckout for subscriber 256": { - "2024-12-01T00:00:00+02:00": 170 - }, - "followUpDue for subscriber 275": { - "2024-12-01T00:00:00+02:00": 35 - }, - "patientMagicLink for subscriber 37": { - "2024-12-01T00:00:00+02:00": 2287 - }, - "doctorMessage for subscriber 266": { - "2024-12-01T00:00:00+02:00": 467 - }, - "followUpDue for subscriber 378": { - "2024-12-01T00:00:00+02:00": 18 - }, - "newRefill for subscriber 441": { - "2024-12-01T00:00:00+02:00": 11 - }, - "shippingUpdate for subscriber 161": { - "2024-12-01T00:00:00+02:00": 30487 - }, - "newPrescription for subscriber 406": { - "2024-12-01T00:00:00+02:00": 4 - }, - "outForDelivery for subscriber 73": { - "2024-12-01T00:00:00+02:00": 16 - }, - "patientWelcome for subscriber 4": { - "2024-12-01T00:00:00+02:00": 2872 - }, - "First Time Shipping Confirmation for subscriber 614": { - "2024-12-01T00:00:00+02:00": 4 - }, - "patientWelcome for subscriber 614": { - "2024-12-01T00:00:00+02:00": 24 - }, - "patientMagicLink for subscriber 266": { - "2024-12-01T00:00:00+02:00": 41 - }, - "doctorMessage for subscriber 523": { - "2024-12-01T00:00:00+02:00": 68 - }, - "orderConfirmation for subscriber 530": { - "2024-12-01T00:00:00+02:00": 6 - }, - "First Time New Prescription for subscriber 551": { - "2024-12-01T00:00:00+02:00": 7 - }, - "abandonedPostCheckout for subscriber 465": { - "2024-12-01T00:00:00+02:00": 15 - }, - "shippingConfirmation for subscriber 384": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderReceipt for subscriber 292": { - "2024-12-01T00:00:00+02:00": 5 - }, - "prescriptionChanged for subscriber 63": { - "2024-12-01T00:00:00+02:00": 82 - }, - "followUpPastDue for subscriber 364": { - "2024-12-01T00:00:00+02:00": 34 - }, - "First Time New Prescription for subscriber 614": { - "2024-12-01T00:00:00+02:00": 6 - }, - "patientWelcome for subscriber 63": { - "2024-12-01T00:00:00+02:00": 9113 - }, - "paymentError for subscriber 4": { - "2024-12-01T00:00:00+02:00": 24 - }, - "orderCanceled for subscriber 200": { - "2024-12-01T00:00:00+02:00": 40 - }, - "shippingUpdate for subscriber 68": { - "2024-12-01T00:00:00+02:00": 47 - }, - "paymentError for subscriber 378": { - "2024-12-01T00:00:00+02:00": 4 - }, - "orderCanceled for subscriber 378": { - "2024-12-01T00:00:00+02:00": 4 - }, - "passwordReset for subscriber 77": { - "2024-12-01T00:00:00+02:00": 29 - }, - "patientWelcome for subscriber 320": { - "2024-12-01T00:00:00+02:00": 61 - }, - "patientWelcome for subscriber 275": { - "2024-12-01T00:00:00+02:00": 5 - }, - "abandonedPostCheckout for subscriber 63": { - "2024-12-01T00:00:00+02:00": 299 - }, - "orderCanceled for subscriber 349": { - "2024-12-01T00:00:00+02:00": 6 - }, - "orderConfirmation for subscriber 217": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderReceipt for subscriber 217": { - "2024-12-01T00:00:00+02:00": 16 - }, - "patientWelcome for subscriber 143": { - "2024-12-01T00:00:00+02:00": 14929 - }, - "Out For Delivery for subscriber 364": { - "2024-12-01T00:00:00+02:00": 106 - }, - "Follow Up Past Due": { - "2024-12-01T00:00:00+02:00": 1196 - }, - "outForDelivery for subscriber 217": { - "2024-12-01T00:00:00+02:00": 13 - }, - "shippingUpdate for subscriber 292": { - "2024-12-01T00:00:00+02:00": 36 - }, - "orderReceipt for subscriber 200": { - "2024-12-01T00:00:00+02:00": 592 - }, - "orderConfirmation for subscriber 266": { - "2024-12-01T00:00:00+02:00": 105 - }, - "outForDelivery for subscriber 165": { - "2024-12-01T00:00:00+02:00": 4447 - }, - "followUpDue for subscriber 255": { - "2024-12-01T00:00:00+02:00": 178 - }, - "delivered for subscriber 530": { - "2024-12-01T00:00:00+02:00": 33 - }, - "patientMagicLink for subscriber 161": { - "2024-12-01T00:00:00+02:00": 422 - }, - "patientWelcome for subscriber 551": { - "2024-12-01T00:00:00+02:00": 61 - }, - "patientWelcome for subscriber 217": { - "2024-12-01T00:00:00+02:00": 50 - }, - "abandonedCheckout for subscriber 238": { - "2024-12-01T00:00:00+02:00": 15 - }, - "shippingUpdate for subscriber 77": { - "2024-12-01T00:00:00+02:00": 875 - }, - "supportMessage for subscriber 614": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Admin Daily Report": { - "2024-12-01T00:00:00+02:00": 170 - }, - "patientMagicLink for subscriber 263": { - "2024-12-01T00:00:00+02:00": 6 - }, - "shippingUpdate for subscriber 266": { - "2024-12-01T00:00:00+02:00": 1124 - }, - "patientWelcome for subscriber 555": { - "2024-12-01T00:00:00+02:00": 36 - }, - "orderConfirmation for subscriber 13": { - "2024-12-01T00:00:00+02:00": 6 - }, - "abandonedCheckout for subscriber 161": { - "2024-12-01T00:00:00+02:00": 6238 - }, - "orderReceipt for subscriber 549": { - "2024-12-01T00:00:00+02:00": 82 - }, - "patientMagicLink for subscriber 165": { - "2024-12-01T00:00:00+02:00": 643 - }, - "abandonedCheckout for subscriber 73": { - "2024-12-01T00:00:00+02:00": 35 - }, - "patientWelcome for subscriber 190": { - "2024-12-01T00:00:00+02:00": 6 - }, - "shippingConfirmation for subscriber 349": { - "2024-12-01T00:00:00+02:00": 19 - }, - "orderReceipt for subscriber 474": { - "2024-12-01T00:00:00+02:00": 13 - }, - "Patient Magic Link for subscriber 542": { - "2024-12-01T00:00:00+02:00": 38 - }, - "abandonedPostCheckout for subscriber 165": { - "2024-12-01T00:00:00+02:00": 224 - }, - "firstTimeShippingConfirmation for subscriber 111": { - "2024-12-01T00:00:00+02:00": 4 - }, - "abandonedCheckout for subscriber 555": { - "2024-12-01T00:00:00+02:00": 43 - }, - "patientWelcome for subscriber 68": { - "2024-12-01T00:00:00+02:00": 13 - }, - "firstTimeOrderConfirmation for subscriber 329": { - "2024-12-01T00:00:00+02:00": 157 - }, - "custom in app messages": { - "2024-12-01T00:00:00+02:00": 745 - }, - "abandonedPostCheckout for subscriber 37": { - "2024-12-01T00:00:00+02:00": 842 - }, - "Admin Patient Message": { - "2024-12-01T00:00:00+02:00": 41446 - }, - "firstTimeOrderConfirmation for subscriber 549": { - "2024-12-01T00:00:00+02:00": 85 - }, - "doctorMessage for subscriber 329": { - "2024-12-01T00:00:00+02:00": 438 - }, - "doctorMessage for subscriber 53": { - "2024-12-01T00:00:00+02:00": 138 - }, - "followUpPastDue for subscriber 542": { - "2024-12-01T00:00:00+02:00": 18 - }, - "prescriptionChanged for subscriber 364": { - "2024-12-01T00:00:00+02:00": 48 - }, - "followUpPastDue for subscriber 143": { - "2024-12-01T00:00:00+02:00": 13732 - }, - "delivered for subscriber 349": { - "2024-12-01T00:00:00+02:00": 21 - }, - "firstTimeOrderConfirmation for subscriber 196": { - "2024-12-01T00:00:00+02:00": 11 - }, - "shippingConfirmation for subscriber 53": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Admin Refund": { - "2024-12-01T00:00:00+02:00": 3465 - }, - "prescriptionChanged for subscriber 275": { - "2024-12-01T00:00:00+02:00": 23 - }, - "patientMagicLink for subscriber 329": { - "2024-12-01T00:00:00+02:00": 87 - }, - "orderReceipt for subscriber 377": { - "2024-12-01T00:00:00+02:00": 55 - }, - "doctorMessage for subscriber 614": { - "2024-12-01T00:00:00+02:00": 33 - }, - "doctorMessage for subscriber 551": { - "2024-12-01T00:00:00+02:00": 25 - }, - "orderCanceled for subscriber 266": { - "2024-12-01T00:00:00+02:00": 19 - }, - "shippingConfirmation for subscriber 84": { - "2024-12-01T00:00:00+02:00": 1127 - }, - "doctorMessage for subscriber 35": { - "2024-12-01T00:00:00+02:00": 15 - }, - "newPrescription for subscriber 364": { - "2024-12-01T00:00:00+02:00": 30 - }, - "abandonedPostCheckout for subscriber 530": { - "2024-12-01T00:00:00+02:00": 7 - }, - "firstTimeShippingConfirmation for subscriber 523": { - "2024-12-01T00:00:00+02:00": 26 - }, - "delivered for subscriber 465": { - "2024-12-01T00:00:00+02:00": 15 - }, - "firstTimeOrderConfirmation for subscriber 143": { - "2024-12-01T00:00:00+02:00": 5102 - }, - "followUpPastDue for subscriber 275": { - "2024-12-01T00:00:00+02:00": 27 - }, - "firstTimeShippingConfirmation for subscriber 378": { - "2024-12-01T00:00:00+02:00": 52 - }, - "Shipping Update for subscriber 542": { - "2024-12-01T00:00:00+02:00": 773 - }, - "outForDelivery for subscriber 455": { - "2024-12-01T00:00:00+02:00": 14 - }, - "orderConfirmation for subscriber 364": { - "2024-12-01T00:00:00+02:00": 43 - }, - "shippingConfirmation for subscriber 37": { - "2024-12-01T00:00:00+02:00": 14952 - }, - "followUpDue for subscriber 549": { - "2024-12-01T00:00:00+02:00": 5 - }, - "followUpDue for subscriber 150": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Admin Patient Payment Failed": { - "2024-12-01T00:00:00+02:00": 3761 - }, - "abandonedCheckout for subscriber 384": { - "2024-12-01T00:00:00+02:00": 14 - }, - "patientWelcome for subscriber 196": { - "2024-12-01T00:00:00+02:00": 24 - }, - "New Refill for subscriber 614": { - "2024-12-01T00:00:00+02:00": 4 - }, - "First Time New Prescription for subscriber 542": { - "2024-12-01T00:00:00+02:00": 49 - }, - "abandonedPostCheckout for subscriber 255": { - "2024-12-01T00:00:00+02:00": 7 - }, - "patientWelcome for subscriber 329": { - "2024-12-01T00:00:00+02:00": 1635 - }, - "doctorMessage for subscriber 320": { - "2024-12-01T00:00:00+02:00": 130 - }, - "orderReceipt for subscriber 263": { - "2024-12-01T00:00:00+02:00": 47 - }, - "doctorMessage for subscriber 63": { - "2024-12-01T00:00:00+02:00": 11239 - }, - "patientWelcome for subscriber 13": { - "2024-12-01T00:00:00+02:00": 14 - }, - "delivered for subscriber 53": { - "2024-12-01T00:00:00+02:00": 29 - }, - "Shipping Update for subscriber 274": { - "2024-12-01T00:00:00+02:00": 4 - }, - "abandonedCheckout for subscriber 84": { - "2024-12-01T00:00:00+02:00": 3633 - }, - "Treatment Active": { - "2024-12-01T00:00:00+02:00": 3324 - }, - "orderCanceled for subscriber 84": { - "2024-12-01T00:00:00+02:00": 91 - }, - "supportMessage for subscriber 255": { - "2024-12-01T00:00:00+02:00": 171 - }, - "followUpPastDue for subscriber 329": { - "2024-12-01T00:00:00+02:00": 14 - }, - "newPrescription for subscriber 150": { - "2024-12-01T00:00:00+02:00": 6 - }, - "passwordReset for subscriber 4": { - "2024-12-01T00:00:00+02:00": 337 - }, - "orderConfirmation for subscriber 4": { - "2024-12-01T00:00:00+02:00": 1054 - }, - "shippingUpdate for subscriber 400": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Admin Pharmacy Delay": { - "2024-12-01T00:00:00+02:00": 674 - }, - "followUpDue for subscriber 523": { - "2024-12-01T00:00:00+02:00": 11 - }, - "orderReceipt for subscriber 165": { - "2024-12-01T00:00:00+02:00": 4682 - }, - "orderCanceled for subscriber 542": { - "2024-12-01T00:00:00+02:00": 13 - }, - "followUpPastDue for subscriber 378": { - "2024-12-01T00:00:00+02:00": 15 - }, - "followUpPastDue for subscriber 523": { - "2024-12-01T00:00:00+02:00": 9 - }, - "newRefill for subscriber 143": { - "2024-12-01T00:00:00+02:00": 709 - }, - "shippingUpdate for subscriber 255": { - "2024-12-01T00:00:00+02:00": 1178 - }, - "abandonedCheckout for subscriber 455": { - "2024-12-01T00:00:00+02:00": 20 - }, - "outForDelivery for subscriber 38": { - "2024-12-01T00:00:00+02:00": 338 - }, - "outForDelivery for subscriber 378": { - "2024-12-01T00:00:00+02:00": 51 - }, - "treatmentActive for subscriber 542": { - "2024-12-01T00:00:00+02:00": 11 - }, - "orderCanceled for subscriber 364": { - "2024-12-01T00:00:00+02:00": 13 - }, - "supportMessage for subscriber 275": { - "2024-12-01T00:00:00+02:00": 12 - }, - "orderCanceled for subscriber 329": { - "2024-12-01T00:00:00+02:00": 23 - }, - "shippingConfirmation for subscriber 93": { - "2024-12-01T00:00:00+02:00": 19 - }, - "patientWelcome for subscriber 549": { - "2024-12-01T00:00:00+02:00": 242 - }, - "orderReceipt for subscriber 406": { - "2024-12-01T00:00:00+02:00": 94 - }, - "prescriptionChanged for subscriber 329": { - "2024-12-01T00:00:00+02:00": 122 - }, - "patientMagicLink for subscriber 63": { - "2024-12-01T00:00:00+02:00": 1178 - }, - "orderReceipt for subscriber 523": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Patient Magic Link for subscriber 350": { - "2024-12-01T00:00:00+02:00": 4 - }, - "shippingConfirmation for subscriber 406": { - "2024-12-01T00:00:00+02:00": 35 - }, - "doctorMessage for subscriber 238": { - "2024-12-01T00:00:00+02:00": 30 - }, - "supportMessage for subscriber 165": { - "2024-12-01T00:00:00+02:00": 2378 - }, - "abandonedCheckout for subscriber 275": { - "2024-12-01T00:00:00+02:00": 17 - }, - "patientMagicLink for subscriber 38": { - "2024-12-01T00:00:00+02:00": 9 - }, - "orderReceipt for subscriber 93": { - "2024-12-01T00:00:00+02:00": 16 - }, - "First Time New Prescription for subscriber 165": { - "2024-12-01T00:00:00+02:00": 852 - }, - "abandonedCheckout for subscriber 217": { - "2024-12-01T00:00:00+02:00": 52 - }, - "firstTimeOrderConfirmation for subscriber 400": { - "2024-12-01T00:00:00+02:00": 7 - }, - "shippingConfirmation for subscriber 364": { - "2024-12-01T00:00:00+02:00": 51 - }, - "supportMessage for subscriber 161": { - "2024-12-01T00:00:00+02:00": 937 - }, - "firstTimeShippingConfirmation for subscriber 441": { - "2024-12-01T00:00:00+02:00": 49 - }, - "supportMessage for subscriber 266": { - "2024-12-01T00:00:00+02:00": 44 - }, - "newRefill for subscriber 384": { - "2024-12-01T00:00:00+02:00": 4 - }, - "doctorMessage for subscriber 217": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Patient Welcome for subscriber 658": { - "2024-12-01T00:00:00+02:00": 9 - }, - "doctorMessage for subscriber 37": { - "2024-12-01T00:00:00+02:00": 28686 - }, - "Admin Pharmacy Update": { - "2024-12-01T00:00:00+02:00": 56 - }, - "followUpPastDue for subscriber 551": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Delivered for subscriber 549": { - "2024-12-01T00:00:00+02:00": 67 - }, - "delivered for subscriber 523": { - "2024-12-01T00:00:00+02:00": 27 - }, - "firstTimeShippingConfirmation for subscriber 77": { - "2024-12-01T00:00:00+02:00": 12 - }, - "followUpDue for subscriber 377": { - "2024-12-01T00:00:00+02:00": 33 - }, - "orderConfirmation for subscriber 93": { - "2024-12-01T00:00:00+02:00": 16 - }, - "newRefill for subscriber 9": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Patient Welcome for subscriber 659": { - "2024-12-01T00:00:00+02:00": 4 - }, - "patientWelcome for subscriber 441": { - "2024-12-01T00:00:00+02:00": 6 - }, - "supportMessage for subscriber 143": { - "2024-12-01T00:00:00+02:00": 11399 - }, - "passwordReset for subscriber 84": { - "2024-12-01T00:00:00+02:00": 111 - }, - "orderCanceled for subscriber 63": { - "2024-12-01T00:00:00+02:00": 451 - }, - "doctorMessage for subscriber 84": { - "2024-12-01T00:00:00+02:00": 2706 - }, - "patientMagicLink for subscriber 77": { - "2024-12-01T00:00:00+02:00": 19 - }, - "shippingUpdate for subscriber 200": { - "2024-12-01T00:00:00+02:00": 5321 - }, - "New Refill": { - "2024-12-01T00:00:00+02:00": 409 - }, - "followUpDue for subscriber 84": { - "2024-12-01T00:00:00+02:00": 724 - }, - "orderConfirmation for subscriber 161": { - "2024-12-01T00:00:00+02:00": 3341 - }, - "abandonedCheckout for subscriber 551": { - "2024-12-01T00:00:00+02:00": 56 - }, - "outForDelivery for subscriber 68": { - "2024-12-01T00:00:00+02:00": 5 - }, - "shippingConfirmation for subscriber 68": { - "2024-12-01T00:00:00+02:00": 6 - }, - "doctorMessage for subscriber 111": { - "2024-12-01T00:00:00+02:00": 36 - }, - "orderConfirmation for subscriber 111": { - "2024-12-01T00:00:00+02:00": 8 - }, - "orderCanceled for subscriber 143": { - "2024-12-01T00:00:00+02:00": 2549 - }, - "doctorMessage for subscriber 255": { - "2024-12-01T00:00:00+02:00": 390 - }, - "delivered for subscriber 190": { - "2024-12-01T00:00:00+02:00": 9 - }, - "patientMagicLink for subscriber 364": { - "2024-12-01T00:00:00+02:00": 15 - }, - "labResulted for subscriber 441": { - "2024-12-01T00:00:00+02:00": 16 - }, - "abandonedCheckout for subscriber 266": { - "2024-12-01T00:00:00+02:00": 405 - }, - "abandonedCheckout for subscriber 549": { - "2024-12-01T00:00:00+02:00": 217 - }, - "supportMessage for subscriber 465": { - "2024-12-01T00:00:00+02:00": 11 - }, - "shippingUpdate for subscriber 150": { - "2024-12-01T00:00:00+02:00": 38 - }, - "firstTimeShippingConfirmation for subscriber 400": { - "2024-12-01T00:00:00+02:00": 5 - }, - "First Time New Prescription": { - "2024-12-01T00:00:00+02:00": 4053 - }, - "newRefill for subscriber 406": { - "2024-12-01T00:00:00+02:00": 36 - }, - "outForDelivery for subscriber 530": { - "2024-12-01T00:00:00+02:00": 31 - }, - "firstTimeShippingConfirmation for subscriber 73": { - "2024-12-01T00:00:00+02:00": 5 - }, - "outForDelivery for subscriber 93": { - "2024-12-01T00:00:00+02:00": 12 - }, - "shippingUpdate for subscriber 377": { - "2024-12-01T00:00:00+02:00": 389 - }, - "shippingConfirmation for subscriber 255": { - "2024-12-01T00:00:00+02:00": 318 - }, - "orderConfirmation for subscriber 320": { - "2024-12-01T00:00:00+02:00": 62 - }, - "outForDelivery for subscriber 200": { - "2024-12-01T00:00:00+02:00": 517 - }, - "abandonedCheckout for subscriber 465": { - "2024-12-01T00:00:00+02:00": 792 - }, - "delivered for subscriber 256": { - "2024-12-01T00:00:00+02:00": 143 - }, - "newPrescription for subscriber 77": { - "2024-12-01T00:00:00+02:00": 24 - }, - "orderConfirmation for subscriber 37": { - "2024-12-01T00:00:00+02:00": 9100 - }, - "followUpDue for subscriber 13": { - "2024-12-01T00:00:00+02:00": 4 - }, - "orderReceipt for subscriber 275": { - "2024-12-01T00:00:00+02:00": 43 - }, - "orderConfirmation for subscriber 200": { - "2024-12-01T00:00:00+02:00": 22 - }, - "passwordReset for subscriber 465": { - "2024-12-01T00:00:00+02:00": 22 - }, - "firstTimeOrderConfirmation for subscriber 200": { - "2024-12-01T00:00:00+02:00": 197 - }, - "shippingUpdate for subscriber 238": { - "2024-12-01T00:00:00+02:00": 98 - }, - "delivered for subscriber 161": { - "2024-12-01T00:00:00+02:00": 3702 - }, - "doctorMessage for subscriber 629": { - "2024-12-01T00:00:00+02:00": 5 - }, - "orderReceipt for subscriber 455": { - "2024-12-01T00:00:00+02:00": 15 - }, - "firstTimeOrderConfirmation for subscriber 4": { - "2024-12-01T00:00:00+02:00": 408 - }, - "outForDelivery for subscriber 161": { - "2024-12-01T00:00:00+02:00": 3479 - }, - "delivered for subscriber 455": { - "2024-12-01T00:00:00+02:00": 15 - }, - "supportMessage for subscriber 377": { - "2024-12-01T00:00:00+02:00": 25 - }, - "New Prescription": { - "2024-12-01T00:00:00+02:00": 653 - }, - "shippingUpdate for subscriber 111": { - "2024-12-01T00:00:00+02:00": 159 - }, - "abandonedCheckout for subscriber 111": { - "2024-12-01T00:00:00+02:00": 10 - }, - "patientWelcome for subscriber 111": { - "2024-12-01T00:00:00+02:00": 10 - }, - "orderReceipt for subscriber 68": { - "2024-12-01T00:00:00+02:00": 15 - }, - "patientWelcome for subscriber 93": { - "2024-12-01T00:00:00+02:00": 67 - }, - "outForDelivery for subscriber 523": { - "2024-12-01T00:00:00+02:00": 26 - }, - "followUpDue for subscriber 238": { - "2024-12-01T00:00:00+02:00": 12 - }, - "delivered for subscriber 77": { - "2024-12-01T00:00:00+02:00": 135 - }, - "patientWelcome for subscriber 523": { - "2024-12-01T00:00:00+02:00": 70 - }, - "firstTimeNewPrescription for subscriber 364": { - "2024-12-01T00:00:00+02:00": 33 - }, - "doctorMessage for subscriber 406": { - "2024-12-01T00:00:00+02:00": 132 - }, - "delivered for subscriber 200": { - "2024-12-01T00:00:00+02:00": 539 - }, - "shippingConfirmation for subscriber 256": { - "2024-12-01T00:00:00+02:00": 108 - }, - "followUpDue for subscriber 53": { - "2024-12-01T00:00:00+02:00": 41 - }, - "Shipping Update for subscriber 121": { - "2024-12-01T00:00:00+02:00": 34 - }, - "prescriptionChanged for subscriber 530": { - "2024-12-01T00:00:00+02:00": 26 - }, - "doctorMessage for subscriber 463": { - "2024-12-01T00:00:00+02:00": 4 - }, - "orderCanceled for subscriber 465": { - "2024-12-01T00:00:00+02:00": 8 - }, - "patientWelcome for subscriber 465": { - "2024-12-01T00:00:00+02:00": 778 - }, - "supportMessage for subscriber 428": { - "2024-12-01T00:00:00+02:00": 18 - }, - "firstTimeShippingConfirmation for subscriber 428": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Delivered": { - "2024-12-01T00:00:00+02:00": 26 - }, - "Order Canceled for subscriber 73": { - "2024-12-01T00:00:00+02:00": 12 - }, - "followUpDue for subscriber 530": { - "2024-12-01T00:00:00+02:00": 11 - }, - "abandonedCheckout for subscriber 35": { - "2024-12-01T00:00:00+02:00": 7 - }, - "shippingConfirmation for subscriber 161": { - "2024-12-01T00:00:00+02:00": 4644 - }, - "shippingUpdate for subscriber 320": { - "2024-12-01T00:00:00+02:00": 833 - }, - "passwordReset for subscriber 364": { - "2024-12-01T00:00:00+02:00": 15 - }, - "shippingUpdate for subscriber 455": { - "2024-12-01T00:00:00+02:00": 124 - }, - "newPrescription for subscriber 256": { - "2024-12-01T00:00:00+02:00": 60 - }, - "followUpPastDue for subscriber 530": { - "2024-12-01T00:00:00+02:00": 6 - }, - "orderReceipt for subscriber 256": { - "2024-12-01T00:00:00+02:00": 142 - }, - "delivered for subscriber 406": { - "2024-12-01T00:00:00+02:00": 99 - }, - "checkinRenewal for subscriber 38": { - "2024-12-01T00:00:00+02:00": 54 - }, - "newPrescription for subscriber 200": { - "2024-12-01T00:00:00+02:00": 19 - }, - "passwordReset for subscriber 406": { - "2024-12-01T00:00:00+02:00": 30 - }, - "Order Canceled": { - "2024-12-01T00:00:00+02:00": 201 - }, - "supportMessage for subscriber 523": { - "2024-12-01T00:00:00+02:00": 5 - }, - "firstTimeShippingConfirmation for subscriber 364": { - "2024-12-01T00:00:00+02:00": 80 - }, - "patientWelcome for subscriber 84": { - "2024-12-01T00:00:00+02:00": 2756 - }, - "abandonedCheckout for subscriber 542": { - "2024-12-01T00:00:00+02:00": 240 - }, - "Admin New Order": { - "2024-12-01T00:00:00+02:00": 53780 - }, - "orderReceipt for subscriber 190": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderReceipt for subscriber 143": { - "2024-12-01T00:00:00+02:00": 21969 - }, - "newPrescription for subscriber 84": { - "2024-12-01T00:00:00+02:00": 301 - }, - "abandonedCheckout for subscriber 406": { - "2024-12-01T00:00:00+02:00": 219 - }, - "delivered for subscriber 73": { - "2024-12-01T00:00:00+02:00": 19 - }, - "First Time Shipping Confirmation": { - "2024-12-01T00:00:00+02:00": 261 - }, - "orderCanceled for subscriber 549": { - "2024-12-01T00:00:00+02:00": 6 - }, - "followUpDue for subscriber 77": { - "2024-12-01T00:00:00+02:00": 125 - }, - "orderReceipt for subscriber 378": { - "2024-12-01T00:00:00+02:00": 50 - }, - "outForDelivery for subscriber 266": { - "2024-12-01T00:00:00+02:00": 149 - }, - "patientWelcome for subscriber 428": { - "2024-12-01T00:00:00+02:00": 24 - }, - "firstTimeShippingConfirmation for subscriber 455": { - "2024-12-01T00:00:00+02:00": 4 - }, - "outForDelivery for subscriber 465": { - "2024-12-01T00:00:00+02:00": 16 - }, - "orderConfirmation for subscriber 263": { - "2024-12-01T00:00:00+02:00": 33 - }, - "paymentError for subscriber 143": { - "2024-12-01T00:00:00+02:00": 1525 - }, - "orderCanceled for subscriber 196": { - "2024-12-01T00:00:00+02:00": 5 - }, - "delivered for subscriber 384": { - "2024-12-01T00:00:00+02:00": 5 - }, - "patientWelcome for subscriber 35": { - "2024-12-01T00:00:00+02:00": 5 - }, - "patientMagicLink for subscriber 200": { - "2024-12-01T00:00:00+02:00": 58 - }, - "New Prescription for subscriber 165": { - "2024-12-01T00:00:00+02:00": 995 - }, - "firstTimeShippingConfirmation for subscriber 452": { - "2024-12-01T00:00:00+02:00": 7 - }, - "outForDelivery for subscriber 121": { - "2024-12-01T00:00:00+02:00": 4 - }, - "newPrescription for subscriber 37": { - "2024-12-01T00:00:00+02:00": 8601 - }, - "followUpDue for subscriber 165": { - "2024-12-01T00:00:00+02:00": 2310 - }, - "First Time Shipping Confirmation for subscriber 165": { - "2024-12-01T00:00:00+02:00": 2822 - }, - "delivered for subscriber 37": { - "2024-12-01T00:00:00+02:00": 13751 - }, - "patientWelcome for subscriber 238": { - "2024-12-01T00:00:00+02:00": 9 - }, - "abandonedCheckout for subscriber 37": { - "2024-12-01T00:00:00+02:00": 16879 - }, - "abandonedPostCheckout for subscriber 542": { - "2024-12-01T00:00:00+02:00": 12 - }, - "abandonedCheckout for subscriber 659": { - "2024-12-01T00:00:00+02:00": 4 - }, - "outForDelivery for subscriber 63": { - "2024-12-01T00:00:00+02:00": 5143 - }, - "delivered for subscriber 255": { - "2024-12-01T00:00:00+02:00": 180 - }, - "shippingUpdate for subscriber 38": { - "2024-12-01T00:00:00+02:00": 3866 - }, - "abandonedCheckout for subscriber 614": { - "2024-12-01T00:00:00+02:00": 40 - }, - "doctorMessage for subscriber 263": { - "2024-12-01T00:00:00+02:00": 100 - }, - "shippingUpdate for subscriber 165": { - "2024-12-01T00:00:00+02:00": 37208 - }, - "shippingUpdate for subscriber 53": { - "2024-12-01T00:00:00+02:00": 169 - }, - "Export disputes": { - "2024-12-01T00:00:00+02:00": 153 - }, - "shippingConfirmation for subscriber 378": { - "2024-12-01T00:00:00+02:00": 28 - }, - "shippingUpdate for subscriber 415": { - "2024-12-01T00:00:00+02:00": 11 - }, - "abandonedCheckout for subscriber 53": { - "2024-12-01T00:00:00+02:00": 25 - }, - "firstTimeOrderConfirmation for subscriber 378": { - "2024-12-01T00:00:00+02:00": 31 - }, - "Order Confirmation": { - "2024-12-01T00:00:00+02:00": 20 - }, - "newRefill for subscriber 263": { - "2024-12-01T00:00:00+02:00": 8 - }, - "orderReceipt for subscriber 63": { - "2024-12-01T00:00:00+02:00": 5387 - }, - "orderConfirmation for subscriber 63": { - "2024-12-01T00:00:00+02:00": 2847 - }, - "prescriptionChanged for subscriber 523": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Prescription Changed": { - "2024-12-01T00:00:00+02:00": 2316 - }, - "followUpPastDue for subscriber 63": { - "2024-12-01T00:00:00+02:00": 2131 - }, - "shippingConfirmation for subscriber 63": { - "2024-12-01T00:00:00+02:00": 4095 - }, - "passwordReset for subscriber 658": { - "2024-12-01T00:00:00+02:00": 5 - }, - "orderCanceled for subscriber 77": { - "2024-12-01T00:00:00+02:00": 15 - }, - "shippingConfirmation for subscriber 523": { - "2024-12-01T00:00:00+02:00": 8 - }, - "firstTimeOrderConfirmation for subscriber 551": { - "2024-12-01T00:00:00+02:00": 9 - }, - "patientWelcome for subscriber 53": { - "2024-12-01T00:00:00+02:00": 11 - }, - "doctorMessage for subscriber 542": { - "2024-12-01T00:00:00+02:00": 219 - }, - "newPrescription for subscriber 266": { - "2024-12-01T00:00:00+02:00": 40 - }, - "followUpDue for subscriber 263": { - "2024-12-01T00:00:00+02:00": 29 - }, - "abandonedPostCheckout for subscriber 200": { - "2024-12-01T00:00:00+02:00": 14 - }, - "supportMessage for subscriber 77": { - "2024-12-01T00:00:00+02:00": 375 - }, - "prescriptionChanged for subscriber 93": { - "2024-12-01T00:00:00+02:00": 9 - }, - "firstTimeNewPrescription for subscriber 441": { - "2024-12-01T00:00:00+02:00": 15 - }, - "abandonedCheckout for subscriber 143": { - "2024-12-01T00:00:00+02:00": 26071 - }, - "shippingUpdate for subscriber 349": { - "2024-12-01T00:00:00+02:00": 141 - }, - "doctorMessage for subscriber 196": { - "2024-12-01T00:00:00+02:00": 16 - }, - "patientWelcome for subscriber 256": { - "2024-12-01T00:00:00+02:00": 162 - }, - "patientWelcome for subscriber 37": { - "2024-12-01T00:00:00+02:00": 11632 - }, - "patientWelcome for subscriber 263": { - "2024-12-01T00:00:00+02:00": 31 - }, - "orderCanceled for subscriber 256": { - "2024-12-01T00:00:00+02:00": 5 - }, - "followUpDue for subscriber 143": { - "2024-12-01T00:00:00+02:00": 14604 - }, - "orderConfirmation for subscriber 275": { - "2024-12-01T00:00:00+02:00": 38 - }, - "orderConfirmation for subscriber 378": { - "2024-12-01T00:00:00+02:00": 20 - }, - "abandonedCheckout for subscriber 638": { - "2024-12-01T00:00:00+02:00": 61 - }, - "abandonedPostCheckout for subscriber 329": { - "2024-12-01T00:00:00+02:00": 27 - }, - "outForDelivery for subscriber 406": { - "2024-12-01T00:00:00+02:00": 92 - }, - "firstTimeShippingConfirmation for subscriber 143": { - "2024-12-01T00:00:00+02:00": 4964 - }, - "patientWelcome for subscriber 77": { - "2024-12-01T00:00:00+02:00": 14 - }, - "firstTimeOrderConfirmation for subscriber 37": { - "2024-12-01T00:00:00+02:00": 3167 - }, - "New Waitlist Waterfall": { - "2024-12-01T00:00:00+02:00": 249 - }, - "doctorMessage for subscriber 275": { - "2024-12-01T00:00:00+02:00": 89 - }, - "First Time Order Confirmation for subscriber 658": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Prescription Changed for subscriber 165": { - "2024-12-01T00:00:00+02:00": 2289 - }, - "outForDelivery for subscriber 292": { - "2024-12-01T00:00:00+02:00": 5 - }, - "firstTimeShippingConfirmation for subscriber 121": { - "2024-12-01T00:00:00+02:00": 4 - }, - "doctorMessage for subscriber 121": { - "2024-12-01T00:00:00+02:00": 8 - }, - "followUpDue for subscriber 364": { - "2024-12-01T00:00:00+02:00": 43 - }, - "orderConfirmation for subscriber 84": { - "2024-12-01T00:00:00+02:00": 679 - }, - "abandonedCheckout for subscriber 255": { - "2024-12-01T00:00:00+02:00": 271 - }, - "firstTimeOrderConfirmation for subscriber 111": { - "2024-12-01T00:00:00+02:00": 6 - }, - "patientWelcome for subscriber 73": { - "2024-12-01T00:00:00+02:00": 25 - }, - "abandonedCheckout for subscriber 349": { - "2024-12-01T00:00:00+02:00": 126 - }, - "newPrescription for subscriber 255": { - "2024-12-01T00:00:00+02:00": 60 - }, - "followUpDue for subscriber 4": { - "2024-12-01T00:00:00+02:00": 1249 - }, - "shippingUpdate for subscriber 523": { - "2024-12-01T00:00:00+02:00": 307 - }, - "newPrescription for subscriber 275": { - "2024-12-01T00:00:00+02:00": 17 - }, - "firstTimeNewPrescription for subscriber 161": { - "2024-12-01T00:00:00+02:00": 348 - }, - "patientWelcome for subscriber 638": { - "2024-12-01T00:00:00+02:00": 44 - }, - "orderReceipt for subscriber 255": { - "2024-12-01T00:00:00+02:00": 171 - }, - "doctorMessage for subscriber 200": { - "2024-12-01T00:00:00+02:00": 466 - }, - "prescriptionChanged for subscriber 77": { - "2024-12-01T00:00:00+02:00": 108 - }, - "shippingUpdate for subscriber 63": { - "2024-12-01T00:00:00+02:00": 53977 - }, - "orderReceipt for subscriber 4": { - "2024-12-01T00:00:00+02:00": 1503 - }, - "outForDelivery for subscriber 256": { - "2024-12-01T00:00:00+02:00": 143 - }, - "supportMessage for subscriber 37": { - "2024-12-01T00:00:00+02:00": 24829 - }, - "supportMessage for subscriber 196": { - "2024-12-01T00:00:00+02:00": 14 - }, - "outForDelivery for subscriber 275": { - "2024-12-01T00:00:00+02:00": 42 - }, - "followUpDue for subscriber 604": { - "2024-12-01T00:00:00+02:00": 6 - }, - "delivered for subscriber 238": { - "2024-12-01T00:00:00+02:00": 9 - }, - "doctorMessage for subscriber 9": { - "2024-12-01T00:00:00+02:00": 24 - }, - "abandonedCheckout for subscriber 474": { - "2024-12-01T00:00:00+02:00": 135 - }, - "shippingUpdate for subscriber 275": { - "2024-12-01T00:00:00+02:00": 321 - }, - "Patient Welcome": { - "2024-12-01T00:00:00+02:00": 5198 - }, - "doctorMessage for subscriber 377": { - "2024-12-01T00:00:00+02:00": 129 - }, - "abandonedCheckout for subscriber 93": { - "2024-12-01T00:00:00+02:00": 76 - }, - "treatmentActive for subscriber 63": { - "2024-12-01T00:00:00+02:00": 631 - }, - "followUpDue for subscriber 217": { - "2024-12-01T00:00:00+02:00": 6 - }, - "firstTimeShippingConfirmation for subscriber 256": { - "2024-12-01T00:00:00+02:00": 93 - }, - "orderReceipt for subscriber 196": { - "2024-12-01T00:00:00+02:00": 6 - }, - "abandonedPostCheckout for subscriber 377": { - "2024-12-01T00:00:00+02:00": 12 - }, - "firstTimeShippingConfirmation for subscriber 161": { - "2024-12-01T00:00:00+02:00": 639 - }, - "Order Receipt for subscriber 542": { - "2024-12-01T00:00:00+02:00": 84 - }, - "followUpPastDue for subscriber 320": { - "2024-12-01T00:00:00+02:00": 48 - }, - "firstTimeNewPrescription for subscriber 256": { - "2024-12-01T00:00:00+02:00": 56 - }, - "patientMagicLink for subscriber 523": { - "2024-12-01T00:00:00+02:00": 6 - }, - "firstTimeOrderConfirmation for subscriber 121": { - "2024-12-01T00:00:00+02:00": 4 - }, - "orderReceipt for subscriber 38": { - "2024-12-01T00:00:00+02:00": 80 - }, - "shippingConfirmation for subscriber 38": { - "2024-12-01T00:00:00+02:00": 297 - }, - "delivered for subscriber 266": { - "2024-12-01T00:00:00+02:00": 163 - }, - "First Time New Prescription for subscriber 549": { - "2024-12-01T00:00:00+02:00": 18 - }, - "firstTimeShippingConfirmation for subscriber 465": { - "2024-12-01T00:00:00+02:00": 24 - }, - "orderConfirmation for subscriber 329": { - "2024-12-01T00:00:00+02:00": 11 - }, - "orderReceipt for subscriber 384": { - "2024-12-01T00:00:00+02:00": 11 - }, - "shippingUpdate for subscriber 364": { - "2024-12-01T00:00:00+02:00": 1043 - }, - "patientWelcome for subscriber 364": { - "2024-12-01T00:00:00+02:00": 405 - }, - "Out For Delivery for subscriber 549": { - "2024-12-01T00:00:00+02:00": 65 - }, - "doctorMessage for subscriber 38": { - "2024-12-01T00:00:00+02:00": 17 - }, - "followUpDue for subscriber 161": { - "2024-12-01T00:00:00+02:00": 3026 - }, - "shippingConfirmation for subscriber 165": { - "2024-12-01T00:00:00+02:00": 4188 - }, - "Out For Delivery": { - "2024-12-01T00:00:00+02:00": 1564 - }, - "followUpPastDue for subscriber 77": { - "2024-12-01T00:00:00+02:00": 105 - }, - "firstTimeShippingConfirmation for subscriber 266": { - "2024-12-01T00:00:00+02:00": 110 - }, - "shippingConfirmation for subscriber 77": { - "2024-12-01T00:00:00+02:00": 230 - }, - "shippingUpdate for subscriber 629": { - "2024-12-01T00:00:00+02:00": 22 - }, - "passwordReset for subscriber 200": { - "2024-12-01T00:00:00+02:00": 60 - }, - "New Refill for subscriber 165": { - "2024-12-01T00:00:00+02:00": 550 - }, - "Follow Up Due for subscriber 93": { - "2024-12-01T00:00:00+02:00": 22 - }, - "Admin Trial Expired": { - "2024-12-01T00:00:00+02:00": 9 - }, - "shippingUpdate for subscriber 378": { - "2024-12-01T00:00:00+02:00": 442 - }, - "Support Message": { - "2024-12-01T00:00:00+02:00": 180 - }, - "shippingUpdate for subscriber 638": { - "2024-12-01T00:00:00+02:00": 5 - }, - "firstTimeOrderConfirmation for subscriber 530": { - "2024-12-01T00:00:00+02:00": 34 - }, - "followUpPastDue for subscriber 238": { - "2024-12-01T00:00:00+02:00": 10 - }, - "firstTimeOrderConfirmation for subscriber 320": { - "2024-12-01T00:00:00+02:00": 33 - }, - "abandonedPostCheckout for subscriber 266": { - "2024-12-01T00:00:00+02:00": 21 - }, - "firstTimeOrderConfirmation for subscriber 63": { - "2024-12-01T00:00:00+02:00": 1765 - }, - "doctorMessage for subscriber 350": { - "2024-12-01T00:00:00+02:00": 6 - }, - "delivered for subscriber 441": { - "2024-12-01T00:00:00+02:00": 26 - }, - "firstTimeNewPrescription for subscriber 329": { - "2024-12-01T00:00:00+02:00": 18 - }, - "outForDelivery for subscriber 329": { - "2024-12-01T00:00:00+02:00": 129 - }, - "outForDelivery for subscriber 377": { - "2024-12-01T00:00:00+02:00": 54 - }, - "followUpPastDue for subscriber 455": { - "2024-12-01T00:00:00+02:00": 10 - }, - "patientWelcome for subscriber 629": { - "2024-12-01T00:00:00+02:00": 9 - }, - "passwordReset for subscriber 378": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Doctor Message": { - "2024-12-01T00:00:00+02:00": 37 - }, - "Patient Welcome for subscriber 320": { - "2024-12-01T00:00:00+02:00": 92 - }, - "passwordReset for subscriber 38": { - "2024-12-01T00:00:00+02:00": 6 - }, - "supportMessage for subscriber 378": { - "2024-12-01T00:00:00+02:00": 28 - }, - "doctorMessage for subscriber 465": { - "2024-12-01T00:00:00+02:00": 77 - }, - "Doctor Message for subscriber 320": { - "2024-12-01T00:00:00+02:00": 108 - }, - "shippingConfirmation for subscriber 200": { - "2024-12-01T00:00:00+02:00": 390 - }, - "abandonedPostCheckout for subscriber 523": { - "2024-12-01T00:00:00+02:00": 5 - }, - "shippingConfirmation for subscriber 13": { - "2024-12-01T00:00:00+02:00": 8 - }, - "delivered for subscriber 292": { - "2024-12-01T00:00:00+02:00": 5 - }, - "orderReceipt for subscriber 530": { - "2024-12-01T00:00:00+02:00": 31 - }, - "Payment Error for subscriber 165": { - "2024-12-01T00:00:00+02:00": 83 - }, - "passwordReset for subscriber 256": { - "2024-12-01T00:00:00+02:00": 22 - }, - "Abandoned Checkout": { - "2024-12-01T00:00:00+02:00": 99 - }, - "patientWelcome for subscriber 121": { - "2024-12-01T00:00:00+02:00": 7 - }, - "passwordReset for subscriber 329": { - "2024-12-01T00:00:00+02:00": 45 - }, - "outForDelivery for subscriber 474": { - "2024-12-01T00:00:00+02:00": 11 - }, - "shippingUpdate for subscriber 440": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderConfirmation for subscriber 549": { - "2024-12-01T00:00:00+02:00": 7 - }, - "delivered for subscriber 121": { - "2024-12-01T00:00:00+02:00": 4 - }, - "passwordReset for subscriber 255": { - "2024-12-01T00:00:00+02:00": 33 - }, - "Shipping Update for subscriber 350": { - "2024-12-01T00:00:00+02:00": 19 - }, - "supportMessage for subscriber 9": { - "2024-12-01T00:00:00+02:00": 12 - }, - "orderCanceled for subscriber 37": { - "2024-12-01T00:00:00+02:00": 1018 - }, - "firstTimeOrderConfirmation for subscriber 165": { - "2024-12-01T00:00:00+02:00": 2201 - }, - "orderCanceled for subscriber 255": { - "2024-12-01T00:00:00+02:00": 16 - }, - "followUpDue for subscriber 68": { - "2024-12-01T00:00:00+02:00": 15 - }, - "orderCanceled for subscriber 530": { - "2024-12-01T00:00:00+02:00": 9 - }, - "orderConfirmation for subscriber 68": { - "2024-12-01T00:00:00+02:00": 12 - }, - "shippingConfirmation for subscriber 217": { - "2024-12-01T00:00:00+02:00": 9 - }, - "outForDelivery for subscriber 190": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Patient Welcome for subscriber 474": { - "2024-12-01T00:00:00+02:00": 147 - }, - "firstTimeShippingConfirmation for subscriber 406": { - "2024-12-01T00:00:00+02:00": 65 - }, - "shippingConfirmation for subscriber 190": { - "2024-12-01T00:00:00+02:00": 7 - }, - "firstTimeOrderConfirmation for subscriber 292": { - "2024-12-01T00:00:00+02:00": 7 - }, - "abandonedPostCheckout for subscriber 349": { - "2024-12-01T00:00:00+02:00": 4 - }, - "firstTimeShippingConfirmation for subscriber 4": { - "2024-12-01T00:00:00+02:00": 530 - }, - "followUpPastDue for subscriber 256": { - "2024-12-01T00:00:00+02:00": 64 - }, - "prescriptionChanged for subscriber 255": { - "2024-12-01T00:00:00+02:00": 88 - }, - "newPrescription for subscriber 73": { - "2024-12-01T00:00:00+02:00": 11 - }, - "doctorMessage for subscriber 77": { - "2024-12-01T00:00:00+02:00": 334 - }, - "supportMessage for subscriber 111": { - "2024-12-01T00:00:00+02:00": 16 - }, - "firstTimeOrderConfirmation for subscriber 349": { - "2024-12-01T00:00:00+02:00": 13 - }, - "patientMagicLink for subscriber 256": { - "2024-12-01T00:00:00+02:00": 44 - }, - "paymentError for subscriber 84": { - "2024-12-01T00:00:00+02:00": 11 - }, - "patientMagicLink for subscriber 549": { - "2024-12-01T00:00:00+02:00": 18 - }, - "labReceived for subscriber 441": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Doctor Message for subscriber 452": { - "2024-12-01T00:00:00+02:00": 13 - }, - "abandonedCheckout for subscriber 190": { - "2024-12-01T00:00:00+02:00": 8 - }, - "followUpPastDue for subscriber 217": { - "2024-12-01T00:00:00+02:00": 5 - }, - "passwordReset for subscriber 266": { - "2024-12-01T00:00:00+02:00": 61 - }, - "followUpDue for subscriber 256": { - "2024-12-01T00:00:00+02:00": 93 - }, - "Delivered for subscriber 320": { - "2024-12-01T00:00:00+02:00": 80 - }, - "shippingUpdate for subscriber 530": { - "2024-12-01T00:00:00+02:00": 208 - }, - "supportMessage for subscriber 256": { - "2024-12-01T00:00:00+02:00": 73 - }, - "firstTimeOrderConfirmation for subscriber 428": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Follow Up Due": { - "2024-12-01T00:00:00+02:00": 17 - }, - "patientMagicLink for subscriber 406": { - "2024-12-01T00:00:00+02:00": 29 - }, - "firstTimeNewPrescription for subscriber 400": { - "2024-12-01T00:00:00+02:00": 5 - }, - "passwordReset for subscriber 63": { - "2024-12-01T00:00:00+02:00": 679 - }, - "abandonedCheckout for subscriber 441": { - "2024-12-01T00:00:00+02:00": 10 - }, - "supportMessage for subscriber 263": { - "2024-12-01T00:00:00+02:00": 37 - }, - "shippingUpdate for subscriber 406": { - "2024-12-01T00:00:00+02:00": 1303 - }, - "First Time Order Confirmation for subscriber 18": { - "2024-12-01T00:00:00+02:00": 7 - }, - "abandonedCheckout for subscriber 350": { - "2024-12-01T00:00:00+02:00": 50 - }, - "doctorMessage for subscriber 13": { - "2024-12-01T00:00:00+02:00": 16 - }, - "supportMessage for subscriber 4": { - "2024-12-01T00:00:00+02:00": 2111 - }, - "prescriptionChanged for subscriber 256": { - "2024-12-01T00:00:00+02:00": 27 - }, - "newPrescription for subscriber 523": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderConfirmation for subscriber 73": { - "2024-12-01T00:00:00+02:00": 15 - }, - "orderReceipt for subscriber 150": { - "2024-12-01T00:00:00+02:00": 8 - }, - "supportMessage for subscriber 364": { - "2024-12-01T00:00:00+02:00": 83 - }, - "abandonedCheckout for subscriber 77": { - "2024-12-01T00:00:00+02:00": 102 - }, - "firstTimeShippingConfirmation for subscriber 329": { - "2024-12-01T00:00:00+02:00": 201 - }, - "doctorMessage for subscriber 364": { - "2024-12-01T00:00:00+02:00": 327 - }, - "passwordReset for subscriber 165": { - "2024-12-01T00:00:00+02:00": 370 - }, - "patientWelcome for subscriber 542": { - "2024-12-01T00:00:00+02:00": 255 - }, - "firstTimeNewPrescription for subscriber 255": { - "2024-12-01T00:00:00+02:00": 12 - }, - "outForDelivery for subscriber 77": { - "2024-12-01T00:00:00+02:00": 132 - }, - "delivered for subscriber 378": { - "2024-12-01T00:00:00+02:00": 55 - }, - "abandonedPostCheckout for subscriber 143": { - "2024-12-01T00:00:00+02:00": 181 - }, - "supportMessage for subscriber 329": { - "2024-12-01T00:00:00+02:00": 409 - }, - "orderReceipt for subscriber 37": { - "2024-12-01T00:00:00+02:00": 14009 - }, - "delivered for subscriber 63": { - "2024-12-01T00:00:00+02:00": 5424 - }, - "firstTimeNewPrescription for subscriber 263": { - "2024-12-01T00:00:00+02:00": 7 - }, - "orderCanceled for subscriber 4": { - "2024-12-01T00:00:00+02:00": 127 - }, - "orderCanceled for subscriber 38": { - "2024-12-01T00:00:00+02:00": 5 - }, - "supportMessage for subscriber 84": { - "2024-12-01T00:00:00+02:00": 584 - }, - "abandonedCheckout for subscriber 63": { - "2024-12-01T00:00:00+02:00": 11801 - }, - "orderReceipt for subscriber 73": { - "2024-12-01T00:00:00+02:00": 15 - }, - "delivered for subscriber 68": { - "2024-12-01T00:00:00+02:00": 6 - }, - "outForDelivery for subscriber 84": { - "2024-12-01T00:00:00+02:00": 1041 - }, - "patientWelcome for subscriber 530": { - "2024-12-01T00:00:00+02:00": 151 - }, - "abandonedCheckout for subscriber 530": { - "2024-12-01T00:00:00+02:00": 160 - }, - "orderConfirmation for subscriber 77": { - "2024-12-01T00:00:00+02:00": 126 - }, - "passwordReset for subscriber 143": { - "2024-12-01T00:00:00+02:00": 2417 - }, - "orderConfirmation for subscriber 165": { - "2024-12-01T00:00:00+02:00": 2299 - }, - "doctorMessage for subscriber 190": { - "2024-12-01T00:00:00+02:00": 16 - }, - "firstTimeOrderConfirmation for subscriber 465": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Order Receipt": { - "2024-12-01T00:00:00+02:00": 87 - }, - "Shipping Update for subscriber 549": { - "2024-12-01T00:00:00+02:00": 472 - }, - "outForDelivery for subscriber 255": { - "2024-12-01T00:00:00+02:00": 167 - }, - "followUpPastDue for subscriber 161": { - "2024-12-01T00:00:00+02:00": 2529 - }, - "shippingUpdate for subscriber 551": { - "2024-12-01T00:00:00+02:00": 21 - }, - "abandonedPostCheckout for subscriber 161": { - "2024-12-01T00:00:00+02:00": 244 - }, - "doctorMessage for subscriber 378": { - "2024-12-01T00:00:00+02:00": 151 - }, - "orderReceipt for subscriber 161": { - "2024-12-01T00:00:00+02:00": 3872 - }, - "prescriptionChanged for subscriber 111": { - "2024-12-01T00:00:00+02:00": 9 - }, - "firstTimeOrderConfirmation for subscriber 474": { - "2024-12-01T00:00:00+02:00": 20 - }, - "followUpDue for subscriber 320": { - "2024-12-01T00:00:00+02:00": 63 - }, - "delivered for subscriber 4": { - "2024-12-01T00:00:00+02:00": 1528 - }, - "outForDelivery for subscriber 111": { - "2024-12-01T00:00:00+02:00": 14 - }, - "abandonedPostCheckout for subscriber 4": { - "2024-12-01T00:00:00+02:00": 76 - }, - "firstTimeOrderConfirmation for subscriber 364": { - "2024-12-01T00:00:00+02:00": 83 - }, - "newRefill for subscriber 35": { - "2024-12-01T00:00:00+02:00": 6 - }, - "delivered for subscriber 93": { - "2024-12-01T00:00:00+02:00": 14 - }, - "doctorMessage for subscriber 4": { - "2024-12-01T00:00:00+02:00": 3621 - }, - "followUpDue for subscriber 37": { - "2024-12-01T00:00:00+02:00": 7545 - }, - "newPrescription for subscriber 349": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Shipping Update": { - "2024-12-01T00:00:00+02:00": 11479 - }, - "doctorMessage for subscriber 428": { - "2024-12-01T00:00:00+02:00": 20 - }, - "delivered for subscriber 111": { - "2024-12-01T00:00:00+02:00": 14 - }, - "newRefill for subscriber 38": { - "2024-12-01T00:00:00+02:00": 1078 - }, - "delivered for subscriber 38": { - "2024-12-01T00:00:00+02:00": 400 - }, - "firstTimeOrderConfirmation for subscriber 77": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Admin Payment Failed": { - "2024-12-01T00:00:00+02:00": 56 - }, - "outForDelivery for subscriber 400": { - "2024-12-01T00:00:00+02:00": 4 - }, - "firstTimeShippingConfirmation for subscriber 84": { - "2024-12-01T00:00:00+02:00": 564 - }, - "Patient OTP": { - "2024-12-01T00:00:00+02:00": 10 - }, - "orderCanceled for subscriber 406": { - "2024-12-01T00:00:00+02:00": 5 - }, - "orderCanceled for subscriber 165": { - "2024-12-01T00:00:00+02:00": 363 - }, - "followUpPastDue for subscriber 190": { - "2024-12-01T00:00:00+02:00": 9 - }, - "passwordReset for subscriber 93": { - "2024-12-01T00:00:00+02:00": 6 - }, - "shippingConfirmation for subscriber 614": { - "2024-12-01T00:00:00+02:00": 7 - }, - "prescriptionChanged for subscriber 266": { - "2024-12-01T00:00:00+02:00": 106 - }, - "abandonedCheckout for subscriber 364": { - "2024-12-01T00:00:00+02:00": 445 - }, - "abandonedCheckout for subscriber 378": { - "2024-12-01T00:00:00+02:00": 146 - }, - "orderReceipt for subscriber 53": { - "2024-12-01T00:00:00+02:00": 44 - }, - "followUpPastDue for subscriber 266": { - "2024-12-01T00:00:00+02:00": 190 - }, - "orderReceipt for subscriber 349": { - "2024-12-01T00:00:00+02:00": 17 - }, - "abandonedCheckout for subscriber 200": { - "2024-12-01T00:00:00+02:00": 533 - }, - "patientMagicLink for subscriber 9": { - "2024-12-01T00:00:00+02:00": 5 - }, - "shippingConfirmation for subscriber 9": { - "2024-12-01T00:00:00+02:00": 10 - }, - "firstTimeNewPrescription for subscriber 474": { - "2024-12-01T00:00:00+02:00": 12 - }, - "shippingUpdate for subscriber 78": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Payment Error": { - "2024-12-01T00:00:00+02:00": 52 - }, - "shippingConfirmation for subscriber 238": { - "2024-12-01T00:00:00+02:00": 7 - }, - "firstTimeOrderConfirmation for subscriber 406": { - "2024-12-01T00:00:00+02:00": 61 - }, - "Patient Magic Link": { - "2024-12-01T00:00:00+02:00": 283 - }, - "firstTimeOrderConfirmation for subscriber 84": { - "2024-12-01T00:00:00+02:00": 421 - }, - "firstTimeNewPrescription for subscriber 266": { - "2024-12-01T00:00:00+02:00": 17 - }, - "abandonedCheckout for subscriber 452": { - "2024-12-01T00:00:00+02:00": 22 - }, - "firstTimeNewPrescription for subscriber 377": { - "2024-12-01T00:00:00+02:00": 8 - }, - "delivered for subscriber 275": { - "2024-12-01T00:00:00+02:00": 43 - }, - "shippingConfirmation for subscriber 530": { - "2024-12-01T00:00:00+02:00": 7 - }, - "abandonedCheckout for subscriber 150": { - "2024-12-01T00:00:00+02:00": 7 - }, - "newPrescription for subscriber 161": { - "2024-12-01T00:00:00+02:00": 1948 - }, - "Shipping Confirmation for subscriber 542": { - "2024-12-01T00:00:00+02:00": 51 - }, - "firstTimeOrderConfirmation for subscriber 217": { - "2024-12-01T00:00:00+02:00": 8 - }, - "shippingConfirmation for subscriber 549": { - "2024-12-01T00:00:00+02:00": 7 - }, - "newRefill for subscriber 4": { - "2024-12-01T00:00:00+02:00": 178 - }, - "patientWelcome for subscriber 384": { - "2024-12-01T00:00:00+02:00": 6 - }, - "orderReceipt for subscriber 266": { - "2024-12-01T00:00:00+02:00": 163 - }, - "firstTimeShippingConfirmation for subscriber 542": { - "2024-12-01T00:00:00+02:00": 55 - }, - "paymentError for subscriber 37": { - "2024-12-01T00:00:00+02:00": 207 - }, - "delivered for subscriber 377": { - "2024-12-01T00:00:00+02:00": 57 - }, - "orderReceipt for subscriber 9": { - "2024-12-01T00:00:00+02:00": 16 - }, - "prescriptionChanged for subscriber 542": { - "2024-12-01T00:00:00+02:00": 19 - }, - "orderReceipt for subscriber 84": { - "2024-12-01T00:00:00+02:00": 1082 - }, - "Out For Delivery for subscriber 542": { - "2024-12-01T00:00:00+02:00": 75 - }, - "abandonedCheckout for subscriber 121": { - "2024-12-01T00:00:00+02:00": 5 - }, - "newRefill for subscriber 37": { - "2024-12-01T00:00:00+02:00": 1630 - }, - "newRefill for subscriber 63": { - "2024-12-01T00:00:00+02:00": 1239 - }, - "newPrescription for subscriber 377": { - "2024-12-01T00:00:00+02:00": 5 - }, - "newPrescription for subscriber 53": { - "2024-12-01T00:00:00+02:00": 25 - }, - "doctorMessage for subscriber 143": { - "2024-12-01T00:00:00+02:00": 58929 - } - } - }, - "63ed36d0f38aed64140c6720": { - "$overall": { - "2024-12-01T00:00:00+02:00": 278 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 278 - }, - "Bienvenida": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Pago aprobado": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Estudiante inscripto": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Certificado emitido": { - "2024-12-01T00:00:00+02:00": 37 - }, - "Entrega corregida": { - "2024-12-01T00:00:00+02:00": 96 - }, - "Recuperación de contraseña (Código)": { - "2024-12-01T00:00:00+02:00": 47 - }, - "Suscripción abandonada": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Procesando pago": { - "2024-12-01T00:00:00+02:00": 9 - } - } - }, - "64ae84fa90b5785d4716e362": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1412 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1412 - }, - "Simple Push": { - "2024-12-01T00:00:00+02:00": 1412 - } - } - }, - "658a048acb274a771b085163": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1215 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1215 - }, - "metric_changed": { - "2024-12-01T00:00:00+02:00": 64 - }, - "Invite": { - "2024-12-01T00:00:00+02:00": 1151 - } - } - }, - "67212578d50b4e9ff9a6cc1f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 208 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 208 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 20 - }, - "hotel-status-update": { - "2024-12-01T00:00:00+02:00": 188 - } - } - }, - "65fa38148453b14f2f5aeea2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 261 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 261 - }, - "Project Completed Editor": { - "2024-12-01T00:00:00+02:00": 31 - }, - "Project Pending Admin Review Admin": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Get early access": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Project Completed Admin": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Project New Project Editor Request Editor": { - "2024-12-01T00:00:00+02:00": 33 - }, - "Project Editing Editor": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Project Pending Admin Review Editor": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Project Editing Admin": { - "2024-12-01T00:00:00+02:00": 33 - }, - "Project Pending Editor Changes Editor": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Project Editing Client": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Project Completed Client": { - "2024-12-01T00:00:00+02:00": 28 - }, - "Project Pending Editor Changes Admin": { - "2024-12-01T00:00:00+02:00": 5 - } - } - }, - "63c1debfe84f99fee270acf7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5817 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5817 - }, - "link-session-inserted": { - "2024-12-01T00:00:00+02:00": 2624 - }, - "room-track-inserted": { - "2024-12-01T00:00:00+02:00": 53 - }, - "message-inserted": { - "2024-12-01T00:00:00+02:00": 240 - }, - "room-joined": { - "2024-12-01T00:00:00+02:00": 50 - }, - "unlock-inserted": { - "2024-12-01T00:00:00+02:00": 22 - }, - "showcase-inserted": { - "2024-12-01T00:00:00+02:00": 48 - }, - "link-listen-inserted": { - "2024-12-01T00:00:00+02:00": 2772 - } - } - }, - "646d9f170b49196df3ab5f80": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14406 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14406 - }, - "Device_Offline_Alerts": { - "2024-12-01T00:00:00+02:00": 10411 - }, - "Leakage_Voltage_Alert": { - "2024-12-01T00:00:00+02:00": 3995 - } - } - }, - "6337ca88ee1316a5c8a9009e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "Tasks": { - "2024-12-01T00:00:00+02:00": 172 - }, - "kyro-automation": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Projects": { - "2024-12-01T00:00:00+02:00": 209 - }, - "Timesheets": { - "2024-12-01T00:00:00+02:00": 24 - } - } - }, - "636975131fbb836889d6f696": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5504 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5504 - }, - "Gift Card - Recipient receipt": { - "2024-12-01T00:00:00+02:00": 427 - }, - "(Chat-API) Send SMS from Support": { - "2024-12-01T00:00:00+02:00": 338 - }, - "Subscription Receipt (post-booking)": { - "2024-12-01T00:00:00+02:00": 609 - }, - "emailReceipt (post-booking)": { - "2024-12-01T00:00:00+02:00": 764 - }, - "Gift a Coach - Recipient Receipt": { - "2024-12-01T00:00:00+02:00": 76 - }, - "Subscription Price Change": { - "2024-12-01T00:00:00+02:00": 58 - }, - "Subscription Canceled": { - "2024-12-01T00:00:00+02:00": 214 - }, - "Send SMS to Student": { - "2024-12-01T00:00:00+02:00": 957 - }, - "SMS": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Gift Card - Delivery Notification (Sender)": { - "2024-12-01T00:00:00+02:00": 467 - }, - "Gift Card - Sender Receipt": { - "2024-12-01T00:00:00+02:00": 519 - }, - "Send SMS to Coach": { - "2024-12-01T00:00:00+02:00": 1048 - } - } - }, - "671bba5a0ab03d946718eb3b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1331 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1331 - }, - "Upcoming Callback Notification": { - "2024-12-01T00:00:00+02:00": 110 - }, - "Announcement Notification": { - "2024-12-01T00:00:00+02:00": 930 - }, - "Verify Callback Notification": { - "2024-12-01T00:00:00+02:00": 110 - }, - "Overdue Callback Notification": { - "2024-12-01T00:00:00+02:00": 110 - }, - "Today Callback Notification": { - "2024-12-01T00:00:00+02:00": 71 - } - } - }, - "653ba5e0583a1ec8f82b3589": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1484 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1484 - }, - "New email": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Missed call": { - "2024-12-01T00:00:00+02:00": 55 - }, - "Candidate comment mention": { - "2024-12-01T00:00:00+02:00": 254 - }, - "New message": { - "2024-12-01T00:00:00+02:00": 1169 - } - } - }, - "66fa9de25d6b8aa393727348": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4316 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4316 - }, - "planner-deadline": { - "2024-12-01T00:00:00+02:00": 207 - }, - "sparepartsOrderUpdate": { - "2024-12-01T00:00:00+02:00": 4057 - }, - "sparepartsOrderReminder": { - "2024-12-01T00:00:00+02:00": 51 - } - } - }, - "65fd55c44f991166e7a7335e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 814 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 814 - }, - "Trusk Low Battery Shift End": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Charge point critical error": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Returning Vehicle": { - "2024-12-01T00:00:00+02:00": 125 - }, - "Vehicle Link Request": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Charge point interruption": { - "2024-12-01T00:00:00+02:00": 19 - }, - "Trusk Low Battery Shift Start": { - "2024-12-01T00:00:00+02:00": 11 - }, - "create driver account": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Overcharging Vehicle": { - "2024-12-01T00:00:00+02:00": 224 - }, - "Charge point faulted and requires restart": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Charger End of Charge": { - "2024-12-01T00:00:00+02:00": 12 - }, - "generic create account": { - "2024-12-01T00:00:00+02:00": 4 - }, - "In Depot Charge Interruption": { - "2024-12-01T00:00:00+02:00": 120 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Charge Near Depot": { - "2024-12-01T00:00:00+02:00": 202 - } - } - }, - "671faf6b285bc655d85f6e65": { - "$overall": { - "2024-12-01T00:00:00+02:00": 534 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 534 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 497 - }, - "general-notification": { - "2024-12-01T00:00:00+02:00": 35 - } - } - }, - "64dbea7b28a0b10b3b77239e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2964 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2964 - }, - "New Task Notification to All Admins": { - "2024-12-01T00:00:00+02:00": 1482 - }, - "Task Due": { - "2024-12-01T00:00:00+02:00": 1482 - } - } - }, - "66b997fe9c11077f0257d94e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 217 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 217 - }, - "general": { - "2024-12-01T00:00:00+02:00": 217 - } - } - }, - "651d2708e1b82d64b37fb064": { - "$overall": { - "2024-12-01T00:00:00+02:00": 772 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 772 - }, - "Eunice Monitor": { - "2024-12-01T00:00:00+02:00": 772 - } - } - }, - "65d368c9a1dfc9ae299cbd1e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1703 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1703 - }, - "QC Bleed Notification": { - "2024-12-01T00:00:00+02:00": 6 - }, - "DNA Alert": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Accession Rollback": { - "2024-12-01T00:00:00+02:00": 58 - }, - "Priority order": { - "2024-12-01T00:00:00+02:00": 22 - }, - "TAP clinical observations": { - "2024-12-01T00:00:00+02:00": 1587 - }, - "TAP Software Error": { - "2024-12-01T00:00:00+02:00": 24 - } - } - }, - "65c67ec9b637cdb23e09edef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "Summary PDF": { - "2024-12-01T00:00:00+02:00": 352 - } - } - }, - "64b03bae2eb78d11de58c1bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10045 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10045 - }, - "dmpag": { - "2024-12-01T00:00:00+02:00": 10045 - } - } - }, - "64a079225cccb636d843bd26": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1653 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1653 - }, - "userTicketId": { - "2024-12-01T00:00:00+02:00": 844 - }, - "userEmail": { - "2024-12-01T00:00:00+02:00": 806 - } - } - }, - "6507114e90b85787fd58b6d2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19976 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19976 - }, - "import-shipment-commented": { - "2024-12-01T00:00:00+02:00": 3066 - }, - "phone-identification-otp": { - "2024-12-01T00:00:00+02:00": 914 - }, - "wallet-transfer": { - "2024-12-01T00:00:00+02:00": 1786 - }, - "import-shipment-arrived": { - "2024-12-01T00:00:00+02:00": 1425 - }, - "import-shipment-received": { - "2024-12-01T00:00:00+02:00": 100 - }, - "notice-created": { - "2024-12-01T00:00:00+02:00": 4469 - }, - "account-invitation-token": { - "2024-12-01T00:00:00+02:00": 7 - }, - "import-shipment-deposit-required": { - "2024-12-01T00:00:00+02:00": 155 - }, - "import-shipment-attached": { - "2024-12-01T00:00:00+02:00": 6669 - }, - "import-shipment-shipped": { - "2024-12-01T00:00:00+02:00": 1221 - }, - "import-shipment-deposited": { - "2024-12-01T00:00:00+02:00": 79 - }, - "import-shipment-waiting": { - "2024-12-01T00:00:00+02:00": 85 - } - } - }, - "627cf999d4869d0018625c67": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3692 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3692 - }, - "mail-contact": { - "2024-12-01T00:00:00+02:00": 601 - }, - "demande-sav": { - "2024-12-01T00:00:00+02:00": 91 - }, - "shipping-suivi": { - "2024-12-01T00:00:00+02:00": 771 - }, - "order-confirmation": { - "2024-12-01T00:00:00+02:00": 1476 - }, - "demande-retour": { - "2024-12-01T00:00:00+02:00": 91 - }, - "shipping-confirmation": { - "2024-12-01T00:00:00+02:00": 651 - }, - "dispo-article": { - "2024-12-01T00:00:00+02:00": 11 - } - } - }, - "6635b78bbe41ef77518aaba0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30077 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30077 - }, - "task-status": { - "2024-12-01T00:00:00+02:00": 30077 - } - } - }, - "624c1d9fdd3137001824f6ef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11998 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11998 - }, - "New task assignment": { - "2024-12-01T00:00:00+02:00": 11998 - } - } - }, - "636a6b4d9e04bb11b575cf74": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4885 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4885 - }, - "tataAigOrderEmail": { - "2024-12-01T00:00:00+02:00": 15 - }, - "visaAtRisk": { - "2024-12-01T00:00:00+02:00": 11 - }, - "claimUploadConfirmationAlert": { - "2024-12-01T00:00:00+02:00": 12 - }, - "newBulkOrderAlert": { - "2024-12-01T00:00:00+02:00": 17 - }, - "orderAlert": { - "2024-12-01T00:00:00+02:00": 654 - }, - "quoteEmailTemplate": { - "2024-12-01T00:00:00+02:00": 6 - }, - "tataApiAlert": { - "2024-12-01T00:00:00+02:00": 2089 - }, - "insuranceActionRequiredAlert": { - "2024-12-01T00:00:00+02:00": 9 - }, - "order-status-change-alert": { - "2024-12-01T00:00:00+02:00": 225 - }, - "productInformationChanges": { - "2024-12-01T00:00:00+02:00": 1839 - } - } - }, - "632cae5927d50dea0bf3898b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1273 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1273 - }, - "Project changed status": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Project Due Date Is Today": { - "2024-12-01T00:00:00+02:00": 82 - }, - "Task Start Date Is Today": { - "2024-12-01T00:00:00+02:00": 164 - }, - "Task Status Changed": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Add project participants": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Responsible For Task To Follower": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Task Due Date Is Today": { - "2024-12-01T00:00:00+02:00": 262 - }, - "Task Is Late": { - "2024-12-01T00:00:00+02:00": 603 - }, - "Project starts today": { - "2024-12-01T00:00:00+02:00": 37 - }, - "Attach Files In Tasks": { - "2024-12-01T00:00:00+02:00": 23 - } - } - }, - "643682a035c8dd9a2c46ac2b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 57733 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 57733 - }, - "ConjunctionSummaryUpdate": { - "2024-12-01T00:00:00+02:00": 46669 - }, - "ConjunctionStatusUpdate": { - "2024-12-01T00:00:00+02:00": 7972 - }, - "ManoeuvreScreeningSummaryUpdate": { - "2024-12-01T00:00:00+02:00": 2889 - }, - "FileFailureProcessing": { - "2024-12-01T00:00:00+02:00": 9 - }, - "ChatRoomCreated": { - "2024-12-01T00:00:00+02:00": 194 - } - } - }, - "64ca38d1a936a1d182441a27": { - "$overall": { - "2024-12-01T00:00:00+02:00": 764 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 764 - }, - "messaging": { - "2024-12-01T00:00:00+02:00": 764 - } - } - }, - "63317d6327d50dea0b03d16e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1034 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1034 - }, - "system-messages": { - "2024-12-01T00:00:00+02:00": 1016 - }, - "contact us": { - "2024-12-01T00:00:00+02:00": 18 - } - } - }, - "6549444cb6c1c9448db38bc2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Subscription Notice": { - "2024-12-01T00:00:00+02:00": 34 - } - } - }, - "66d536cdcf609b1343d0e115": { - "$overall": { - "2024-12-01T00:00:00+02:00": 871 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 871 - }, - "new_tenant_expense": { - "2024-12-01T00:00:00+02:00": 13 - }, - "rental_application_shortlisted": { - "2024-12-01T00:00:00+02:00": 5 - }, - "tenancy_services_bond_filing": { - "2024-12-01T00:00:00+02:00": 24 - }, - "reminder_to_confirm": { - "2024-12-01T00:00:00+02:00": 4 - }, - "tenancy_request_accepted": { - "2024-12-01T00:00:00+02:00": 27 - }, - "new_tenancy_request_property_manager_variant": { - "2024-12-01T00:00:00+02:00": 90 - }, - "confirmation_instructions": { - "2024-12-01T00:00:00+02:00": 55 - }, - "new_enquiry_message": { - "2024-12-01T00:00:00+02:00": 10 - }, - "time_confirmed_with_message": { - "2024-12-01T00:00:00+02:00": 7 - }, - "close_reminder": { - "2024-12-01T00:00:00+02:00": 42 - }, - "rent_split_set": { - "2024-12-01T00:00:00+02:00": 14 - }, - "agency_email_confirmation": { - "2024-12-01T00:00:00+02:00": 7 - }, - "tenancy_extension_confirmed": { - "2024-12-01T00:00:00+02:00": 8 - }, - "landlord_registration_submitted": { - "2024-12-01T00:00:00+02:00": 26 - }, - "new_rental_application": { - "2024-12-01T00:00:00+02:00": 7 - }, - "tenancy_variation_added": { - "2024-12-01T00:00:00+02:00": 8 - }, - "bond_payment_due": { - "2024-12-01T00:00:00+02:00": 5 - }, - "inspection_time_confirmed_mail_merge": { - "2024-12-01T00:00:00+02:00": 10 - }, - "private_viewing_confirmed": { - "2024-12-01T00:00:00+02:00": 8 - }, - "rental_application_unsuccessful": { - "2024-12-01T00:00:00+02:00": 17 - }, - "property_manager_tenancy_confirmed": { - "2024-12-01T00:00:00+02:00": 17 - }, - "tenancy_extension_added": { - "2024-12-01T00:00:00+02:00": 18 - }, - "rent_payment_overdue": { - "2024-12-01T00:00:00+02:00": 5 - }, - "expense_created_for_uninvited_tenants": { - "2024-12-01T00:00:00+02:00": 4 - }, - "updated_tenant_expense": { - "2024-12-01T00:00:00+02:00": 24 - }, - "awaiting_sign_offs": { - "2024-12-01T00:00:00+02:00": 201 - }, - "expense_updated_for_uninvited_tenants": { - "2024-12-01T00:00:00+02:00": 6 - }, - "maintenance_created_from_inspection": { - "2024-12-01T00:00:00+02:00": 66 - }, - "listing_approved": { - "2024-12-01T00:00:00+02:00": 8 - }, - "user_edited_notice": { - "2024-12-01T00:00:00+02:00": 7 - }, - "tenancy_variation_signed": { - "2024-12-01T00:00:00+02:00": 7 - }, - "renter_tenancy_confirmed_property_management_variant": { - "2024-12-01T00:00:00+02:00": 53 - }, - "rental_application_accepted": { - "2024-12-01T00:00:00+02:00": 4 - }, - "migrate_invite_accepted": { - "2024-12-01T00:00:00+02:00": 30 - } - } - }, - "650af582c016453d5bdfb209": { - "$overall": { - "2024-12-01T00:00:00+02:00": 523 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 523 - }, - "Payments - Zustimmung muss bestätigt werden": { - "2024-12-01T00:00:00+02:00": 504 - }, - "Payments - Zustimmung läuft in 1 Tag ab": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Payments - Zustimmung läuft in 7 Tagen ab": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "66704e3f30319d13334f4306": { - "$overall": { - "2024-12-01T00:00:00+02:00": 366817 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 366817 - }, - "preqPushNotification": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Medvol_V1_Notification": { - "2024-12-01T00:00:00+02:00": 343489 - }, - "pushNotification": { - "2024-12-01T00:00:00+02:00": 23321 - } - } - }, - "64eda93c14b8a3ace6f4c5e9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7737 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7737 - }, - "Task Created": { - "2024-12-01T00:00:00+02:00": 101 - }, - "Task in Review": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Project Photo Added": { - "2024-12-01T00:00:00+02:00": 4919 - }, - "Offer Rejected": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Task Edited": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Task Photo Added": { - "2024-12-01T00:00:00+02:00": 1435 - }, - "absence requested": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Task Overdue": { - "2024-12-01T00:00:00+02:00": 151 - }, - "Offer Accepted": { - "2024-12-01T00:00:00+02:00": 234 - }, - "Bills Created": { - "2024-12-01T00:00:00+02:00": 520 - }, - "Director Report Review": { - "2024-12-01T00:00:00+02:00": 259 - }, - "Create new project post": { - "2024-12-01T00:00:00+02:00": 81 - } - } - }, - "6322333a2d7b721933bd8cf6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10656 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10656 - }, - "export-ready-for-download": { - "2024-12-01T00:00:00+02:00": 118 - }, - "new_note_tag": { - "2024-12-01T00:00:00+02:00": 55 - }, - "linkedin-inbox-synced": { - "2024-12-01T00:00:00+02:00": 9107 - }, - "task-completed-notification": { - "2024-12-01T00:00:00+02:00": 172 - }, - "task-created-notification": { - "2024-12-01T00:00:00+02:00": 106 - }, - "inactive-account-detected": { - "2024-12-01T00:00:00+02:00": 122 - }, - "import-start": { - "2024-12-01T00:00:00+02:00": 209 - }, - "task-due-today-notification": { - "2024-12-01T00:00:00+02:00": 532 - }, - "Import finish": { - "2024-12-01T00:00:00+02:00": 144 - }, - "Space Invitation email": { - "2024-12-01T00:00:00+02:00": 91 - } - } - }, - "64e4824819860000717aecb9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6884 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6884 - }, - "dispute_management": { - "2024-12-01T00:00:00+02:00": 849 - }, - "payout_paid": { - "2024-12-01T00:00:00+02:00": 45 - }, - "charge_failed": { - "2024-12-01T00:00:00+02:00": 44 - }, - "Merchant CSV report": { - "2024-12-01T00:00:00+02:00": 23 - }, - "buyer_qualification_approved": { - "2024-12-01T00:00:00+02:00": 71 - }, - "transaction_financed": { - "2024-12-01T00:00:00+02:00": 123 - }, - "buyer_qualification_declined": { - "2024-12-01T00:00:00+02:00": 11 - }, - "terms_weekly_digest": { - "2024-12-01T00:00:00+02:00": 723 - }, - "transaction_charged": { - "2024-12-01T00:00:00+02:00": 355 - }, - "sftp_sync_invoices_report": { - "2024-12-01T00:00:00+02:00": 8 - }, - "payout_initiated": { - "2024-12-01T00:00:00+02:00": 42 - }, - "terms_daily_digest": { - "2024-12-01T00:00:00+02:00": 4586 - } - } - }, - "63b85858b775d8ef0ed805cb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16995 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16995 - }, - "Org Member Invitation": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Live Chat Assigned": { - "2024-12-01T00:00:00+02:00": 16984 - } - } - }, - "6580bfe12c7e267bc3af8dc2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4869 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4869 - }, - "Bid Expired": { - "2024-12-01T00:00:00+02:00": 12 - }, - "New offer received": { - "2024-12-01T00:00:00+02:00": 1404 - }, - "KYC Ok": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Ask Expired": { - "2024-12-01T00:00:00+02:00": 32 - }, - "New Higher Bid": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Monthly Fee Payed": { - "2024-12-01T00:00:00+02:00": 230 - }, - "New Offer On Watched Item": { - "2024-12-01T00:00:00+02:00": 289 - }, - "Offer Accepted": { - "2024-12-01T00:00:00+02:00": 54 - }, - "New Lower Ask": { - "2024-12-01T00:00:00+02:00": 2728 - }, - "Ask Matched": { - "2024-12-01T00:00:00+02:00": 54 - }, - "KYC Error": { - "2024-12-01T00:00:00+02:00": 16 - } - } - }, - "62fa8155227ab843d407b3f5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8416 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8416 - }, - "Finished Export": { - "2024-12-01T00:00:00+02:00": 682 - }, - "Summary Email": { - "2024-12-01T00:00:00+02:00": 29 - }, - "Nova menção em um ticket": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Atualizações em um Ticket": { - "2024-12-01T00:00:00+02:00": 3462 - }, - "Ticket Due": { - "2024-12-01T00:00:00+02:00": 1162 - }, - "Novo Ticket Atribuído": { - "2024-12-01T00:00:00+02:00": 2554 - }, - "Finished Import": { - "2024-12-01T00:00:00+02:00": 516 - } - } - }, - "64c03a19bab542bccfebc4c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 35078 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 35078 - }, - "Locations CSV (RBG)": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Password Setup New User": { - "2024-12-01T00:00:00+02:00": 30 - }, - "Shop Notification Daily": { - "2024-12-01T00:00:00+02:00": 34876 - }, - "Daily Shop Batch Notification": { - "2024-12-01T00:00:00+02:00": 132 - } - } - }, - "6478b60f3a95df70dfeab13c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7104 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7104 - }, - "Basic Chat Notification": { - "2024-12-01T00:00:00+02:00": 7104 - } - } - }, - "63ac163b2588b530704387fc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 533 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 533 - }, - "Dashboard Patient Activity": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Internal message notification": { - "2024-12-01T00:00:00+02:00": 371 - }, - "Patient sent a message": { - "2024-12-01T00:00:00+02:00": 128 - } - } - }, - "64b703eb90b5785d4734577a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1708 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1708 - }, - "Order - New organization order": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Order - Rejected": { - "2024-12-01T00:00:00+02:00": 39 - }, - "License - License-removed-in-app": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Order - Completed": { - "2024-12-01T00:00:00+02:00": 77 - }, - "Order - failed": { - "2024-12-01T00:00:00+02:00": 225 - }, - "License - New Subscriber Created": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Order - Approval Required - Reseller": { - "2024-12-01T00:00:00+02:00": 427 - }, - "Order - New organization order - Reseller": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Users - Organization User Welcome Email": { - "2024-12-01T00:00:00+02:00": 696 - }, - "Helpdesk - Unmapped organization": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Helpdesk - Ticket updated": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Test Translation": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Licenses - License-assigned-in-app": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Provisioning - Reseller User Welcome Email": { - "2024-12-01T00:00:00+02:00": 86 - } - } - }, - "637b2240c58b301920b2f70c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10129 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10129 - }, - "lapasar-test": { - "2024-12-01T00:00:00+02:00": 10129 - } - } - }, - "651ea1381df1b46454f21192": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1587 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1587 - }, - "Disbursal Auto Mail": { - "2024-12-01T00:00:00+02:00": 381 - }, - "NOC Mail": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Settlement Mail": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Loan closed Mail": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Loan Approval and Sanction Letter send": { - "2024-12-01T00:00:00+02:00": 494 - }, - "Reminder Mail": { - "2024-12-01T00:00:00+02:00": 109 - }, - "Interested Auto Mail": { - "2024-12-01T00:00:00+02:00": 274 - }, - "Rejection Mail": { - "2024-12-01T00:00:00+02:00": 278 - } - } - }, - "63a32471bee1d5aed72cc01d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5730 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5730 - }, - "Lead created": { - "2024-12-01T00:00:00+02:00": 3104 - }, - "Offer insurance module export": { - "2024-12-01T00:00:00+02:00": 519 - }, - "Offer crm export": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Advisory report campaign created": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Offer campaign created": { - "2024-12-01T00:00:00+02:00": 2090 - } - } - }, - "667afbe4231acc7b876e0a8a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "Contacts": { - "2024-12-01T00:00:00+02:00": 48 - }, - "Tasks": { - "2024-12-01T00:00:00+02:00": 6 - }, - "New Direct Booking Chat": { - "2024-12-01T00:00:00+02:00": 189 - } - } - }, - "63ad63d5a3d6d6f6e46334a0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3391 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3391 - }, - "Meeting analysis": { - "2024-12-01T00:00:00+02:00": 2659 - }, - "Calendar failed to refresh": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Comment tagged": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Meeting analysis team - Slack": { - "2024-12-01T00:00:00+02:00": 707 - } - } - }, - "64f0c28825339d16c5d8131a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 288 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 288 - }, - "chat-message": { - "2024-12-01T00:00:00+02:00": 288 - } - } - }, - "656f1ea74663d4c5f711bce4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 276 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 276 - }, - "Lunar Cyber Notifications": { - "2024-12-01T00:00:00+02:00": 276 - } - } - }, - "65c1f64ef94456f501d98f49": { - "$overall": { - "2024-12-01T00:00:00+02:00": 104679 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 104679 - }, - "Item favoured": { - "2024-12-01T00:00:00+02:00": 104679 - } - } - }, - "672e25d0a1974766693e1703": { - "$overall": { - "2024-12-01T00:00:00+02:00": 319 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 319 - }, - "org-user-digest": { - "2024-12-01T00:00:00+02:00": 90 - }, - "task-assignment": { - "2024-12-01T00:00:00+02:00": 229 - } - } - }, - "66828021e73f8d95adbb100f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4387 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4387 - }, - "Storage System Share": { - "2024-12-01T00:00:00+02:00": 43 - }, - "notes": { - "2024-12-01T00:00:00+02:00": 250 - }, - "lead-actions": { - "2024-12-01T00:00:00+02:00": 1445 - }, - "tenant-join-accept-reject": { - "2024-12-01T00:00:00+02:00": 120 - }, - "invite-user": { - "2024-12-01T00:00:00+02:00": 194 - }, - "tenant-access-request": { - "2024-12-01T00:00:00+02:00": 80 - }, - "pov-request": { - "2024-12-01T00:00:00+02:00": 86 - }, - "invite": { - "2024-12-01T00:00:00+02:00": 90 - }, - "note-comments": { - "2024-12-01T00:00:00+02:00": 46 - }, - "converted-to-opportunity": { - "2024-12-01T00:00:00+02:00": 68 - }, - "products-industrySegment": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Expiry Warning Notification": { - "2024-12-01T00:00:00+02:00": 160 - }, - "Dealflow CRUD": { - "2024-12-01T00:00:00+02:00": 1536 - }, - "Approval Notification": { - "2024-12-01T00:00:00+02:00": 154 - }, - "mdf-receivable-payable": { - "2024-12-01T00:00:00+02:00": 10 - }, - "roles": { - "2024-12-01T00:00:00+02:00": 66 - }, - "common-email-request": { - "2024-12-01T00:00:00+02:00": 13 - } - } - }, - "6329fc7ae2a2de81df4b10a6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3828 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3828 - }, - "fxTransactionConfirmation": { - "2024-12-01T00:00:00+02:00": 155 - }, - "fxmoneywastransferred": { - "2024-12-01T00:00:00+02:00": 148 - }, - "workingCapitalEnabledLineAdvanceRequested": { - "2024-12-01T00:00:00+02:00": 415 - }, - "Deposit Received Email Notification": { - "2024-12-01T00:00:00+02:00": 403 - }, - "applicantRegistered": { - "2024-12-01T00:00:00+02:00": 65 - }, - "2FA": { - "2024-12-01T00:00:00+02:00": 1518 - }, - "Nueva póliza contratada": { - "2024-12-01T00:00:00+02:00": 66 - }, - "Recuperar contraseña": { - "2024-12-01T00:00:00+02:00": 39 - }, - "alert": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Disbursement Paid Advance": { - "2024-12-01T00:00:00+02:00": 702 - }, - "On-boarding notification": { - "2024-12-01T00:00:00+02:00": 27 - }, - "generalRegisterEmail": { - "2024-12-01T00:00:00+02:00": 146 - }, - "Colaboradores": { - "2024-12-01T00:00:00+02:00": 39 - }, - "workingCapitalPreEnableLineOpened": { - "2024-12-01T00:00:00+02:00": 16 - }, - "credit-bureau-authorization-validation": { - "2024-12-01T00:00:00+02:00": 61 - } - } - }, - "6437a1cdc3f9dd9ef6a22609": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9689 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9689 - }, - "[ Store ] - Message Notification": { - "2024-12-01T00:00:00+02:00": 9687 - } - } - }, - "6758633bd0bc5c5859e4d0b0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 182 - }, - "standart-workflow": { - "2024-12-01T00:00:00+02:00": 193 - } - } - }, - "652e95466c3964c5a2832222": { - "$overall": { - "2024-12-01T00:00:00+02:00": 244 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 244 - }, - "User Invited (Local and External)": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Local-Environment-CBeach": { - "2024-12-01T00:00:00+02:00": 46 - }, - "The Community - Global In-app": { - "2024-12-01T00:00:00+02:00": 191 - } - } - }, - "6501cc0935286a5ea69aa722": { - "$overall": { - "2024-12-01T00:00:00+02:00": 668 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 668 - }, - "Basic Message": { - "2024-12-01T00:00:00+02:00": 668 - } - } - }, - "66fc55c5cf609b13433a677d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4823 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4823 - }, - "nda-document-processed": { - "2024-12-01T00:00:00+02:00": 1458 - }, - "nda-document-preprocessing": { - "2024-12-01T00:00:00+02:00": 1354 - }, - "nda-document-processing-failure": { - "2024-12-01T00:00:00+02:00": 148 - }, - "nda-document-processing": { - "2024-12-01T00:00:00+02:00": 1863 - } - } - }, - "6582723f08be7e008ad65128": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5142 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5142 - }, - "Only App": { - "2024-12-01T00:00:00+02:00": 2581 - }, - "Notification in-app": { - "2024-12-01T00:00:00+02:00": 2561 - } - } - }, - "642552b70136cef86a79373c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 481 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 481 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Account Activation": { - "2024-12-01T00:00:00+02:00": 222 - }, - "Welcome": { - "2024-12-01T00:00:00+02:00": 222 - }, - "Receipt": { - "2024-12-01T00:00:00+02:00": 21 - } - } - }, - "650002893cc619d36e43a166": { - "$overall": { - "2024-12-01T00:00:00+02:00": 593 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 593 - }, - "push notification": { - "2024-12-01T00:00:00+02:00": 593 - } - } - }, - "657006a1d69593bcb426d80e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 717 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 717 - }, - "Logbook": { - "2024-12-01T00:00:00+02:00": 715 - } - } - }, - "6670ed6e78b0832675c76f6a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 902 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 902 - }, - "staging-us-user-resource-requests": { - "2024-12-01T00:00:00+02:00": 6 - }, - "development-andria-timesheet-not-completed": { - "2024-12-01T00:00:00+02:00": 8 - }, - "development-magdeline-timesheet-not-completed": { - "2024-12-01T00:00:00+02:00": 14 - }, - "development-magdeline-time-off-impacts": { - "2024-12-01T00:00:00+02:00": 61 - }, - "prod-us-timesheet-not-completed": { - "2024-12-01T00:00:00+02:00": 799 - }, - "review-app-16283-time-off-impacts": { - "2024-12-01T00:00:00+02:00": 10 - } - } - }, - "64f6ffa51bb9daae5164392a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11685 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11685 - }, - "Auctions / Bids": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Offers": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Assets": { - "2024-12-01T00:00:00+02:00": 11306 - }, - "Sales": { - "2024-12-01T00:00:00+02:00": 351 - } - } - }, - "6727412d456590b1d8992d83": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146 - }, - "verify-email-workflow": { - "2024-12-01T00:00:00+02:00": 64 - }, - "reset-password-workflow": { - "2024-12-01T00:00:00+02:00": 24 - }, - "remind-streak-workflow": { - "2024-12-01T00:00:00+02:00": 34 - }, - "remind-missing-streak-workflow": { - "2024-12-01T00:00:00+02:00": 22 - } - } - }, - "646e25734c1d7d4ec22acfa5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 25514 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 25514 - }, - "invite-with-sso-to-new-user": { - "2024-12-01T00:00:00+02:00": 34 - }, - "survey-started-to-recipient": { - "2024-12-01T00:00:00+02:00": 3449 - }, - "campaign-task-comment-added": { - "2024-12-01T00:00:00+02:00": 24 - }, - "campaign-launched-to-creator": { - "2024-12-01T00:00:00+02:00": 68 - }, - "invite-to-existing-user": { - "2024-12-01T00:00:00+02:00": 98 - }, - "campaign-task-summary-to-assignee": { - "2024-12-01T00:00:00+02:00": 1224 - }, - "campaign-task-validation-summary-to-validator": { - "2024-12-01T00:00:00+02:00": 79 - }, - "campaign-ended-to-creator": { - "2024-12-01T00:00:00+02:00": 31 - }, - "survey-reminder-to-recipient": { - "2024-12-01T00:00:00+02:00": 9694 - }, - "invite-with-pass-to-new-user": { - "2024-12-01T00:00:00+02:00": 55 - }, - "campaign-task-assigned-to-assignee": { - "2024-12-01T00:00:00+02:00": 10310 - }, - "campaign-summary-to-creator": { - "2024-12-01T00:00:00+02:00": 438 - }, - "reminder-with-pass-to-new-user": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "671dcbd5fb21db27364e8179": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3918 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3918 - }, - "in-app-notification-workflow": { - "2024-12-01T00:00:00+02:00": 3918 - } - } - }, - "647817a98b0b51ed174db1a8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22430 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22430 - }, - "angel-app-notifications": { - "2024-12-01T00:00:00+02:00": 2251 - }, - "ambassador-app-notifications": { - "2024-12-01T00:00:00+02:00": 104 - }, - "angel-app-notifications-inapp": { - "2024-12-01T00:00:00+02:00": 20075 - } - } - }, - "6422c50c5876c8840c8b4668": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6397 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6397 - }, - "risk-assessment": { - "2024-12-01T00:00:00+02:00": 443 - }, - "legal-status-expiry": { - "2024-12-01T00:00:00+02:00": 29 - }, - "incident-report": { - "2024-12-01T00:00:00+02:00": 932 - }, - "careplancontributor": { - "2024-12-01T00:00:00+02:00": 49 - }, - "appointment-assignment": { - "2024-12-01T00:00:00+02:00": 50 - }, - "observation-level-up": { - "2024-12-01T00:00:00+02:00": 852 - }, - "careplan-review-reminder": { - "2024-12-01T00:00:00+02:00": 6 - }, - "due-today-tasks": { - "2024-12-01T00:00:00+02:00": 45 - }, - "repeating-task-review": { - "2024-12-01T00:00:00+02:00": 414 - }, - "task-assignment": { - "2024-12-01T00:00:00+02:00": 257 - }, - "legal-status": { - "2024-12-01T00:00:00+02:00": 51 - }, - "one-day-overdue-tasks": { - "2024-12-01T00:00:00+02:00": 331 - }, - "investigation-type": { - "2024-12-01T00:00:00+02:00": 2934 - } - } - }, - "6321e40f1a3ff48f5712daa8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19069 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19069 - }, - "order-status-change-alert": { - "2024-12-01T00:00:00+02:00": 19065 - }, - "notification-change-alert": { - "2024-12-01T00:00:00+02:00": 4 - } - } - }, - "669ba0033c94be87b123b8c5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12196 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12196 - }, - "paid-request": { - "2024-12-01T00:00:00+02:00": 5735 - }, - "trial-request": { - "2024-12-01T00:00:00+02:00": 6461 - } - } - }, - "6734a5a33b50565012d8dce0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 518 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 518 - }, - "demo-comment-on-task": { - "2024-12-01T00:00:00+02:00": 7 - }, - "send design review notifications": { - "2024-12-01T00:00:00+02:00": 510 - } - } - }, - "6408720f46fde50c6d4affe5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1424 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1424 - }, - "User mentioned in chat": { - "2024-12-01T00:00:00+02:00": 10 - }, - "User invited to an event": { - "2024-12-01T00:00:00+02:00": 179 - }, - "A new feedback": { - "2024-12-01T00:00:00+02:00": 30 - }, - "User mentioned in a feedback comment": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Note added to a task": { - "2024-12-01T00:00:00+02:00": 57 - }, - "User assigned to a key role": { - "2024-12-01T00:00:00+02:00": 212 - }, - "Invalid value provided in a task": { - "2024-12-01T00:00:00+02:00": 46 - }, - "Undone task": { - "2024-12-01T00:00:00+02:00": 875 - } - } - }, - "6298723bbf5f05001986dd80": { - "$overall": { - "2024-12-01T00:00:00+02:00": 615 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 615 - }, - "certificate-uploaded": { - "2024-12-01T00:00:00+02:00": 395 - }, - "unverified-create-job": { - "2024-12-01T00:00:00+02:00": 5 - }, - "unverified-create-task": { - "2024-12-01T00:00:00+02:00": 100 - }, - "create-organisation": { - "2024-12-01T00:00:00+02:00": 115 - } - } - }, - "6516702d73891288fc1ca032": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16367 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16367 - }, - "Comandi TRDP": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Dati di Sintesi": { - "2024-12-01T00:00:00+02:00": 16350 - } - } - }, - "6630a51483064b959c801961": { - "$overall": { - "2024-12-01T00:00:00+02:00": 33850 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 33850 - }, - "pushNotification": { - "2024-12-01T00:00:00+02:00": 27593 - }, - "emailNotification": { - "2024-12-01T00:00:00+02:00": 6257 - } - } - }, - "628f82923c3e82001812b7cf": { - "$overall": { - "2024-12-01T00:00:00+02:00": 245 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 245 - }, - "EMAIL_OTP": { - "2024-12-01T00:00:00+02:00": 235 - }, - "Employee Activation": { - "2024-12-01T00:00:00+02:00": 9 - } - } - }, - "66ac042fb11ac224eaf4f23a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10782 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10782 - }, - "prod-eu-user-resource-requests": { - "2024-12-01T00:00:00+02:00": 44 - }, - "prod-eu-timesheet-not-completed": { - "2024-12-01T00:00:00+02:00": 10738 - } - } - }, - "6578cf542c7e267bc3e3897a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2090 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2090 - }, - "TIMESHEET:APPROVE": { - "2024-12-01T00:00:00+02:00": 72 - }, - "LEAVE-REQUEST:APPROVE": { - "2024-12-01T00:00:00+02:00": 34 - }, - "TIMESHEET:UPDATE": { - "2024-12-01T00:00:00+02:00": 60 - }, - "PAYRUN:FILED": { - "2024-12-01T00:00:00+02:00": 1624 - }, - "TIMESHEET:DELETE": { - "2024-12-01T00:00:00+02:00": 53 - }, - "PAYRUN:FAILED": { - "2024-12-01T00:00:00+02:00": 9 - }, - "LEAVE-REQUEST:UPDATE": { - "2024-12-01T00:00:00+02:00": 22 - }, - "LEAVE-REQUEST:CREATE": { - "2024-12-01T00:00:00+02:00": 35 - }, - "TIMESHEET:CREATE": { - "2024-12-01T00:00:00+02:00": 156 - }, - "LEAVE-REQUEST:REJECT": { - "2024-12-01T00:00:00+02:00": 16 - }, - "TIMESHEET:REJECT": { - "2024-12-01T00:00:00+02:00": 7 - } - } - }, - "666a0c480f48d9a01fea8e2c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 467 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 467 - }, - "Amex": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Transfers": { - "2024-12-01T00:00:00+02:00": 455 - } - } - }, - "660ef03291bd69a79e31a321": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9337 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9337 - }, - "Notas de Item": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Tarefa Atribuída": { - "2024-12-01T00:00:00+02:00": 6867 - }, - "Tarefa Compartilhada": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Comunicação Enspace": { - "2024-12-01T00:00:00+02:00": 2414 - } - } - }, - "651aea5133924ee69071720d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23501 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23501 - }, - "Quejas": { - "2024-12-01T00:00:00+02:00": 63 - }, - "Nuevo inicio de sesión": { - "2024-12-01T00:00:00+02:00": 1804 - }, - "Nuevo Comentario Legal - Equipo": { - "2024-12-01T00:00:00+02:00": 26 - }, - "Agente Suspendido MB": { - "2024-12-01T00:00:00+02:00": 131 - }, - "Invitacion Nuevo Asesor": { - "2024-12-01T00:00:00+02:00": 47 - }, - "Bienvenida Asesor": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Recordatorio consulta pendiente": { - "2024-12-01T00:00:00+02:00": 1329 - }, - "Broker asignado a cliente": { - "2024-12-01T00:00:00+02:00": 5638 - }, - "Agente Reactivado": { - "2024-12-01T00:00:00+02:00": 41 - }, - "Agente suspendido": { - "2024-12-01T00:00:00+02:00": 48 - }, - "Nuevo lead": { - "2024-12-01T00:00:00+02:00": 6577 - }, - "Correo búsqueda cerrada": { - "2024-12-01T00:00:00+02:00": 2972 - }, - "Envío de Contrato": { - "2024-12-01T00:00:00+02:00": 513 - }, - "Agente Reactivado MB": { - "2024-12-01T00:00:00+02:00": 75 - }, - "Nuevo postulante": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Nuevo postulante para tu inmobiliaria": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Correo baja de precio": { - "2024-12-01T00:00:00+02:00": 2614 - }, - "Nuevo comentario legal - Asesor": { - "2024-12-01T00:00:00+02:00": 11 - }, - "accion requerida": { - "2024-12-01T00:00:00+02:00": 40 - }, - "Visita solicitada": { - "2024-12-01T00:00:00+02:00": 226 - }, - "Login": { - "2024-12-01T00:00:00+02:00": 172 - }, - "Nuevo referido": { - "2024-12-01T00:00:00+02:00": 15 - }, - "traer referido al desayuno": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Nuevo lead - cliente": { - "2024-12-01T00:00:00+02:00": 1075 - }, - "Aplica a pulppo": { - "2024-12-01T00:00:00+02:00": 5 - } - } - }, - "63edbed95f1718af27dc2f2f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11715 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11715 - }, - "prod-credentials-status-changed-notification-template": { - "2024-12-01T00:00:00+02:00": 9143 - }, - "prod-batch-of-credentials-status-changed-notification-template": { - "2024-12-01T00:00:00+02:00": 2502 - }, - "Credentials Changed Notification Template": { - "2024-12-01T00:00:00+02:00": 70 - } - } - }, - "652efbf06c3964c5a2845118": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "follow": { - "2024-12-01T00:00:00+02:00": 158 - }, - "In App Share": { - "2024-12-01T00:00:00+02:00": 85 - }, - "One time password": { - "2024-12-01T00:00:00+02:00": 109 - } - } - }, - "66362cc66c5885a3257940bb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2223 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2223 - }, - "Booking Notifications": { - "2024-12-01T00:00:00+02:00": 2215 - } - } - }, - "6637e82483488a7091d0513d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 702 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 702 - }, - "Email Verification": { - "2024-12-01T00:00:00+02:00": 99 - }, - "Stream Like": { - "2024-12-01T00:00:00+02:00": 27 - }, - "User Follow": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Video Comment": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Stream Available": { - "2024-12-01T00:00:00+02:00": 425 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 26 - }, - "Friend Stream Start": { - "2024-12-01T00:00:00+02:00": 110 - } - } - }, - "65718e1d37b5f612059c62ef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24426 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24426 - }, - "Phishing Report Receipt": { - "2024-12-01T00:00:00+02:00": 282 - }, - "Clarity Triage Comms": { - "2024-12-01T00:00:00+02:00": 23862 - }, - "Secret Expiry Report": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Phishing Report Closure": { - "2024-12-01T00:00:00+02:00": 276 - } - } - }, - "656b003c666d47dc7d25648c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2434 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2434 - }, - "DayMessagesAuto": { - "2024-12-01T00:00:00+02:00": 35 - }, - "dailyWorkoutNotification": { - "2024-12-01T00:00:00+02:00": 2399 - } - } - }, - "662a58724b6cd9280bf5139d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 268 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 268 - }, - "post-status-update": { - "2024-12-01T00:00:00+02:00": 235 - }, - "System Notifications": { - "2024-12-01T00:00:00+02:00": 33 - } - } - }, - "65af69c5aeb88319ddace25a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55143 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55143 - }, - "Tasks Pending": { - "2024-12-01T00:00:00+02:00": 55143 - } - } - }, - "63a059f5bee1d5aed7e4d95c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1413 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1413 - }, - "Monitoring update": { - "2024-12-01T00:00:00+02:00": 35 - }, - "Pending Review": { - "2024-12-01T00:00:00+02:00": 60 - }, - "Verified Review": { - "2024-12-01T00:00:00+02:00": 93 - }, - "Account Activated": { - "2024-12-01T00:00:00+02:00": 74 - }, - "User Assigned to Account": { - "2024-12-01T00:00:00+02:00": 50 - }, - "Next KYC Review Date": { - "2024-12-01T00:00:00+02:00": 82 - }, - "Client Case Request updated": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Account Rejected": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Update Required": { - "2024-12-01T00:00:00+02:00": 15 - }, - "New application received documents": { - "2024-12-01T00:00:00+02:00": 16 - }, - "New Application": { - "2024-12-01T00:00:00+02:00": 971 - } - } - }, - "657312d2fd6a606fd6eaa203": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1277 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1277 - }, - "Invoice paid": { - "2024-12-01T00:00:00+02:00": 177 - }, - "Invoice due date expired": { - "2024-12-01T00:00:00+02:00": 476 - }, - "authorization": { - "2024-12-01T00:00:00+02:00": 64 - }, - "New User Created": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Payment received": { - "2024-12-01T00:00:00+02:00": 203 - }, - "Invoice partially paid": { - "2024-12-01T00:00:00+02:00": 93 - }, - "New invoice": { - "2024-12-01T00:00:00+02:00": 254 - } - } - }, - "643e8d58b6a53d8ae70721c2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21555 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21555 - }, - "On-boarding notification": { - "2024-12-01T00:00:00+02:00": 21555 - } - } - }, - "671bcf830ab03d9467221e9b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "in-app-notification": { - "2024-12-01T00:00:00+02:00": 318 - } - } - }, - "6523dfc76b6e9b692e5b79d6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 975 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 975 - }, - "Sale Notification": { - "2024-12-01T00:00:00+02:00": 975 - } - } - }, - "6571c58bfd6a606fd6c8f3f0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 296 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 296 - }, - "Invite employee": { - "2024-12-01T00:00:00+02:00": 296 - } - } - }, - "62fe5f8f227ab843d4272a38": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1488 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1488 - }, - "User email verification": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Canceled reschedule request of the mentor session event": { - "2024-12-01T00:00:00+02:00": 4 - }, - "mentor-session-created-to-lx": { - "2024-12-01T00:00:00+02:00": 125 - }, - "mentor-session-event-canceled": { - "2024-12-01T00:00:00+02:00": 30 - }, - "Learner postponement confirmation": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Reschedule cancelled event 2nd reminder": { - "2024-12-01T00:00:00+02:00": 54 - }, - "mentor-session-event-rescheduled": { - "2024-12-01T00:00:00+02:00": 360 - }, - "Send reset password email": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Mentor session created to learner": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Mentor Session Booking Request Accepted": { - "2024-12-01T00:00:00+02:00": 125 - }, - "Enrolled course member to DS Virgil": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Mentor session created to mentor": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Accepted reschedule request of the mentor session event": { - "2024-12-01T00:00:00+02:00": 316 - }, - "Mentor Session canceled": { - "2024-12-01T00:00:00+02:00": 40 - }, - "Expired The Mentor Session Event Reschedule Request": { - "2024-12-01T00:00:00+02:00": 8 - }, - "User account activation": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Enrolled course member to FTW Virgil": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Created reschedule request of the mentor session event": { - "2024-12-01T00:00:00+02:00": 160 - }, - "Mentor Session Booking Request created": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Reschedule cancelled event 1st reminder": { - "2024-12-01T00:00:00+02:00": 72 - }, - "Mentor session event batch rescheduled": { - "2024-12-01T00:00:00+02:00": 28 - } - } - }, - "6525396bae3f3225a9475db0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4870 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4870 - }, - "Space Appointment Update": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Challenge Keep Streak": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Challenge New Comment": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Welcome Email Series": { - "2024-12-01T00:00:00+02:00": 365 - }, - "Space Membership Invite Decline User": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Space Membership Invite Decline Admin": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Space Membership Invite": { - "2024-12-01T00:00:00+02:00": 567 - }, - "Space Membership Invite Approval User": { - "2024-12-01T00:00:00+02:00": 289 - }, - "Space Membership Request Approval User": { - "2024-12-01T00:00:00+02:00": 105 - }, - "Poll Updates": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Space Membership Invite Approval Admin": { - "2024-12-01T00:00:00+02:00": 492 - }, - "Space Appointment Creation": { - "2024-12-01T00:00:00+02:00": 384 - }, - "Space New Post": { - "2024-12-01T00:00:00+02:00": 494 - }, - "Challenge Level Up (Holi Quest)": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Post Comment Mention": { - "2024-12-01T00:00:00+02:00": 70 - }, - "Post Reactions": { - "2024-12-01T00:00:00+02:00": 612 - }, - "Space Membership Request Decline User": { - "2024-12-01T00:00:00+02:00": 141 - }, - "Space Membership Request Decline Admin": { - "2024-12-01T00:00:00+02:00": 246 - }, - "Challenge Approval": { - "2024-12-01T00:00:00+02:00": 53 - }, - "Space Membership Request": { - "2024-12-01T00:00:00+02:00": 538 - }, - "Post Comment Author": { - "2024-12-01T00:00:00+02:00": 132 - }, - "Comment Reactions": { - "2024-12-01T00:00:00+02:00": 96 - }, - "Space Membership Request Approval Admin": { - "2024-12-01T00:00:00+02:00": 152 - } - } - }, - "654fe30fc36c6d67b96de432": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2903 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2903 - }, - "Task Status change": { - "2024-12-01T00:00:00+02:00": 1014 - }, - "New Comment": { - "2024-12-01T00:00:00+02:00": 1566 - }, - "User assigned to task": { - "2024-12-01T00:00:00+02:00": 323 - } - } - }, - "652d210133aa2d8c68b1bea6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8115 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8115 - }, - "solicitacao-autorizacao": { - "2024-12-01T00:00:00+02:00": 3591 - }, - "solicitacao-criada": { - "2024-12-01T00:00:00+02:00": 3768 - }, - "solicitacao-rejeicao": { - "2024-12-01T00:00:00+02:00": 13 - }, - "solicitacao-conclusao": { - "2024-12-01T00:00:00+02:00": 743 - } - } - }, - "648c0658616db8f05a735ef4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1856 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1856 - }, - "notice-cancellation-reserved-service-employee": { - "2024-12-01T00:00:00+02:00": 6 - }, - "canceled-place-internal-reservation-in-app": { - "2024-12-01T00:00:00+02:00": 228 - }, - "internal-change-reservation-place-in-app": { - "2024-12-01T00:00:00+02:00": 107 - }, - "reservation-change-place-in-app": { - "2024-12-01T00:00:00+02:00": 21 - }, - "group-order": { - "2024-12-01T00:00:00+02:00": 8 - }, - "canceled-place-external-reservation-in-app": { - "2024-12-01T00:00:00+02:00": 6 - }, - "new-contact": { - "2024-12-01T00:00:00+02:00": 5 - }, - "reminder-reservation": { - "2024-12-01T00:00:00+02:00": 62 - }, - "notice-cancellation-reserved-service": { - "2024-12-01T00:00:00+02:00": 6 - }, - "reservation-change-place-for-client-in-app": { - "2024-12-01T00:00:00+02:00": 9 - }, - "reservation-change-client": { - "2024-12-01T00:00:00+02:00": 8 - }, - "internal-order-in-app": { - "2024-12-01T00:00:00+02:00": 872 - }, - "success-order": { - "2024-12-01T00:00:00+02:00": 38 - }, - "service-cancellation-form-no-schedule-client": { - "2024-12-01T00:00:00+02:00": 5 - }, - "internal-change-reservation-place": { - "2024-12-01T00:00:00+02:00": 59 - }, - "notify-place-cancelation-no-schedule-client": { - "2024-12-01T00:00:00+02:00": 5 - }, - "reservation-change-client-employee": { - "2024-12-01T00:00:00+02:00": 20 - }, - "success-deactivate-account": { - "2024-12-01T00:00:00+02:00": 5 - }, - "success-order-no-schedule-in-app": { - "2024-12-01T00:00:00+02:00": 12 - }, - "rate": { - "2024-12-01T00:00:00+02:00": 100 - }, - "notice-cancellation-reserved-service-employee-in-app": { - "2024-12-01T00:00:00+02:00": 12 - }, - "reservation-change-place": { - "2024-12-01T00:00:00+02:00": 8 - }, - "success-first-order-service": { - "2024-12-01T00:00:00+02:00": 61 - }, - "internal-order": { - "2024-12-01T00:00:00+02:00": 53 - }, - "place-new-reservation": { - "2024-12-01T00:00:00+02:00": 101 - }, - "Успешна поръчка на продукти": { - "2024-12-01T00:00:00+02:00": 4 - } - } - }, - "6721fd6e30d1c09960214146": { - "$overall": { - "2024-12-01T00:00:00+02:00": 819 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 819 - }, - "Competition Start": { - "2024-12-01T00:00:00+02:00": 29 - }, - "Battle Result": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Battle Request Accepted": { - "2024-12-01T00:00:00+02:00": 7 - }, - "New Achievements": { - "2024-12-01T00:00:00+02:00": 554 - }, - "Battle Event": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Transaction Event": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Battle Request": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Competition Event": { - "2024-12-01T00:00:00+02:00": 182 - } - } - }, - "654bab8b191027742aa28ec7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1841 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1841 - }, - "overdue-notification-warning-es": { - "2024-12-01T00:00:00+02:00": 8 - }, - "overdue-notification-es": { - "2024-12-01T00:00:00+02:00": 12 - }, - "sign-notification-en": { - "2024-12-01T00:00:00+02:00": 710 - }, - "sign-link-notification-es": { - "2024-12-01T00:00:00+02:00": 18 - }, - "all-signs-notification-es": { - "2024-12-01T00:00:00+02:00": 6 - }, - "fill-and-sign-link-notification-en": { - "2024-12-01T00:00:00+02:00": 9 - }, - "fill-link-notification-en": { - "2024-12-01T00:00:00+02:00": 222 - }, - "decline-notification-en": { - "2024-12-01T00:00:00+02:00": 85 - }, - "all-signs-notification-en": { - "2024-12-01T00:00:00+02:00": 180 - }, - "overdue-notification-warning-en": { - "2024-12-01T00:00:00+02:00": 43 - }, - "sign-link-notification-en": { - "2024-12-01T00:00:00+02:00": 542 - } - } - }, - "67463a802c32fe389fa61341": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1024 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1024 - }, - "alert-email-workflow": { - "2024-12-01T00:00:00+02:00": 128 - }, - "alert-inapp-workflow": { - "2024-12-01T00:00:00+02:00": 896 - } - } - }, - "66b3c633abc563f5ee1c4ffa": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4010 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4010 - }, - "notifyInMobile": { - "2024-12-01T00:00:00+02:00": 2723 - }, - "notifyInApp": { - "2024-12-01T00:00:00+02:00": 1287 - } - } - }, - "64197347da8256b93fd7bbb8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 956 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 956 - }, - "Borrow started": { - "2024-12-01T00:00:00+02:00": 245 - }, - "Return completed": { - "2024-12-01T00:00:00+02:00": 552 - }, - "Return station full": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Account Activation": { - "2024-12-01T00:00:00+02:00": 137 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Return station emptied": { - "2024-12-01T00:00:00+02:00": 9 - } - } - }, - "63cfe876ab8d9270851c178d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1018 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1018 - }, - "Application Confirmation": { - "2024-12-01T00:00:00+02:00": 60 - }, - "CVExport": { - "2024-12-01T00:00:00+02:00": 47 - }, - "Liked company opportunity or event notification": { - "2024-12-01T00:00:00+02:00": 880 - }, - "applicationDigest": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Application CV": { - "2024-12-01T00:00:00+02:00": 14 - } - } - }, - "6759b8ec6b43e4625123293e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 302 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 302 - }, - "trusk-low-battery-shift-end": { - "2024-12-01T00:00:00+02:00": 9 - }, - "create-driver-account": { - "2024-12-01T00:00:00+02:00": 11 - }, - "driver-charging-statement": { - "2024-12-01T00:00:00+02:00": 27 - }, - "returning-vehicle": { - "2024-12-01T00:00:00+02:00": 67 - }, - "charger-end-of-charge": { - "2024-12-01T00:00:00+02:00": 4 - }, - "password-reset": { - "2024-12-01T00:00:00+02:00": 13 - }, - "vehicle-link-request": { - "2024-12-01T00:00:00+02:00": 6 - }, - "vehicle-is-overcharging": { - "2024-12-01T00:00:00+02:00": 106 - }, - "in-depot-charge-interruption": { - "2024-12-01T00:00:00+02:00": 42 - }, - "trusk-low-battery-shift-start": { - "2024-12-01T00:00:00+02:00": 10 - } - } - }, - "6641cac9c4df36a9648c8dd5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6280 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6280 - }, - "Terminübersicht für den Tag": { - "2024-12-01T00:00:00+02:00": 81 - }, - "Terminoption erhalten": { - "2024-12-01T00:00:00+02:00": 662 - }, - "Anfrage von Hilfesuchenden zurückgezogen": { - "2024-12-01T00:00:00+02:00": 64 - }, - "Erwähnung im Kommentar": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Neue Nachricht": { - "2024-12-01T00:00:00+02:00": 904 - }, - "Statusänderung \"Erstgespräch\"": { - "2024-12-01T00:00:00+02:00": 135 - }, - "Anfrage versendet": { - "2024-12-01T00:00:00+02:00": 377 - }, - "Anfrage-Archivierung bei Inaktivität": { - "2024-12-01T00:00:00+02:00": 112 - }, - "Neue Therapieanfrage": { - "2024-12-01T00:00:00+02:00": 656 - }, - "Statusänderung \"Abgelehnt/Archiv\"": { - "2024-12-01T00:00:00+02:00": 45 - }, - "Statusänderung \"In Therapie\"": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Statusänderung \"Archiv\"": { - "2024-12-01T00:00:00+02:00": 24 - }, - "Termin von allen abgelehnt": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Begrüßungsnachricht": { - "2024-12-01T00:00:00+02:00": 358 - }, - "Anfrageaktualität und -bedarf bestätigen": { - "2024-12-01T00:00:00+02:00": 1572 - }, - "Erinnerung an Termin (einen Tag vorher)": { - "2024-12-01T00:00:00+02:00": 194 - }, - "Termin bestätigt": { - "2024-12-01T00:00:00+02:00": 232 - }, - "Statusänderung \"Warteliste\"": { - "2024-12-01T00:00:00+02:00": 116 - }, - "Automatisch Archivierung von inaktiven Anfragen": { - "2024-12-01T00:00:00+02:00": 165 - }, - "Termin abgesagt": { - "2024-12-01T00:00:00+02:00": 32 - }, - "User Invite": { - "2024-12-01T00:00:00+02:00": 6 - }, - "E-Mail Adresse bestätigen": { - "2024-12-01T00:00:00+02:00": 384 - }, - "Passwort zurücksetzen": { - "2024-12-01T00:00:00+02:00": 105 - } - } - }, - "66f19c98cf609b134304a0f6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1587 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1587 - }, - "work-order-status-change": { - "2024-12-01T00:00:00+02:00": 229 - }, - "payroll-workflow": { - "2024-12-01T00:00:00+02:00": 36 - }, - "comments-workflow": { - "2024-12-01T00:00:00+02:00": 1322 - } - } - }, - "63b6208e711db04e8129df6b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4510 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4510 - }, - "PT-aprobado": { - "2024-12-01T00:00:00+02:00": 320 - }, - "satisfaction-survey-new-response-with-comment": { - "2024-12-01T00:00:00+02:00": 6 - }, - "ergo-acciones-adecuacion": { - "2024-12-01T00:00:00+02:00": 6 - }, - "permiso antes de vencer": { - "2024-12-01T00:00:00+02:00": 117 - }, - "recordatorio master plan": { - "2024-12-01T00:00:00+02:00": 9 - }, - "acciones Incidentes": { - "2024-12-01T00:00:00+02:00": 35 - }, - "gestion de cambio revision": { - "2024-12-01T00:00:00+02:00": 6 - }, - "ehs-brigade-member-report": { - "2024-12-01T00:00:00+02:00": 39 - }, - "new-action-capa": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 30 - }, - "Permiso Vencido": { - "2024-12-01T00:00:00+02:00": 55 - }, - "dms-v2-machine-maintenance-completed": { - "2024-12-01T00:00:00+02:00": 34 - }, - "cierre de prealerta": { - "2024-12-01T00:00:00+02:00": 7 - }, - "send-password": { - "2024-12-01T00:00:00+02:00": 24 - }, - "ehs-chemical-spill-notification": { - "2024-12-01T00:00:00+02:00": 6 - }, - "conclusión y cierrre indicente": { - "2024-12-01T00:00:00+02:00": 6 - }, - "pt-comunicado-rechazo": { - "2024-12-01T00:00:00+02:00": 174 - }, - "permisos de trabajo extension de tiempo ehs": { - "2024-12-01T00:00:00+02:00": 268 - }, - "extensión de tiempo capa": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Extension Tiempo Permiso de Trabajo": { - "2024-12-01T00:00:00+02:00": 85 - }, - "permisos extensión de tiempo": { - "2024-12-01T00:00:00+02:00": 75 - }, - "dms-v2-machine-maintenance-started": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Nueva PreAlerta": { - "2024-12-01T00:00:00+02:00": 5 - }, - "gestion del cambio responsable": { - "2024-12-01T00:00:00+02:00": 5 - }, - "notificación de vencimiento del carné supervisor": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Pt-comunicacion-accion": { - "2024-12-01T00:00:00+02:00": 244 - }, - "masten plan recordatorio accion": { - "2024-12-01T00:00:00+02:00": 26 - }, - "COMPA entrega premios": { - "2024-12-01T00:00:00+02:00": 4 - }, - "asignación incidente": { - "2024-12-01T00:00:00+02:00": 31 - }, - "PT-Solicitud-Accion": { - "2024-12-01T00:00:00+02:00": 2055 - }, - "master plan accion tarde": { - "2024-12-01T00:00:00+02:00": 13 - }, - "dms-v2-laundry-weekly-report": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Permisos de trabajo inspección": { - "2024-12-01T00:00:00+02:00": 79 - }, - "Vencimiento de Acciones Capa": { - "2024-12-01T00:00:00+02:00": 16 - }, - "lockers-reservation-user": { - "2024-12-01T00:00:00+02:00": 5 - }, - "PT-Envio-Solicitud": { - "2024-12-01T00:00:00+02:00": 311 - }, - "Incidente Creado": { - "2024-12-01T00:00:00+02:00": 31 - }, - "lockers-reservation-admin": { - "2024-12-01T00:00:00+02:00": 6 - }, - "recordatorio gestion del cambio firmas tarde": { - "2024-12-01T00:00:00+02:00": 33 - }, - "visita-piso-Ergo": { - "2024-12-01T00:00:00+02:00": 9 - }, - "capa venimiento de accion": { - "2024-12-01T00:00:00+02:00": 85 - }, - "permiso que inician el día presente": { - "2024-12-01T00:00:00+02:00": 165 - } - } - }, - "66b1fe79aa4218d12657d85b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 853 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 853 - }, - "filemaster-in-app-workflow": { - "2024-12-01T00:00:00+02:00": 853 - } - } - }, - "64480a48771e7bed3dc3600e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3819 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3819 - }, - "Default - Censeo Referral": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Invitation to complete Censeo assessment": { - "2024-12-01T00:00:00+02:00": 3804 - }, - "send-report-email": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "666b875bb3464b7775f56472": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1312 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1312 - }, - "Only App": { - "2024-12-01T00:00:00+02:00": 188 - }, - "Notification in-app": { - "2024-12-01T00:00:00+02:00": 1124 - } - } - }, - "65129c6a87135ffdc368e7a3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1001 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1001 - }, - "AM complet": { - "2024-12-01T00:00:00+02:00": 23 - }, - "newOrderProductReturn": { - "2024-12-01T00:00:00+02:00": 61 - }, - "Rappel Action": { - "2024-12-01T00:00:00+02:00": 688 - }, - "commentaire Action": { - "2024-12-01T00:00:00+02:00": 29 - }, - "Nouvel AM": { - "2024-12-01T00:00:00+02:00": 66 - }, - "Nouvelle Action": { - "2024-12-01T00:00:00+02:00": 104 - }, - "Non-conformité": { - "2024-12-01T00:00:00+02:00": 24 - } - } - }, - "6439210da97b5d90d4874f30": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16592 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16592 - }, - "Bienvenue sur Yalink - Onboarding freelance": { - "2024-12-01T00:00:00+02:00": 343 - }, - "Dépôt de besoin - Accusé de réception": { - "2024-12-01T00:00:00+02:00": 87 - }, - "Nouveau statut de candidature": { - "2024-12-01T00:00:00+02:00": 86 - }, - "Bienvenue sur Yalink - Onboarding sans structure légale": { - "2024-12-01T00:00:00+02:00": 87 - }, - "Nouvelles opportunités publiées": { - "2024-12-01T00:00:00+02:00": 13671 - }, - "Envoi du devis au freelance": { - "2024-12-01T00:00:00+02:00": 131 - }, - "KYC rejeté : raison du refus": { - "2024-12-01T00:00:00+02:00": 13 - }, - "Refus de candidature": { - "2024-12-01T00:00:00+02:00": 349 - }, - "kyc document expiré.": { - "2024-12-01T00:00:00+02:00": 1457 - }, - "kyc document expiré dans 7 jours": { - "2024-12-01T00:00:00+02:00": 124 - }, - "Demande de recommendation": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Envoi du devis à un commercial Yalink": { - "2024-12-01T00:00:00+02:00": 131 - }, - "Nouveau ticket support": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Nouvelles expertises métiers disponibles": { - "2024-12-01T00:00:00+02:00": 50 - }, - "Profil présélectionné par Yalink - demande de devis": { - "2024-12-01T00:00:00+02:00": 38 - } - } - }, - "63cf21de42cfbce360219228": { - "$overall": { - "2024-12-01T00:00:00+02:00": 502 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 502 - }, - "Message notification": { - "2024-12-01T00:00:00+02:00": 457 - }, - "Order notification": { - "2024-12-01T00:00:00+02:00": 45 - } - } - }, - "63b3f614749085d8f285703a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7939 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7939 - }, - "Activity Created By Player": { - "2024-12-01T00:00:00+02:00": 7016 - }, - "Activity Reaction": { - "2024-12-01T00:00:00+02:00": 435 - }, - "Referral Signup": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Connection Request": { - "2024-12-01T00:00:00+02:00": 154 - }, - "Connection Accepted": { - "2024-12-01T00:00:00+02:00": 131 - }, - "Activity Comment Reply": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Activity Created On Behalf Of": { - "2024-12-01T00:00:00+02:00": 120 - }, - "Activity Comment": { - "2024-12-01T00:00:00+02:00": 36 - } - } - }, - "6671df91f4a238f107fe9f56": { - "$overall": { - "2024-12-01T00:00:00+02:00": 620 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 620 - }, - "Document Requests": { - "2024-12-01T00:00:00+02:00": 95 - }, - "Authentication - Combined (code + link)": { - "2024-12-01T00:00:00+02:00": 164 - }, - "In-App Notifications": { - "2024-12-01T00:00:00+02:00": 360 - } - } - }, - "66cde6ffcf609b13433bff6b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2098 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2098 - }, - "welcome-to-course": { - "2024-12-01T00:00:00+02:00": 1538 - }, - "welcome-to-book": { - "2024-12-01T00:00:00+02:00": 413 - }, - "welcome-to-plan": { - "2024-12-01T00:00:00+02:00": 147 - } - } - }, - "667abaa4218289a1c466b985": { - "$overall": { - "2024-12-01T00:00:00+02:00": 280 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 280 - }, - "ky": { - "2024-12-01T00:00:00+02:00": 280 - } - } - }, - "653ffc80c93cc0129ad126ab": { - "$overall": { - "2024-12-01T00:00:00+02:00": 294 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 294 - }, - "Account Threshold Notification": { - "2024-12-01T00:00:00+02:00": 111 - }, - "In-App notification": { - "2024-12-01T00:00:00+02:00": 183 - } - } - }, - "641d8c2fda8256b93f228fd0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31223 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31223 - }, - "notify-me-alerts": { - "2024-12-01T00:00:00+02:00": 125 - }, - "orders-delivered": { - "2024-12-01T00:00:00+02:00": 1724 - }, - "orders-canceledBy-seller": { - "2024-12-01T00:00:00+02:00": 7 - }, - "guest-quantity-update-cart": { - "2024-12-01T00:00:00+02:00": 1921 - }, - "returns-requested": { - "2024-12-01T00:00:00+02:00": 11 - }, - "user-product-deleted-from-cart": { - "2024-12-01T00:00:00+02:00": 392 - }, - "guest-cart-created": { - "2024-12-01T00:00:00+02:00": 6038 - }, - "orders-shipped": { - "2024-12-01T00:00:00+02:00": 1970 - }, - "guest-product-added-cart": { - "2024-12-01T00:00:00+02:00": 7460 - }, - "customer-signup": { - "2024-12-01T00:00:00+02:00": 136 - }, - "guest-product-deleted-from-cart": { - "2024-12-01T00:00:00+02:00": 7818 - }, - "product-added-cart": { - "2024-12-01T00:00:00+02:00": 182 - }, - "quantity-updated-cart": { - "2024-12-01T00:00:00+02:00": 166 - }, - "canceled-product-from-order": { - "2024-12-01T00:00:00+02:00": 5 - }, - "cart-created": { - "2024-12-01T00:00:00+02:00": 328 - }, - "order-placed": { - "2024-12-01T00:00:00+02:00": 2939 - } - } - }, - "646eaa72e0d0d1b39ac3b281": { - "$overall": { - "2024-12-01T00:00:00+02:00": 799 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 799 - }, - "Adm - General": { - "2024-12-01T00:00:00+02:00": 157 - }, - "Adm with CTA": { - "2024-12-01T00:00:00+02:00": 642 - } - } - }, - "66f0dd46cf609b13436885f5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42 - } - } - }, - "65d5e7fa2d8ee2bc1404fa0f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5278 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5278 - }, - "notify-company-admins-about-credits-from-super-admins": { - "2024-12-01T00:00:00+02:00": 19 - }, - "notify-employee-about-being-added-to-platform": { - "2024-12-01T00:00:00+02:00": 3439 - }, - "notify-employee-about-new-credit-balance": { - "2024-12-01T00:00:00+02:00": 660 - }, - "notify-company-admins-about-credits-assigned-to-one-employee": { - "2024-12-01T00:00:00+02:00": 1042 - }, - "notify-company-admins-about-removed-employee": { - "2024-12-01T00:00:00+02:00": 26 - }, - "notify-employee-about-using-credits": { - "2024-12-01T00:00:00+02:00": 12 - }, - "notify-company-admins-about-credits-assigned-to-bulk-employee": { - "2024-12-01T00:00:00+02:00": 8 - }, - "notify-company-admins-about-new-employee": { - "2024-12-01T00:00:00+02:00": 67 - } - } - }, - "65fbe3a58453b14f2f670e14": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5143 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5143 - }, - "Transaction Updates": { - "2024-12-01T00:00:00+02:00": 532 - }, - "Listing Change Slack Update": { - "2024-12-01T00:00:00+02:00": 187 - }, - "Deal Status Updates": { - "2024-12-01T00:00:00+02:00": 1004 - }, - "Transaction Slack Updates": { - "2024-12-01T00:00:00+02:00": 25 - }, - "New Member Updates": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Listing Detail Updates": { - "2024-12-01T00:00:00+02:00": 3317 - }, - "Deal Status Slack Updates": { - "2024-12-01T00:00:00+02:00": 62 - } - } - }, - "651fca9cb03ff038cef1c54f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2088 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2088 - }, - "Triggered - Pipeline Not Running": { - "2024-12-01T00:00:00+02:00": 259 - }, - "Recovery - Data in 30 Minutes": { - "2024-12-01T00:00:00+02:00": 549 - }, - "Source Actions": { - "2024-12-01T00:00:00+02:00": 113 - }, - "Recovery - Pipeline Is Running": { - "2024-12-01T00:00:00+02:00": 255 - }, - "Triggered - Pipeline Latency greater than 10 minutes": { - "2024-12-01T00:00:00+02:00": 37 - }, - "Triggered - No Data in 30 Minutes": { - "2024-12-01T00:00:00+02:00": 561 - }, - "Recovery - Pipeline Latency less than 10 minutes": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Pipeline Actions": { - "2024-12-01T00:00:00+02:00": 113 - }, - "Destination Actions": { - "2024-12-01T00:00:00+02:00": 165 - } - } - }, - "6673d3288b7329c353ad689d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1058 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1058 - }, - "web-notifications": { - "2024-12-01T00:00:00+02:00": 1058 - } - } - }, - "650c474042707458fe59f367": { - "$overall": { - "2024-12-01T00:00:00+02:00": 82022 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 82022 - }, - "requestlist-actorsaddedtoitem-v1-hipaa": { - "2024-12-01T00:00:00+02:00": 86 - }, - "requestlist-duedatereminders-v1-hipaa": { - "2024-12-01T00:00:00+02:00": 81936 - } - } - }, - "646f26388b0b51ed1734729b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13192 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13192 - }, - "Tasks": { - "2024-12-01T00:00:00+02:00": 7999 - }, - "timesheets-submission-reminder": { - "2024-12-01T00:00:00+02:00": 184 - }, - "Projects": { - "2024-12-01T00:00:00+02:00": 1835 - }, - "Timesheets": { - "2024-12-01T00:00:00+02:00": 3174 - } - } - }, - "64f0638825339d16c5d2738a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 535 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 535 - }, - "Comptes": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Absences": { - "2024-12-01T00:00:00+02:00": 359 - }, - "CET": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Transports": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Télétravail": { - "2024-12-01T00:00:00+02:00": 78 - }, - "Imputations": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Notes de frais": { - "2024-12-01T00:00:00+02:00": 31 - } - } - }, - "65f440088edf3eee31cf371b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 722 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 722 - }, - "Pagamentos": { - "2024-12-01T00:00:00+02:00": 722 - } - } - }, - "65df17f92b39eba95ab6ae95": { - "$overall": { - "2024-12-01T00:00:00+02:00": 466 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 466 - }, - "commentCreated": { - "2024-12-01T00:00:00+02:00": 208 - }, - "externalUserAddedToTask": { - "2024-12-01T00:00:00+02:00": 88 - }, - "externalUserCreatedAndAssigned": { - "2024-12-01T00:00:00+02:00": 7 - }, - "externalUserCreatedAndAddedToTask": { - "2024-12-01T00:00:00+02:00": 22 - }, - "externalAssigneeAdded": { - "2024-12-01T00:00:00+02:00": 22 - }, - "reviewerUpdated": { - "2024-12-01T00:00:00+02:00": 15 - }, - "assigneeUpdated": { - "2024-12-01T00:00:00+02:00": 20 - }, - "commentMentioned": { - "2024-12-01T00:00:00+02:00": 83 - } - } - }, - "653f9eeac93cc0129acf4bcb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23841 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23841 - }, - "Playlist: New song added": { - "2024-12-01T00:00:00+02:00": 16580 - }, - "Playlist: User joined": { - "2024-12-01T00:00:00+02:00": 3217 - }, - "Playlist: Invite": { - "2024-12-01T00:00:00+02:00": 1625 - }, - "Group Invite: Push": { - "2024-12-01T00:00:00+02:00": 504 - }, - "Group Invite: Email": { - "2024-12-01T00:00:00+02:00": 1314 - }, - "Group Invite: In-app": { - "2024-12-01T00:00:00+02:00": 523 - }, - "Playlist: Song added": { - "2024-12-01T00:00:00+02:00": 78 - } - } - }, - "6397389154ca30325edb6391": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3006 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3006 - }, - "Task_Status_Updated": { - "2024-12-01T00:00:00+02:00": 429 - }, - "Auth_Registration_Verification": { - "2024-12-01T00:00:00+02:00": 219 - }, - "Tenant_User_Created": { - "2024-12-01T00:00:00+02:00": 639 - }, - "Auth_Registration_Verified": { - "2024-12-01T00:00:00+02:00": 858 - }, - "Sampling_Ready_To_Review": { - "2024-12-01T00:00:00+02:00": 618 - }, - "Tenant_Created": { - "2024-12-01T00:00:00+02:00": 211 - }, - "Tenant_User_Updated": { - "2024-12-01T00:00:00+02:00": 26 - } - } - }, - "6669f5fec7f96cc1968787d9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16132 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16132 - }, - "filter-segment-materialize": { - "2024-12-01T00:00:00+02:00": 155 - }, - "file-download": { - "2024-12-01T00:00:00+02:00": 727 - }, - "comment-reply": { - "2024-12-01T00:00:00+02:00": 931 - }, - "collaborator-invite": { - "2024-12-01T00:00:00+02:00": 11083 - }, - "comment-mention": { - "2024-12-01T00:00:00+02:00": 3236 - } - } - }, - "64e46fc009b229a7c5c1735c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10779 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10779 - }, - "Simple_In_App": { - "2024-12-01T00:00:00+02:00": 5395 - }, - "Simple_Email": { - "2024-12-01T00:00:00+02:00": 5384 - } - } - }, - "67063d37ba6a0580bfccc7e3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1543 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1543 - }, - "welcome-email": { - "2024-12-01T00:00:00+02:00": 307 - }, - "payment-error": { - "2024-12-01T00:00:00+02:00": 96 - }, - "payment-success": { - "2024-12-01T00:00:00+02:00": 344 - }, - "aparkplus-accepted": { - "2024-12-01T00:00:00+02:00": 169 - }, - "aparkplus-refused": { - "2024-12-01T00:00:00+02:00": 73 - }, - "offstreet-stay-after-enter": { - "2024-12-01T00:00:00+02:00": 554 - } - } - }, - "65bb0ed1516fabd8520d5673": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1091 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1091 - }, - "inbox-thread-digest": { - "2024-12-01T00:00:00+02:00": 1091 - } - } - }, - "6593fa76f58e905ecac67a12": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15357 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15357 - }, - "IN_APP_NEW_LEVEL": { - "2024-12-01T00:00:00+02:00": 15357 - } - } - }, - "66a0f9f7f502999ed8453644": { - "$overall": { - "2024-12-01T00:00:00+02:00": 302 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 302 - }, - "Project Deletion Notifications": { - "2024-12-01T00:00:00+02:00": 103 - }, - "Payment Notifications": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Subscription canceled Notifications": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Subscription update Notifications": { - "2024-12-01T00:00:00+02:00": 15 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Project Creation Notifications": { - "2024-12-01T00:00:00+02:00": 121 - } - } - }, - "64011cb9841d0bacae01f6ff": { - "$overall": { - "2024-12-01T00:00:00+02:00": 470 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 470 - }, - "SMS Only": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Contractor Entry/Exit": { - "2024-12-01T00:00:00+02:00": 141 - }, - "General Messages With Buttons": { - "2024-12-01T00:00:00+02:00": 269 - }, - "Data Exception": { - "2024-12-01T00:00:00+02:00": 40 - } - } - }, - "651c209f8816295152811079": { - "$overall": { - "2024-12-01T00:00:00+02:00": 870 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 870 - }, - "Comment Created": { - "2024-12-01T00:00:00+02:00": 188 - }, - "Step Status Updated": { - "2024-12-01T00:00:00+02:00": 638 - }, - "Member Promoted": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Request Membership": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Step Assigned": { - "2024-12-01T00:00:00+02:00": 30 - } - } - }, - "6663404493a6b815ffefb2f0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 626081 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 626081 - }, - "Made effective": { - "2024-12-01T00:00:00+02:00": 341838 - }, - "Approval received": { - "2024-12-01T00:00:00+02:00": 39108 - }, - "Mentions": { - "2024-12-01T00:00:00+02:00": 54 - }, - "Review complete": { - "2024-12-01T00:00:00+02:00": 12595 - }, - "Approval request": { - "2024-12-01T00:00:00+02:00": 58995 - }, - "Approval complete": { - "2024-12-01T00:00:00+02:00": 12747 - }, - "Training assigned": { - "2024-12-01T00:00:00+02:00": 83929 - }, - "Suggestion added": { - "2024-12-01T00:00:00+02:00": 3388 - }, - "Change request": { - "2024-12-01T00:00:00+02:00": 893 - }, - "Editor assigned": { - "2024-12-01T00:00:00+02:00": 1506 - }, - "Approval declined": { - "2024-12-01T00:00:00+02:00": 4569 - }, - "Approvers updated": { - "2024-12-01T00:00:00+02:00": 124 - }, - "Action assigned": { - "2024-12-01T00:00:00+02:00": 3699 - }, - "Owner assigned": { - "2024-12-01T00:00:00+02:00": 11030 - }, - "Action completed": { - "2024-12-01T00:00:00+02:00": 1490 - }, - "Task Step completed": { - "2024-12-01T00:00:00+02:00": 3161 - }, - "New comment": { - "2024-12-01T00:00:00+02:00": 1569 - }, - "Review request": { - "2024-12-01T00:00:00+02:00": 45129 - }, - "Draft updated to latest template": { - "2024-12-01T00:00:00+02:00": 257 - } - } - }, - "63ff64e6f591ea2e097d64bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3331 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3331 - }, - "[SUPPLIER] Pricing payload created": { - "2024-12-01T00:00:00+02:00": 16 - }, - "[ADMIN] Company created": { - "2024-12-01T00:00:00+02:00": 161 - }, - "[USER] Direct Debit payment collection upcoming": { - "2024-12-01T00:00:00+02:00": 170 - }, - "[ADMIN] User created": { - "2024-12-01T00:00:00+02:00": 48 - }, - "[ADMIN] Site created": { - "2024-12-01T00:00:00+02:00": 214 - }, - "[ADMIN] Direct Debit payment collection upcoming": { - "2024-12-01T00:00:00+02:00": 165 - }, - "[Admin] Site contract created": { - "2024-12-01T00:00:00+02:00": 136 - }, - "[USER] Direct Debit mandate created": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[USER] Invoice Batch Released": { - "2024-12-01T00:00:00+02:00": 948 - }, - "[ADMIN] Utility Quote pricing failed": { - "2024-12-01T00:00:00+02:00": 332 - }, - "[ADMIN] User onboarding complete": { - "2024-12-01T00:00:00+02:00": 12 - }, - "[ADMIN] Account created": { - "2024-12-01T00:00:00+02:00": 155 - }, - "[USER] Site contract created": { - "2024-12-01T00:00:00+02:00": 105 - }, - "[BROKER] Quote CSV prepared": { - "2024-12-01T00:00:00+02:00": 736 - }, - "[USER] Contract start reminder": { - "2024-12-01T00:00:00+02:00": 105 - }, - "[ADMIN] Customer tender deadlines": { - "2024-12-01T00:00:00+02:00": 18 - } - } - }, - "6627ad47fe81f5c852ec1b6a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4131 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4131 - }, - "Toco Receive Notification": { - "2024-12-01T00:00:00+02:00": 292 - }, - "Community Post Reaction Created": { - "2024-12-01T00:00:00+02:00": 78 - }, - "Friend Signup": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Topup Notification": { - "2024-12-01T00:00:00+02:00": 51 - }, - "Community Member Invite Accepted": { - "2024-12-01T00:00:00+02:00": 6 - }, - "First Buy": { - "2024-12-01T00:00:00+02:00": 14 - }, - "First Receive": { - "2024-12-01T00:00:00+02:00": 19 - }, - "First Transfer": { - "2024-12-01T00:00:00+02:00": 24 - }, - "user_welcome": { - "2024-12-01T00:00:00+02:00": 54 - }, - "Kyc Success": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Community Member Invited": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Community Post Created": { - "2024-12-01T00:00:00+02:00": 3570 - } - } - }, - "652ea963fa315318e7925510": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1500 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1500 - }, - "Unread message digest": { - "2024-12-01T00:00:00+02:00": 746 - }, - "In-app notification": { - "2024-12-01T00:00:00+02:00": 754 - } - } - }, - "6680a87553d09da082d4fd31": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1851 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1851 - }, - "Overdue Purchase Orders": { - "2024-12-01T00:00:00+02:00": 420 - }, - "ecomm-quotes": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Items to order": { - "2024-12-01T00:00:00+02:00": 201 - }, - "Overdue Invoices": { - "2024-12-01T00:00:00+02:00": 1215 - } - } - }, - "66cf1c1bcf609b134337b496": { - "$overall": { - "2024-12-01T00:00:00+02:00": 572 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 572 - }, - "notion-mention-notification": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 226 - }, - "notion-comment-notification": { - "2024-12-01T00:00:00+02:00": 116 - }, - "notion-invite-notification": { - "2024-12-01T00:00:00+02:00": 115 - } - } - }, - "6742dd7d1bb91e63d914a510": { - "$overall": { - "2024-12-01T00:00:00+02:00": 571 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 571 - }, - "Habit Start": { - "2024-12-01T00:00:00+02:00": 301 - }, - "Check-in": { - "2024-12-01T00:00:00+02:00": 266 - } - } - }, - "6502ec79f39b9230da7cc89f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2408 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2408 - }, - "Entity onboarding reminder": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Onboarding completed": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Platform user invitation": { - "2024-12-01T00:00:00+02:00": 19 - }, - "Platform invite reminder": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Team Support Request": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Publish roadmap": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Business entity requested": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Doc Processing - Complete": { - "2024-12-01T00:00:00+02:00": 140 - }, - "Bundle verification reminder": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Doc Processing - Failed": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Business field updated": { - "2024-12-01T00:00:00+02:00": 399 - }, - "Entity access invitation": { - "2024-12-01T00:00:00+02:00": 1736 - } - } - }, - "64c94e80fc11bce407229550": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26569 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26569 - }, - "Query Success": { - "2024-12-01T00:00:00+02:00": 26569 - } - } - }, - "6687b6fe3069ddef14178411": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12973 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12973 - }, - "gbc": { - "2024-12-01T00:00:00+02:00": 2837 - }, - "gbcdelay": { - "2024-12-01T00:00:00+02:00": 10136 - } - } - }, - "6481d805720b54f89e143404": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1024 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1024 - }, - "LQI-score-change": { - "2024-12-01T00:00:00+02:00": 1024 - } - } - }, - "66621bc53a586fac83886829": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20094 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20094 - }, - "Alertas Incidentes Críticos": { - "2024-12-01T00:00:00+02:00": 12692 - }, - "Alertas Agentes Desconectados": { - "2024-12-01T00:00:00+02:00": 7402 - } - } - }, - "6684fd53e40a50735b55a981": { - "$overall": { - "2024-12-01T00:00:00+02:00": 897 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 897 - }, - "Welcome": { - "2024-12-01T00:00:00+02:00": 197 - }, - "Verification Code": { - "2024-12-01T00:00:00+02:00": 690 - } - } - }, - "6644fabbfbadc9d325d90248": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1371 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1371 - }, - "Enrollment notifications": { - "2024-12-01T00:00:00+02:00": 1141 - }, - "No scans notifications": { - "2024-12-01T00:00:00+02:00": 221 - }, - "Allocation notifications": { - "2024-12-01T00:00:00+02:00": 9 - } - } - }, - "63c8f9dd69a571f23a1f87d0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "Strategy Shutdown": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Paper Trade Placed": { - "2024-12-01T00:00:00+02:00": 4620 - } - } - }, - "647a49083a4ec8a5997fb67c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 210 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 210 - }, - "TransporterDriver": { - "2024-12-01T00:00:00+02:00": 141 - }, - "AddUserAdmin": { - "2024-12-01T00:00:00+02:00": 46 - }, - "AddUser": { - "2024-12-01T00:00:00+02:00": 22 - } - } - }, - "63d31df842cfbce360a1f91d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 544 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 544 - }, - "Listing Created": { - "2024-12-01T00:00:00+02:00": 43 - }, - "Listing Updated": { - "2024-12-01T00:00:00+02:00": 484 - }, - "Magic Link": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Listing Cancellation Request": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "64ecc8ef96eacf2243a91769": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23295 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23295 - }, - "Welcome admin": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Video in approval": { - "2024-12-01T00:00:00+02:00": 19181 - }, - "Chatbot daily knowledge base update": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Team invite": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Inbox reply scheduled": { - "2024-12-01T00:00:00+02:00": 238 - }, - "Video rejected": { - "2024-12-01T00:00:00+02:00": 50 - }, - "Task assignment": { - "2024-12-01T00:00:00+02:00": 1299 - }, - "Download video": { - "2024-12-01T00:00:00+02:00": 64 - }, - "Inbox reply hardcore": { - "2024-12-01T00:00:00+02:00": 2073 - }, - "Video or caption failed to upload (unknown story)": { - "2024-12-01T00:00:00+02:00": 31 - }, - "Campaign Live": { - "2024-12-01T00:00:00+02:00": 293 - } - } - }, - "66ce471dcf609b1343289560": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21002 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21002 - }, - "welcome-workflow": { - "2024-12-01T00:00:00+02:00": 20779 - }, - "referral-reward": { - "2024-12-01T00:00:00+02:00": 223 - } - } - }, - "64db6d7084fbabb0eef2e7a0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23550 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23550 - }, - "Quota Nearly Reached": { - "2024-12-01T00:00:00+02:00": 3423 - }, - "Quota Reached": { - "2024-12-01T00:00:00+02:00": 13626 - }, - "New Issue": { - "2024-12-01T00:00:00+02:00": 6501 - } - } - }, - "663d16aa34ea4ddc9b9f2f3d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 624 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 624 - }, - "Propertybook Workorder Update Notification": { - "2024-12-01T00:00:00+02:00": 150 - }, - "Send Altitude Link": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Run Daily Checklist Update Task": { - "2024-12-01T00:00:00+02:00": 29 - }, - "benvida checklist weekly batch": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Benvida Workorder Week Batch": { - "2024-12-01T00:00:00+02:00": 67 - }, - "PropertyBook Assigned Workorder Notification": { - "2024-12-01T00:00:00+02:00": 303 - }, - "ChatGPT Deactivation Notification": { - "2024-12-01T00:00:00+02:00": 37 - }, - "Propertybook Checklist Update": { - "2024-12-01T00:00:00+02:00": 15 - } - } - }, - "672e2335a197476669200759": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18073 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18073 - }, - "task-assignment": { - "2024-12-01T00:00:00+02:00": 17 - }, - "org-user-digest": { - "2024-12-01T00:00:00+02:00": 18056 - } - } - }, - "63eaaa4dd1a5554c97db1b86": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2492 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2492 - }, - "emergency": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Email Notification": { - "2024-12-01T00:00:00+02:00": 2480 - }, - "Forgot Password": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "65b03e6d7facd2ac9be61dc4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1076 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1076 - }, - "Statement report": { - "2024-12-01T00:00:00+02:00": 211 - }, - "New order": { - "2024-12-01T00:00:00+02:00": 222 - }, - "Filled": { - "2024-12-01T00:00:00+02:00": 208 - }, - "Cash order created": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Assigned": { - "2024-12-01T00:00:00+02:00": 195 - }, - "Booked": { - "2024-12-01T00:00:00+02:00": 117 - }, - "Settled": { - "2024-12-01T00:00:00+02:00": 113 - } - } - }, - "668708d194330132afefdfcc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3903 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3903 - }, - "digest-notification": { - "2024-12-01T00:00:00+02:00": 543 - }, - "conversation-notification-real-time": { - "2024-12-01T00:00:00+02:00": 3360 - } - } - }, - "64919f0eb5f1ae122b876762": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "Marketplace CRM Notifications": { - "2024-12-01T00:00:00+02:00": 915 - } - } - }, - "6635236c843a6a8496d4d38e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 303 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 303 - }, - "Reconciliation out of balance": { - "2024-12-01T00:00:00+02:00": 29 - }, - "Status Change": { - "2024-12-01T00:00:00+02:00": 274 - } - } - }, - "6414934fda8256b93f957df3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 316 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 316 - }, - "API Load Edit": { - "2024-12-01T00:00:00+02:00": 316 - } - } - }, - "66688112d05b953ba10ab594": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1244 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1244 - }, - "rebalance_execution_run_production": { - "2024-12-01T00:00:00+02:00": 1244 - } - } - }, - "63c7b1ddab8d9270851b219f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 341 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 341 - }, - "MP: Notifications for dispatchers for new sessions": { - "2024-12-01T00:00:00+02:00": 27 - }, - "New Booking Request notification to external Radiographer": { - "2024-12-01T00:00:00+02:00": 57 - }, - "Scanner KVM Edit Alert": { - "2024-12-01T00:00:00+02:00": 233 - }, - "warning-dev": { - "2024-12-01T00:00:00+02:00": 18 - } - } - }, - "65439145e3bcee0f76a5a368": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21388 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21388 - }, - "Neue Dateien hochgeladen": { - "2024-12-01T00:00:00+02:00": 21388 - } - } - }, - "659b604dbfebd8d8d51299ca": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3734 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3734 - }, - "pushnotificationstaging": { - "2024-12-01T00:00:00+02:00": 147 - }, - "pushnotificationprod": { - "2024-12-01T00:00:00+02:00": 3141 - }, - "pushnotificationdev": { - "2024-12-01T00:00:00+02:00": 444 - } - } - }, - "66437ce7b370e6b94e711d3c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 295 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 295 - }, - "[Active] app-order delivery status changed": { - "2024-12-01T00:00:00+02:00": 18 - }, - "[Active] Order placed": { - "2024-12-01T00:00:00+02:00": 30 - }, - "Your email has been changed": { - "2024-12-01T00:00:00+02:00": 247 - } - } - }, - "63a3be9fe0b58885ea9a25b0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 273 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 273 - }, - "Form additional timekeeping": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Form remote, unpaidleave, paidLeave": { - "2024-12-01T00:00:00+02:00": 209 - }, - "OTP_LOGIN": { - "2024-12-01T00:00:00+02:00": 46 - } - } - }, - "65a56e2e8e557ef0afd6f872": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2756 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2756 - }, - "client_workflow_new": { - "2024-12-01T00:00:00+02:00": 36 - }, - "tenant_project_update": { - "2024-12-01T00:00:00+02:00": 2720 - } - } - }, - "65f2f98b79ffb10acbce98c2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1365 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1365 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 5 - }, - "addedTo": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Sign up": { - "2024-12-01T00:00:00+02:00": 10 - }, - "co2Alarm": { - "2024-12-01T00:00:00+02:00": 64 - }, - "airTempAlarm": { - "2024-12-01T00:00:00+02:00": 994 - }, - "noDataAlarm": { - "2024-12-01T00:00:00+02:00": 105 - }, - "Batch Report": { - "2024-12-01T00:00:00+02:00": 180 - } - } - }, - "637daec62610c873786139a1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2954 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2954 - }, - "US_INCORPORATION_FILING": { - "2024-12-01T00:00:00+02:00": 7 - }, - "service_request_client_update_email": { - "2024-12-01T00:00:00+02:00": 165 - }, - "ACCOUNTING_FIRM_ADDED_TO_COMMENDA": { - "2024-12-01T00:00:00+02:00": 6 - }, - "BOI_INFORMATION_COLLECTION": { - "2024-12-01T00:00:00+02:00": 445 - }, - "USER_ADDED_TO_COMPANY": { - "2024-12-01T00:00:00+02:00": 50 - }, - "REVIEW_COMPLIANCE_CALENDAR_MEETING": { - "2024-12-01T00:00:00+02:00": 1124 - }, - "Untitled": { - "2024-12-01T00:00:00+02:00": 5 - }, - "SEND_EMAIL_TO_AUDITOR": { - "2024-12-01T00:00:00+02:00": 5 - }, - "sales_tax_monthly_reminder": { - "2024-12-01T00:00:00+02:00": 155 - }, - "GENERATED_SECURE_INFORMATION_REQUEST": { - "2024-12-01T00:00:00+02:00": 26 - }, - "ACCOUNTING_FIRM_ASSIGNED_TO_CORPORATION": { - "2024-12-01T00:00:00+02:00": 18 - }, - "THREADS_DIGEST_NOTIFICATION": { - "2024-12-01T00:00:00+02:00": 74 - }, - "BACKEND_NOTIFICATION": { - "2024-12-01T00:00:00+02:00": 863 - } - } - }, - "6413051f44e9291a6455e3e7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 477 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 477 - }, - "DashboardKPI Notifications": { - "2024-12-01T00:00:00+02:00": 477 - } - } - }, - "63bb02b5063f6d94cdf18ac9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4400 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4400 - }, - "Admin Reseting Password": { - "2024-12-01T00:00:00+02:00": 16 - }, - "On Site Time Completion": { - "2024-12-01T00:00:00+02:00": 1105 - }, - "visitSummary": { - "2024-12-01T00:00:00+02:00": 520 - }, - "PM Status Change": { - "2024-12-01T00:00:00+02:00": 1563 - }, - "resetPassword": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Basic Certification Reminder": { - "2024-12-01T00:00:00+02:00": 737 - }, - "Visit Assigned Bulk Mail": { - "2024-12-01T00:00:00+02:00": 119 - }, - "certification_expire": { - "2024-12-01T00:00:00+02:00": 287 - }, - "Project Assignment": { - "2024-12-01T00:00:00+02:00": 6 - }, - "welcome": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Cert Expire Digest": { - "2024-12-01T00:00:00+02:00": 18 - } - } - }, - "66d61e9dcf609b134368c516": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4165 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4165 - }, - "charge_receipt": { - "2024-12-01T00:00:00+02:00": 11 - }, - "expense_updated_for_uninvited_tenants": { - "2024-12-01T00:00:00+02:00": 6 - }, - "tenancy_variation_signed": { - "2024-12-01T00:00:00+02:00": 5 - }, - "applicant_shortlisted": { - "2024-12-01T00:00:00+02:00": 5 - }, - "new_enquiry_message": { - "2024-12-01T00:00:00+02:00": 1384 - }, - "confirmation_instructions": { - "2024-12-01T00:00:00+02:00": 59 - }, - "new_tenancy_request_property_manager_variant": { - "2024-12-01T00:00:00+02:00": 25 - }, - "bond_payment_due": { - "2024-12-01T00:00:00+02:00": 22 - }, - "share_with_owner": { - "2024-12-01T00:00:00+02:00": 23 - }, - "property_owner_tenancy_extended": { - "2024-12-01T00:00:00+02:00": 13 - }, - "bond_refund_tenancy_services": { - "2024-12-01T00:00:00+02:00": 7 - }, - "end_of_tenancy_processed": { - "2024-12-01T00:00:00+02:00": 23 - }, - "updated_tenant_expense": { - "2024-12-01T00:00:00+02:00": 44 - }, - "rent_payment_sent": { - "2024-12-01T00:00:00+02:00": 292 - }, - "renter_tenancy_confirmed": { - "2024-12-01T00:00:00+02:00": 4 - }, - "new_tenant_expense": { - "2024-12-01T00:00:00+02:00": 17 - }, - "rental_application_shortlisted": { - "2024-12-01T00:00:00+02:00": 16 - }, - "renter_tenancy_confirmed_property_management_variant": { - "2024-12-01T00:00:00+02:00": 18 - }, - "rental_application_accepted": { - "2024-12-01T00:00:00+02:00": 12 - }, - "listing_approved": { - "2024-12-01T00:00:00+02:00": 14 - }, - "applicant_added": { - "2024-12-01T00:00:00+02:00": 8 - }, - "user_edited_notice": { - "2024-12-01T00:00:00+02:00": 8 - }, - "awaiting_sign_offs": { - "2024-12-01T00:00:00+02:00": 95 - }, - "account_summary": { - "2024-12-01T00:00:00+02:00": 240 - }, - "rent_payment_received": { - "2024-12-01T00:00:00+02:00": 320 - }, - "time_confirmed_with_message": { - "2024-12-01T00:00:00+02:00": 54 - }, - "first_application_made": { - "2024-12-01T00:00:00+02:00": 7 - }, - "rent_split_set": { - "2024-12-01T00:00:00+02:00": 4 - }, - "close_reminder": { - "2024-12-01T00:00:00+02:00": 214 - }, - "tenancy_extension_confirmed": { - "2024-12-01T00:00:00+02:00": 68 - }, - "tenancy_request_accepted": { - "2024-12-01T00:00:00+02:00": 55 - }, - "daily_listing_matches": { - "2024-12-01T00:00:00+02:00": 78 - }, - "uninvited_tenant_variation_document": { - "2024-12-01T00:00:00+02:00": 12 - }, - "property_owner_tenancy_confirmed": { - "2024-12-01T00:00:00+02:00": 12 - }, - "tenancy_services_bond_filing": { - "2024-12-01T00:00:00+02:00": 18 - }, - "landlord_submitted_service_request": { - "2024-12-01T00:00:00+02:00": 9 - }, - "property_manager_tenancy_confirmed": { - "2024-12-01T00:00:00+02:00": 101 - }, - "new_chat_message": { - "2024-12-01T00:00:00+02:00": 330 - }, - "new_rental_application": { - "2024-12-01T00:00:00+02:00": 53 - }, - "send_request_to_property_owner": { - "2024-12-01T00:00:00+02:00": 4 - }, - "send_request_to_supplier": { - "2024-12-01T00:00:00+02:00": 36 - }, - "property_manager_tenancy_locked_in": { - "2024-12-01T00:00:00+02:00": 56 - }, - "rent_payment_overdue": { - "2024-12-01T00:00:00+02:00": 47 - }, - "billing_method_charge_failed": { - "2024-12-01T00:00:00+02:00": 63 - }, - "tenancy_in_arrears": { - "2024-12-01T00:00:00+02:00": 30 - }, - "landlord_has_signed": { - "2024-12-01T00:00:00+02:00": 16 - }, - "background_check_completed": { - "2024-12-01T00:00:00+02:00": 18 - }, - "tenancy_extension_added": { - "2024-12-01T00:00:00+02:00": 13 - }, - "inspection_completed": { - "2024-12-01T00:00:00+02:00": 39 - }, - "payment_remittance": { - "2024-12-01T00:00:00+02:00": 19 - }, - "tenancy_expiring": { - "2024-12-01T00:00:00+02:00": 21 - }, - "migrate_invite_accepted": { - "2024-12-01T00:00:00+02:00": 6 - }, - "job_completed": { - "2024-12-01T00:00:00+02:00": 8 - }, - "reset_password_instructions": { - "2024-12-01T00:00:00+02:00": 7 - }, - "maintenance_created_from_inspection": { - "2024-12-01T00:00:00+02:00": 54 - } - } - }, - "6537ebf5585a37886d9f05b5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7692 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7692 - }, - "Order Complete - Customer": { - "2024-12-01T00:00:00+02:00": 3650 - }, - "Order received - Promoter": { - "2024-12-01T00:00:00+02:00": 3650 - }, - "Event Release - Customers": { - "2024-12-01T00:00:00+02:00": 392 - } - } - }, - "656197541eb377d7c3b258a0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7555 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7555 - }, - "Notification Workflow": { - "2024-12-01T00:00:00+02:00": 7555 - } - } - }, - "665f80fe8e255032572549f2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 355 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 355 - }, - "Machine Down": { - "2024-12-01T00:00:00+02:00": 355 - } - } - }, - "648e433db5f1ae122b746d19": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2784 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2784 - }, - "general-notification": { - "2024-12-01T00:00:00+02:00": 2784 - } - } - }, - "63e9893f8ce4830a19151391": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2526 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2526 - }, - "Exit Location": { - "2024-12-01T00:00:00+02:00": 176 - }, - "Wrapup Email": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Entered Location": { - "2024-12-01T00:00:00+02:00": 152 - }, - "Weekly forgotten Items": { - "2024-12-01T00:00:00+02:00": 502 - }, - "List Updated": { - "2024-12-01T00:00:00+02:00": 1636 - }, - "Closed or Holiday Reminder": { - "2024-12-01T00:00:00+02:00": 45 - } - } - }, - "652d099361752f4c288defb9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 576 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 576 - }, - "Toppy | Return - Processing - In repair": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Toppy | Return - Approved - Pallet Pickup": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Toppy | Return - Requested - Requested": { - "2024-12-01T00:00:00+02:00": 202 - }, - "Toppy | Return - Completed - Repaired": { - "2024-12-01T00:00:00+02:00": 13 - }, - "Stocky | Purchase | Overdue": { - "2024-12-01T00:00:00+02:00": 41 - }, - "Toppy | Return - Completed - Replaced": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Toppy | Return - Approved - Label": { - "2024-12-01T00:00:00+02:00": 156 - }, - "Toppy | Return - Completed - Refunded Full": { - "2024-12-01T00:00:00+02:00": 113 - } - } - }, - "67444c602c32fe389fd89f54": { - "$overall": { - "2024-12-01T00:00:00+02:00": 608 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 608 - }, - "CampaignProductsStopped": { - "2024-12-01T00:00:00+02:00": 86 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4 - }, - "CampaignCategoriesBelowMinBid": { - "2024-12-01T00:00:00+02:00": 232 - }, - "CampaignKeywordsBelowMinBid": { - "2024-12-01T00:00:00+02:00": 286 - } - } - }, - "66b36aa7aa4218d12678f006": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "test-email-notification": { - "2024-12-01T00:00:00+02:00": 59 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 47 - }, - "ttya-journey-workflow-level-2": { - "2024-12-01T00:00:00+02:00": 15 - }, - "ttya-journey-workflow-level-1-inapp": { - "2024-12-01T00:00:00+02:00": 39 - }, - "ttya-journey-workflow-level-3": { - "2024-12-01T00:00:00+02:00": 32 - }, - "ttya-journey-workflow-level-1": { - "2024-12-01T00:00:00+02:00": 125 - }, - "ttya-journey-workflow-level-2-inapp": { - "2024-12-01T00:00:00+02:00": 9 - }, - "test-in-app-notification": { - "2024-12-01T00:00:00+02:00": 25 - } - } - }, - "64362dac4e5fea401a0f19af": { - "$overall": { - "2024-12-01T00:00:00+02:00": 53458 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 53458 - }, - "Partner - Appointment Reschedule": { - "2024-12-01T00:00:00+02:00": 1652 - }, - "Partner - Appointment Flex": { - "2024-12-01T00:00:00+02:00": 3088 - }, - "Partner - Paid Protocol": { - "2024-12-01T00:00:00+02:00": 1911 - }, - "Partner - Appointment Canceled": { - "2024-12-01T00:00:00+02:00": 2473 - }, - "Partner - Appointment": { - "2024-12-01T00:00:00+02:00": 44332 - } - } - }, - "6543a644e3126f05f0cad775": { - "$overall": { - "2024-12-01T00:00:00+02:00": 47972 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 47972 - }, - "Esign Invitation": { - "2024-12-01T00:00:00+02:00": 2123 - }, - "Notification": { - "2024-12-01T00:00:00+02:00": 45849 - } - } - }, - "66a5008b076eb7c94c1adb92": { - "$overall": { - "2024-12-01T00:00:00+02:00": 457 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 457 - }, - "contracts-update": { - "2024-12-01T00:00:00+02:00": 348 - }, - "progress-update": { - "2024-12-01T00:00:00+02:00": 109 - } - } - }, - "64d10e4220f4008b5df1e37a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1255 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1255 - }, - "Account Activity & Transactions": { - "2024-12-01T00:00:00+02:00": 1085 - }, - "User Signed Up": { - "2024-12-01T00:00:00+02:00": 140 - }, - "Rewards": { - "2024-12-01T00:00:00+02:00": 30 - } - } - }, - "6643b1e7fbadc9d325959e25": { - "$overall": { - "2024-12-01T00:00:00+02:00": 732 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 732 - }, - "Change Status": { - "2024-12-01T00:00:00+02:00": 247 - }, - "Add Sick Note": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Mental Health Campaing": { - "2024-12-01T00:00:00+02:00": 14 - }, - "New Appointment": { - "2024-12-01T00:00:00+02:00": 43 - }, - "Implantação": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Update Health Leader": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Alert Appointment Missing Register": { - "2024-12-01T00:00:00+02:00": 224 - }, - "Add Role": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Add Prescription": { - "2024-12-01T00:00:00+02:00": 54 - }, - "Alert Old Open Appointment": { - "2024-12-01T00:00:00+02:00": 59 - } - } - }, - "64e77d4b96eacf22439b13cd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 250 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 250 - }, - "push-email-notification": { - "2024-12-01T00:00:00+02:00": 84 - }, - "sms-workflow": { - "2024-12-01T00:00:00+02:00": 17 - }, - "payment-reminder-past": { - "2024-12-01T00:00:00+02:00": 45 - }, - "iapp-push-notification": { - "2024-12-01T00:00:00+02:00": 102 - } - } - }, - "638a3301ed1c4c44d2a58839": { - "$overall": { - "2024-12-01T00:00:00+02:00": 150900 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 150900 - }, - "AgOnline-ResetPassword": { - "2024-12-01T00:00:00+02:00": 487 - }, - "account-activation": { - "2024-12-01T00:00:00+02:00": 582 - }, - "appointments-next-day": { - "2024-12-01T00:00:00+02:00": 149806 - }, - "auth-code": { - "2024-12-01T00:00:00+02:00": 25 - } - } - }, - "66032532f43359bff28c011f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304678 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304678 - }, - "basepricenudge": { - "2024-12-01T00:00:00+02:00": 67670 - }, - "noteReminder": { - "2024-12-01T00:00:00+02:00": 78 - }, - "minpricenudge": { - "2024-12-01T00:00:00+02:00": 189450 - }, - "onetimenotification": { - "2024-12-01T00:00:00+02:00": 4 - }, - "AIRBNB CONNECTION": { - "2024-12-01T00:00:00+02:00": 42 - }, - "inqdequateminbaseprice": { - "2024-12-01T00:00:00+02:00": 4369 - }, - "NON HLP SMALL USERS LESS THAN 10 LISTINGS": { - "2024-12-01T00:00:00+02:00": 43065 - } - } - }, - "6423f39a2586c27b11d98d84": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42866 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42866 - }, - "therapistAdded": { - "2024-12-01T00:00:00+02:00": 51 - }, - "dailyDigestPatient": { - "2024-12-01T00:00:00+02:00": 12380 - }, - "passwordUpdated": { - "2024-12-01T00:00:00+02:00": 339 - }, - "affiliateAdded": { - "2024-12-01T00:00:00+02:00": 62 - }, - "recordTransferred": { - "2024-12-01T00:00:00+02:00": 138 - }, - "passwordReset": { - "2024-12-01T00:00:00+02:00": 400 - }, - "newOrganisation": { - "2024-12-01T00:00:00+02:00": 86 - }, - "changeEmail": { - "2024-12-01T00:00:00+02:00": 19 - }, - "signUpInvite": { - "2024-12-01T00:00:00+02:00": 7 - }, - "questionnaireReminder": { - "2024-12-01T00:00:00+02:00": 2003 - }, - "removedFromRecord": { - "2024-12-01T00:00:00+02:00": 39 - }, - "therapistDeleted": { - "2024-12-01T00:00:00+02:00": 20 - }, - "interactionReminder": { - "2024-12-01T00:00:00+02:00": 9225 - }, - "chatDigest": { - "2024-12-01T00:00:00+02:00": 4475 - }, - "activityAltered": { - "2024-12-01T00:00:00+02:00": 1439 - }, - "recordInvite": { - "2024-12-01T00:00:00+02:00": 1845 - }, - "changeEmailNotification": { - "2024-12-01T00:00:00+02:00": 19 - }, - "documentDigestPatient": { - "2024-12-01T00:00:00+02:00": 1733 - }, - "emailUpdated": { - "2024-12-01T00:00:00+02:00": 15 - }, - "enableTwoFactor": { - "2024-12-01T00:00:00+02:00": 355 - }, - "confirmIntake": { - "2024-12-01T00:00:00+02:00": 320 - }, - "loginCode": { - "2024-12-01T00:00:00+02:00": 5849 - }, - "documentDigestTherapist": { - "2024-12-01T00:00:00+02:00": 236 - }, - "dailyDigestTherapists": { - "2024-12-01T00:00:00+02:00": 1810 - } - } - }, - "64469b1b4919b8d7cbf845ef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8354 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8354 - }, - "[EN] External-Buy-Order Has Been Delivered": { - "2024-12-01T00:00:00+02:00": 51 - }, - "[TC] External-Quotations-Quotation Ready": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[EN] External-Concierge Consignment- Consignment Approved, Ready for Listing": { - "2024-12-01T00:00:00+02:00": 26 - }, - "[EN] External-Listing Live-Consignment Period Extended": { - "2024-12-01T00:00:00+02:00": 37 - }, - "[EN] External-Offers (Sell)-Offer Cancelled By Buyer": { - "2024-12-01T00:00:00+02:00": 18 - }, - "[EN] External-Concierge Consignment-Watch Received For Authentication": { - "2024-12-01T00:00:00+02:00": 69 - }, - "[EN] External-Quotation-New Quotation Submission Confirmation": { - "2024-12-01T00:00:00+02:00": 173 - }, - "[TC] External-Concierge Consignment-(IF DROP-OFF) Watch Delivery Confirmation": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[EN] External-Concierge Consignment-(IF DROP-OFF) Watch Delivery Confirmation": { - "2024-12-01T00:00:00+02:00": 74 - }, - "[EN] External-Offers (buy)-Your Offer Was Not Accepted": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[EN] External-Listing Live-Sales Listing Published": { - "2024-12-01T00:00:00+02:00": 28 - }, - "[EN] External-Offers (Sell)-Offer Accepted By The Buyer": { - "2024-12-01T00:00:00+02:00": 20 - }, - "External-Whitegolve-Consignemnt-Confirmation-Request": { - "2024-12-01T00:00:00+02:00": 5 - }, - "[EN] External-Concierge Consignment-(Reminder) Arrange Your Watch Delivery To Wristcheck": { - "2024-12-01T00:00:00+02:00": 75 - }, - "[EN] External-Collection-Collection Verification Status Updated: Verified": { - "2024-12-01T00:00:00+02:00": 64 - }, - "[EN] Internal-Buy-Internal: Order Placed": { - "2024-12-01T00:00:00+02:00": 1254 - }, - "[EN] External-Listing Live-Listing Price Update Confirmation": { - "2024-12-01T00:00:00+02:00": 17 - }, - "[Internal] Magic Link": { - "2024-12-01T00:00:00+02:00": 529 - }, - "[EN] External-Offers (buy)-You Have Received A Counteroffer!": { - "2024-12-01T00:00:00+02:00": 43 - }, - "[EN] External-Concierge Consignment-Watch Sold": { - "2024-12-01T00:00:00+02:00": 34 - }, - "[EN] External-Concierge Consignment-Reminder: Complete Consignment": { - "2024-12-01T00:00:00+02:00": 95 - }, - "[EN] External-Concierge Consignment-Consignment Ready: Arrange your watch delivery to Wristcheck": { - "2024-12-01T00:00:00+02:00": 75 - }, - "[EN] External-Offers (Sell)-Counter Offer Confirmation": { - "2024-12-01T00:00:00+02:00": 44 - }, - "[EN] Internal-Concierge Consignment-Internal: New Consignment": { - "2024-12-01T00:00:00+02:00": 88 - }, - "[EN] External-Offers (Sell)-Your counter offer was rejected": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[EN] External-Offers (buy)-Buyer No Response To A Offer Within 24 Hours": { - "2024-12-01T00:00:00+02:00": 43 - }, - "[TC] External-Collection-Watch Data Refreshed From Catalogue": { - "2024-12-01T00:00:00+02:00": 6 - }, - "[EN] External-Signup/Login-Verify Your Email Address": { - "2024-12-01T00:00:00+02:00": 1226 - }, - "[EN] External-Signup/Login-Account Verification Success": { - "2024-12-01T00:00:00+02:00": 644 - }, - "[EN] External-Buy-Order Confirmation (IF Pickup)": { - "2024-12-01T00:00:00+02:00": 145 - }, - "[EN] External-Offers (Sell)-Receive Offer From Bidder": { - "2024-12-01T00:00:00+02:00": 65 - }, - "[EN] External-Quotations-Quotation Ready": { - "2024-12-01T00:00:00+02:00": 162 - }, - "[EN] External-Offers (Sell)-Received Counteroffer From Buyer": { - "2024-12-01T00:00:00+02:00": 26 - }, - "[EN] External-Buy-You Have 24 Hours To Complete Your Payment": { - "2024-12-01T00:00:00+02:00": 11 - }, - "[EN] External-Collection-Watch Data Refreshed From Catalogue": { - "2024-12-01T00:00:00+02:00": 319 - }, - "[EN] External-Quotations-Reject Quotation/Consignment": { - "2024-12-01T00:00:00+02:00": 6 - }, - "[EN] External-Signup/Login-Account Creation (Admin Portal User Creation)": { - "2024-12-01T00:00:00+02:00": 30 - }, - "[EN] External-Buy-Order Confirmation (IF Delivery)": { - "2024-12-01T00:00:00+02:00": 479 - }, - "[EN] External-Listing (live)-Watch consignment period ending soon": { - "2024-12-01T00:00:00+02:00": 62 - }, - "[EN] External-Offers (buy)-Offer Accepted 24 Hours To Complete Payment": { - "2024-12-01T00:00:00+02:00": 20 - }, - "[EN] External-Buy-Confirmation of full payment": { - "2024-12-01T00:00:00+02:00": 595 - }, - "[EN] Internal-Quotations-Internal (Consignment Team): Quotation Approval": { - "2024-12-01T00:00:00+02:00": 178 - }, - "[TC] External-Quotation-New Quotation Submission Confirmation": { - "2024-12-01T00:00:00+02:00": 5 - }, - "[EN] External-Quotations-(Reminder) 3 days Quotation Ready": { - "2024-12-01T00:00:00+02:00": 162 - }, - "[EN] External-Concierge Consignment-Watch Under Authentication": { - "2024-12-01T00:00:00+02:00": 63 - }, - "[EN] External-Concierge Consignment-(IF SHIPPING) (Reminder) Provide Us With The Courier And Shipping Details": { - "2024-12-01T00:00:00+02:00": 21 - }, - "[EN] Internal-Quotations-Internal (Webops, Consignment): New Watch From Quotation": { - "2024-12-01T00:00:00+02:00": 17 - }, - "[EN] External-Concierge Consignment-New Consignment Created": { - "2024-12-01T00:00:00+02:00": 19 - }, - "[TC] External-Quotations-(Reminder) 3 days Quotation Ready": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[EN] Internal-Buy-Internal: Proof Of Payment Upload": { - "2024-12-01T00:00:00+02:00": 44 - }, - "[EN] External-Concierge Consignment-(Individual seller + Dealer) Watch Return to Consignor": { - "2024-12-01T00:00:00+02:00": 8 - }, - "[EN] External-Concierge Consignment-Watch Details Updated Confirmation": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Core Forget Password": { - "2024-12-01T00:00:00+02:00": 130 - }, - "[EN] External-Quotations-Quotation Expired": { - "2024-12-01T00:00:00+02:00": 50 - }, - "[EN] External-Buy-Order On Its Way": { - "2024-12-01T00:00:00+02:00": 437 - }, - "[TC] External-Concierge Consignment-Reminder: Complete Consignment": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[EN] External-Concierge Consignment-Watch Authentication Approved": { - "2024-12-01T00:00:00+02:00": 58 - }, - "[EN] External-Concierge Consignment-Reminder: Schedule your watch drop-off time": { - "2024-12-01T00:00:00+02:00": 32 - }, - "[EN] External-Buy-Confirmation of deposit payment": { - "2024-12-01T00:00:00+02:00": 14 - }, - "[EN] External-Concierge Consignment-Watch Authentication Rejected": { - "2024-12-01T00:00:00+02:00": 5 - }, - "[TC] External-Concierge Consignment-(IF DROP-OFF) (Reminder) Watch Delivery": { - "2024-12-01T00:00:00+02:00": 4 - }, - "[EN] External-Concierge Consignment-Consignment Expired Notification": { - "2024-12-01T00:00:00+02:00": 32 - }, - "[EN] External-Buy-Order Is Ready For Pickup": { - "2024-12-01T00:00:00+02:00": 86 - }, - "[EN] External-Signup/Login-Reset Password Successful": { - "2024-12-01T00:00:00+02:00": 61 - }, - "[EN] External-Offers (buy)-Thank You For Placing An Offer": { - "2024-12-01T00:00:00+02:00": 64 - }, - "[EN] External-Concierge Consignment-Seller Policy Accepted Confirmation": { - "2024-12-01T00:00:00+02:00": 17 - }, - "[EN] External-Concierge Consignment-(IF DROP-OFF) (Reminder) Watch Delivery": { - "2024-12-01T00:00:00+02:00": 74 - } - } - }, - "634826ed27d50dea0ba493f9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24907 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24907 - }, - "single message with url": { - "2024-12-01T00:00:00+02:00": 24907 - } - } - }, - "66432c55c4df36a964927b2c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42654 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42654 - }, - "user-registered-3099-default-deliver-one": { - "2024-12-01T00:00:00+02:00": 7 - }, - "cp-jet-one-to-many-344001-nc2427-deliver-one": { - "2024-12-01T00:00:00+02:00": 36706 - }, - "cp-mediashuttle-344001-nc2427-deliver-one": { - "2024-12-01T00:00:00+02:00": 5070 - }, - "delivery-ftp-3099-default-deliver-one": { - "2024-12-01T00:00:00+02:00": 32 - }, - "delivery-s3-3099-default-deliver-one": { - "2024-12-01T00:00:00+02:00": 16 - }, - "cp-mediashuttle-344001-nc2427-deliver-weekly-freq1": { - "2024-12-01T00:00:00+02:00": 6 - }, - "cp-jet-344001-nc2427-deliver-one": { - "2024-12-01T00:00:00+02:00": 438 - }, - "user-registered-1883004-main-deliver-one": { - "2024-12-01T00:00:00+02:00": 6 - }, - "cp-jet-one-to-many-344001-nc2427-error": { - "2024-12-01T00:00:00+02:00": 233 - }, - "cp-jet-1883004-main-deliver-one": { - "2024-12-01T00:00:00+02:00": 9 - }, - "user-registered-344001-nc2427-deliver-one": { - "2024-12-01T00:00:00+02:00": 48 - }, - "cp-jet-344001-nc2427-error": { - "2024-12-01T00:00:00+02:00": 13 - }, - "user-password-changed-344001-nc2427-deliver-one": { - "2024-12-01T00:00:00+02:00": 10 - }, - "user-password-requested-344001-nc2427-deliver-one": { - "2024-12-01T00:00:00+02:00": 16 - }, - "cp-mediashuttle-344001-nc2427-deliver-daily-freq3": { - "2024-12-01T00:00:00+02:00": 6 - }, - "cp-mediashuttle-3099-default-deliver-one": { - "2024-12-01T00:00:00+02:00": 9 - }, - "delivery-s3-1883004-main-deliver-one": { - "2024-12-01T00:00:00+02:00": 17 - } - } - }, - "65537ecc00c55a508c06f6ce": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4925 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4925 - }, - "New order notification": { - "2024-12-01T00:00:00+02:00": 4925 - } - } - }, - "65e5c6dde5b9e5a88a318d93": { - "$overall": { - "2024-12-01T00:00:00+02:00": 697 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 697 - }, - "Dataset Notification": { - "2024-12-01T00:00:00+02:00": 697 - } - } - }, - "65af718b8e557ef0af46f7c0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9203 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9203 - }, - "User Account": { - "2024-12-01T00:00:00+02:00": 139 - }, - "Approval Request Status": { - "2024-12-01T00:00:00+02:00": 195 - }, - "Set Password": { - "2024-12-01T00:00:00+02:00": 19 - }, - "otp": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Order Canceled": { - "2024-12-01T00:00:00+02:00": 835 - }, - "Request Create": { - "2024-12-01T00:00:00+02:00": 1097 - }, - "Notify Merchant With Request Create": { - "2024-12-01T00:00:00+02:00": 84 - }, - "OTP": { - "2024-12-01T00:00:00+02:00": 100 - }, - "Order Update": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Return Order": { - "2024-12-01T00:00:00+02:00": 422 - }, - "Order Create": { - "2024-12-01T00:00:00+02:00": 6159 - }, - "Order Packed": { - "2024-12-01T00:00:00+02:00": 28 - }, - "payment": { - "2024-12-01T00:00:00+02:00": 24 - }, - "Return Order status Update": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Order Placed": { - "2024-12-01T00:00:00+02:00": 55 - } - } - }, - "6578af0c7500743a91038c4b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 400 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 400 - }, - "Default": { - "2024-12-01T00:00:00+02:00": 400 - } - } - }, - "64e3554548249e7e76aeffc3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3126 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3126 - }, - "On-boarding notification": { - "2024-12-01T00:00:00+02:00": 335 - }, - "Email Approvals Pending": { - "2024-12-01T00:00:00+02:00": 44 - }, - "Pending Email Approvals for 5 days": { - "2024-12-01T00:00:00+02:00": 127 - }, - "Scheduled Sequence is Started": { - "2024-12-01T00:00:00+02:00": 233 - }, - "Link in Email Clicked": { - "2024-12-01T00:00:00+02:00": 696 - }, - "Bulk Email Sender Re-Connect": { - "2024-12-01T00:00:00+02:00": 358 - }, - "Bulk Email Sender Upload Complete": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Reply Recieved": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Email List Verification is Complete": { - "2024-12-01T00:00:00+02:00": 42 - }, - "Email Sender has error": { - "2024-12-01T00:00:00+02:00": 1181 - }, - "Scheduled Sequence all Emails Sent & Tasks Complete": { - "2024-12-01T00:00:00+02:00": 64 - }, - "Deleting Empty List": { - "2024-12-01T00:00:00+02:00": 8 - } - } - }, - "65c17ff93086d5972f17c2d0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 766 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 766 - }, - "Issues updated": { - "2024-12-01T00:00:00+02:00": 312 - }, - "New comments on issues": { - "2024-12-01T00:00:00+02:00": 54 - }, - "New issues created": { - "2024-12-01T00:00:00+02:00": 314 - }, - "Issues assigned to me": { - "2024-12-01T00:00:00+02:00": 61 - }, - "Comments I'm mentioned in": { - "2024-12-01T00:00:00+02:00": 23 - } - } - }, - "63fbb0118920eed9471fa1b2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 645 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 645 - }, - "Intern Test": { - "2024-12-01T00:00:00+02:00": 111 - }, - "Workflow Notification": { - "2024-12-01T00:00:00+02:00": 532 - } - } - }, - "644a988e631887e5f000dae6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7272 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7272 - }, - "failed-outreach": { - "2024-12-01T00:00:00+02:00": 6224 - }, - "Product Created": { - "2024-12-01T00:00:00+02:00": 1048 - } - } - }, - "668d398684227ca750502c57": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31000 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31000 - }, - "Torneo in partenza": { - "2024-12-01T00:00:00+02:00": 4820 - }, - "New Client for Affiliate": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Torneo iniziato": { - "2024-12-01T00:00:00+02:00": 6690 - }, - "Torneo terminato": { - "2024-12-01T00:00:00+02:00": 6612 - }, - "Account affiliato approvato": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Nuova transazione": { - "2024-12-01T00:00:00+02:00": 3929 - }, - "Welcome To Tralent Bonus": { - "2024-12-01T00:00:00+02:00": 516 - }, - "Tournament Subscription Confirmed": { - "2024-12-01T00:00:00+02:00": 1998 - }, - "Welcome To Tralent": { - "2024-12-01T00:00:00+02:00": 76 - }, - "Tournament Unjoin": { - "2024-12-01T00:00:00+02:00": 90 - }, - "Torneo in scadenza": { - "2024-12-01T00:00:00+02:00": 5297 - }, - "KYC Status": { - "2024-12-01T00:00:00+02:00": 944 - } - } - }, - "648079c03a4ec8a5999d3eb1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 299 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 299 - }, - "New Record Notification": { - "2024-12-01T00:00:00+02:00": 299 - } - } - }, - "6685216144e8f8b477105e38": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2916 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2916 - }, - "TATA GCM Push": { - "2024-12-01T00:00:00+02:00": 2915 - } - } - }, - "64e32ac81e192345f283d627": { - "$overall": { - "2024-12-01T00:00:00+02:00": 844 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 844 - }, - "Password Changed": { - "2024-12-01T00:00:00+02:00": 5 - }, - "User Registered": { - "2024-12-01T00:00:00+02:00": 76 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Publisher Channels Disconnected": { - "2024-12-01T00:00:00+02:00": 119 - }, - "Campaign Deactivated": { - "2024-12-01T00:00:00+02:00": 100 - }, - "Publisher Not Active": { - "2024-12-01T00:00:00+02:00": 186 - }, - "Semi-Open Campaign Rejected": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Task Acceptance Requested": { - "2024-12-01T00:00:00+02:00": 25 - }, - "Closed Campaign Approved (advertiser)": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Closed Campaign Approved (influencer)": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Channel Force Disconnected": { - "2024-12-01T00:00:00+02:00": 221 - }, - "Publisher Activated": { - "2024-12-01T00:00:00+02:00": 67 - } - } - }, - "63fa339af93b4fa85aac153d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 486 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 486 - }, - "On-boarding notification": { - "2024-12-01T00:00:00+02:00": 486 - } - } - }, - "652e5833fff93419480c951b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146377 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146377 - }, - "Notification Laravel Stocklear": { - "2024-12-01T00:00:00+02:00": 146377 - } - } - }, - "646f08088b0b51ed17340c31": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18491 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18491 - }, - "ADHOC Notification Template": { - "2024-12-01T00:00:00+02:00": 17393 - }, - "Admin Notification": { - "2024-12-01T00:00:00+02:00": 432 - }, - "New Admin Chat Message": { - "2024-12-01T00:00:00+02:00": 351 - }, - "New task launched": { - "2024-12-01T00:00:00+02:00": 315 - } - } - }, - "665f34e28e2550325700cda9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "Followers": { - "2024-12-01T00:00:00+02:00": 318 - } - } - }, - "64c1760e3ec3e6a351ea3ba1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 707 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 707 - }, - "seed calculated": { - "2024-12-01T00:00:00+02:00": 707 - } - } - }, - "669d47da98a7c2cace1dea46": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304 - }, - "kpi-updates": { - "2024-12-01T00:00:00+02:00": 5 - }, - "task-updates": { - "2024-12-01T00:00:00+02:00": 14 - }, - "initiative-updates": { - "2024-12-01T00:00:00+02:00": 270 - }, - "kpi-target-updates": { - "2024-12-01T00:00:00+02:00": 15 - } - } - }, - "63b4a3edc2c62a5b4b374cc6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 583 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 583 - }, - "Content Published": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Invoice Status Updated": { - "2024-12-01T00:00:00+02:00": 189 - }, - "Content Approved": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Offer Accepted": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Offer Sent": { - "2024-12-01T00:00:00+02:00": 43 - }, - "Collaboration Message Added": { - "2024-12-01T00:00:00+02:00": 62 - }, - "Invoice Sent": { - "2024-12-01T00:00:00+02:00": 47 - }, - "Contact Added": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Content Message Added": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Contract Signature Reminded": { - "2024-12-01T00:00:00+02:00": 74 - }, - "Payout Deposit Updated": { - "2024-12-01T00:00:00+02:00": 55 - } - } - }, - "65ce436d99b1dce753411d4a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "Asset Notifications": { - "2024-12-01T00:00:00+02:00": 746 - } - } - }, - "6568b37faa67fd979c0b94d8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 326 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 326 - }, - "Elevator Price Alert": { - "2024-12-01T00:00:00+02:00": 326 - } - } - }, - "6314b4eb232b8996aaa4c9bc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2942 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2942 - }, - "impact-level": { - "2024-12-01T00:00:00+02:00": 626 - }, - "reminder": { - "2024-12-01T00:00:00+02:00": 70 - }, - "generic": { - "2024-12-01T00:00:00+02:00": 1273 - }, - "welcome": { - "2024-12-01T00:00:00+02:00": 973 - } - } - }, - "64fb853287135ffdc3b410ec": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4040 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4040 - }, - "New Voicemail": { - "2024-12-01T00:00:00+02:00": 458 - }, - "New SMS": { - "2024-12-01T00:00:00+02:00": 2501 - }, - "new-missed-call": { - "2024-12-01T00:00:00+02:00": 1081 - } - } - }, - "65f8f7959343b5be34ab729c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12792 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12792 - }, - "meo": { - "2024-12-01T00:00:00+02:00": 6502 - }, - "Open asset": { - "2024-12-01T00:00:00+02:00": 6290 - } - } - }, - "6433d2fc6e1e72f63f63b5fe": { - "$overall": { - "2024-12-01T00:00:00+02:00": 40483 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 40483 - }, - "Sign up email verification": { - "2024-12-01T00:00:00+02:00": 476 - }, - "AAA_SHARE_SECTION": { - "2024-12-01T00:00:00+02:00": 46 - }, - "AAA_PAGE_VIEW": { - "2024-12-01T00:00:00+02:00": 11391 - }, - "AAA_PAGE_VIEW_BLOCKED": { - "2024-12-01T00:00:00+02:00": 1880 - }, - "AAA_INTERNAL_USERS_ONBOARDING": { - "2024-12-01T00:00:00+02:00": 2889 - }, - "AAA_COMMENT": { - "2024-12-01T00:00:00+02:00": 6 - }, - "AAA_INVITE_PROSPECTS": { - "2024-12-01T00:00:00+02:00": 10289 - }, - "Payment Failed internal": { - "2024-12-01T00:00:00+02:00": 81 - }, - "Someone email update permissions": { - "2024-12-01T00:00:00+02:00": 7131 - }, - "Request Room": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Send reset password email": { - "2024-12-01T00:00:00+02:00": 114 - }, - "Auto-approve Pending-Approval users": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Invite Account Accept Increase Room": { - "2024-12-01T00:00:00+02:00": 26 - }, - "AAA_ARCHIVE_ROOM_VISIT": { - "2024-12-01T00:00:00+02:00": 208 - }, - "AAA_ACCOUNT_ACCEPT_INVITATION": { - "2024-12-01T00:00:00+02:00": 240 - }, - "AAA_OWNER_APPROVAL_USER": { - "2024-12-01T00:00:00+02:00": 56 - }, - "AAA_ACCOUNT_REINVITE_USER": { - "2024-12-01T00:00:00+02:00": 224 - }, - "AAA_ROOM_DUPLICATION": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Room Deleted By Admin": { - "2024-12-01T00:00:00+02:00": 47 - }, - "AAA_EMAIL_VERIFICATION": { - "2024-12-01T00:00:00+02:00": 240 - }, - "AAA_COMMENT_WITH_REPLAY": { - "2024-12-01T00:00:00+02:00": 2925 - }, - "AAA_ROOM_COLLABORATION": { - "2024-12-01T00:00:00+02:00": 463 - }, - "AAA_INVITE_PROSPECTS_REMINDER": { - "2024-12-01T00:00:00+02:00": 800 - }, - "AAA_ACCOUNT_INVITE_USER": { - "2024-12-01T00:00:00+02:00": 443 - }, - "AAA_OVERDUE_TASK": { - "2024-12-01T00:00:00+02:00": 133 - }, - "AAA_NUDGE_BUYER": { - "2024-12-01T00:00:00+02:00": 62 - }, - "CallToAction section Buyer Reply": { - "2024-12-01T00:00:00+02:00": 110 - }, - "Account Plan Canceled": { - "2024-12-01T00:00:00+02:00": 43 - }, - "AAA_NOTIFY_ASSIGN": { - "2024-12-01T00:00:00+02:00": 32 - }, - "AAA_OWNER_APPROVED_USER": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Payment Failed": { - "2024-12-01T00:00:00+02:00": 59 - } - } - }, - "66cedf34cf609b134361bfa7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "generic-push": { - "2024-12-01T00:00:00+02:00": 4626 - } - } - }, - "660b31f5b551758561fb037c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 370758 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 370758 - }, - "requestlist-duedatereminders-v1": { - "2024-12-01T00:00:00+02:00": 366052 - }, - "requestlist-actorsaddedtoitem-v1": { - "2024-12-01T00:00:00+02:00": 4706 - } - } - }, - "66b9e7e99c11077f0298542c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "assignee-added-in-defect": { - "2024-12-01T00:00:00+02:00": 56 - }, - "jobs-notification": { - "2024-12-01T00:00:00+02:00": 318 - } - } - }, - "65e0b87e3a2387ff89a82beb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 705 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 705 - }, - "trigger-in-app": { - "2024-12-01T00:00:00+02:00": 291 - }, - "Sign In": { - "2024-12-01T00:00:00+02:00": 414 - } - } - }, - "65887da2f14b6f3ef002d584": { - "$overall": { - "2024-12-01T00:00:00+02:00": 739 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 739 - }, - "success": { - "2024-12-01T00:00:00+02:00": 739 - } - } - }, - "654eb4b8d71fd8620c6d174e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9821 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9821 - }, - "Transport Order Delivered": { - "2024-12-01T00:00:00+02:00": 597 - }, - "Special Order At Warehouse": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Transport Order Scheduled": { - "2024-12-01T00:00:00+02:00": 158 - }, - "Special Order Created": { - "2024-12-01T00:00:00+02:00": 3443 - }, - "Outbound Order Staged": { - "2024-12-01T00:00:00+02:00": 1622 - }, - "Inbound Order Appt Late": { - "2024-12-01T00:00:00+02:00": 467 - }, - "Special Order Delivered": { - "2024-12-01T00:00:00+02:00": 48 - }, - "Transport Order At Warehouse": { - "2024-12-01T00:00:00+02:00": 191 - }, - "Outbound Order Appt Late": { - "2024-12-01T00:00:00+02:00": 425 - }, - "Outbound Order Appt Booked": { - "2024-12-01T00:00:00+02:00": 251 - }, - "Outbound Order Ship Qty Discrepancy": { - "2024-12-01T00:00:00+02:00": 24 - }, - "Inbound Order Created": { - "2024-12-01T00:00:00+02:00": 138 - }, - "Outbound Order Created": { - "2024-12-01T00:00:00+02:00": 1655 - }, - "Inbound Order Appt Booked": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Special Order Out For Delivery": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Transport Order Canceled": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Outbound Order Ship Date Passed": { - "2024-12-01T00:00:00+02:00": 750 - } - } - }, - "64d37f84045bf0282da7b498": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3184 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3184 - }, - "Notifications: upvote": { - "2024-12-01T00:00:00+02:00": 5 - }, - "One off meeting cancelled": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Package Bought Mentor": { - "2024-12-01T00:00:00+02:00": 144 - }, - "Webinar: Daily Analytics for Mentor": { - "2024-12-01T00:00:00+02:00": 24 - }, - "Package Bought Mentee": { - "2024-12-01T00:00:00+02:00": 142 - }, - "Auth: User Verification": { - "2024-12-01T00:00:00+02:00": 2269 - }, - "One-Off Meeting: Payment link Mentee": { - "2024-12-01T00:00:00+02:00": 588 - } - } - }, - "6593f529f58e905ecac5cf4b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18210 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18210 - }, - "Add Beneficiary": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Payment Rejected": { - "2024-12-01T00:00:00+02:00": 3233 - }, - "Bulk Payment Request Approval": { - "2024-12-01T00:00:00+02:00": 59 - }, - "Exchange Failed": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Payment Request Status": { - "2024-12-01T00:00:00+02:00": 163 - }, - "Outbound Notification": { - "2024-12-01T00:00:00+02:00": 2433 - }, - "verification-code": { - "2024-12-01T00:00:00+02:00": 61 - }, - "Bulk Payment Request": { - "2024-12-01T00:00:00+02:00": 651 - }, - "Daily Balance": { - "2024-12-01T00:00:00+02:00": 5086 - }, - "Daily Balance Summary": { - "2024-12-01T00:00:00+02:00": 1210 - }, - "Update Beneficiary": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Send Email Credentials": { - "2024-12-01T00:00:00+02:00": 26 - }, - "Access Persona Granted": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Inbound Notification": { - "2024-12-01T00:00:00+02:00": 4338 - }, - "Payment Request": { - "2024-12-01T00:00:00+02:00": 805 - }, - "Exchange Pending": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Welcome Email": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Exchange Completed": { - "2024-12-01T00:00:00+02:00": 35 - }, - "Account Closure": { - "2024-12-01T00:00:00+02:00": 10 - } - } - }, - "65f9e3b139829e6c76826cb5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 552563 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 552563 - }, - "Visit starting": { - "2024-12-01T00:00:00+02:00": 19088 - }, - "Late Clock In - Office": { - "2024-12-01T00:00:00+02:00": 518877 - }, - "Late Clock Out - Visitor": { - "2024-12-01T00:00:00+02:00": 1812 - }, - "Message Sent": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Late Clock In - Visitor": { - "2024-12-01T00:00:00+02:00": 12776 - } - } - }, - "62a0b9433de29f001cb6626f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2812 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2812 - }, - "Place 1st Order": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Resupply EOY Push 2024 Communications": { - "2024-12-01T00:00:00+02:00": 380 - }, - "Resupply Order Request Confirmation": { - "2024-12-01T00:00:00+02:00": 131 - }, - "hq-initial-email-betterconcierge": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Medical Records Approved": { - "2024-12-01T00:00:00+02:00": 4 - }, - "initial HQ reminder sms": { - "2024-12-01T00:00:00+02:00": 510 - }, - "Follow-up-HQ-initial": { - "2024-12-01T00:00:00+02:00": 455 - }, - "PS Session no show - reschedule confirmation & assist": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Post Peer Support Session feedback - reminder": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Overutilization Paperwork Needed": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Samples Request - Triggered via Awell": { - "2024-12-01T00:00:00+02:00": 8 - }, - "HQ initial email": { - "2024-12-01T00:00:00+02:00": 11 - }, - "ABN (Advance Beneficiary Notice) Needed": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Standard Written Order (SWO) Accepted": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Post Peer Support - Alliance and CSAT": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Wound Care Evaluation Needed": { - "2024-12-01T00:00:00+02:00": 7 - }, - "5th-day-HQ-reminder": { - "2024-12-01T00:00:00+02:00": 440 - }, - "Day3 HQ reminder - email": { - "2024-12-01T00:00:00+02:00": 454 - }, - "1st Email (All except E-commerce Transaction)": { - "2024-12-01T00:00:00+02:00": 196 - }, - "Resupply V2 Reminder Email (-1 Days)": { - "2024-12-01T00:00:00+02:00": 38 - }, - "Verbal Confirmation Received": { - "2024-12-01T00:00:00+02:00": 11 - }, - "NPS detractor-passive notification": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Home Health Discharge Verbal Confirmation Needed": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Resupply V2 Reminder Email (5 Days)": { - "2024-12-01T00:00:00+02:00": 5 - } - } - }, - "647e50e6720b54f89e06480e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 251 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 251 - }, - "000-1b Bestätigungscode Veranstalter": { - "2024-12-01T00:00:00+02:00": 12 - }, - "010-3-2 Direct Request Confirmation for Organizer": { - "2024-12-01T00:00:00+02:00": 5 - }, - "010-3-1 Direct Request Organizer to Formation": { - "2024-12-01T00:00:00+02:00": 5 - }, - "004-1 Passwort zurücksetzen": { - "2024-12-01T00:00:00+02:00": 6 - }, - "030-2 Participation Update for Musician": { - "2024-12-01T00:00:00+02:00": 6 - }, - "010-4 Invitation to Apply": { - "2024-12-01T00:00:00+02:00": 74 - }, - "000-2b Reminder Bestätigungscode Veranstalter": { - "2024-12-01T00:00:00+02:00": 5 - }, - "020-1 | New Package Booking": { - "2024-12-01T00:00:00+02:00": 6 - }, - "008-1 Invitation to Project New User": { - "2024-12-01T00:00:00+02:00": 40 - }, - "009-1 Invitation Project for existing User": { - "2024-12-01T00:00:00+02:00": 41 - }, - "030-1 Participation Insert for Musician": { - "2024-12-01T00:00:00+02:00": 27 - }, - "010-2 Message Formation to Organizer": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "64477125ac1c08f04edc14aa": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9881 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9881 - }, - "Comment Mention": { - "2024-12-01T00:00:00+02:00": 9881 - } - } - }, - "64aa3f5d5f8a9af8437ea498": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7861 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7861 - }, - "Upgrade tier": { - "2024-12-01T00:00:00+02:00": 320 - }, - "E-wallet registration": { - "2024-12-01T00:00:00+02:00": 117 - }, - "E-wallet top-up": { - "2024-12-01T00:00:00+02:00": 5372 - }, - "Promotion approved to Property Admin": { - "2024-12-01T00:00:00+02:00": 98 - }, - "Verify moblie number by AIS": { - "2024-12-01T00:00:00+02:00": 537 - }, - "Promotion is waiting for your approval AWC Admin": { - "2024-12-01T00:00:00+02:00": 169 - }, - "Sender friend is joining pikul": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Upcoming Coupon expiry": { - "2024-12-01T00:00:00+02:00": 193 - }, - "email-verification": { - "2024-12-01T00:00:00+02:00": 20 - }, - "User gets a coupon as a gift (B2B gift)": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Welcome to Pikul": { - "2024-12-01T00:00:00+02:00": 303 - }, - "Reset Password OTP": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Downgrade tier": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Verify Mobile Phone Number": { - "2024-12-01T00:00:00+02:00": 49 - }, - "Complete Profile": { - "2024-12-01T00:00:00+02:00": 285 - }, - "transfer-coupon-successful": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Pikul point received": { - "2024-12-01T00:00:00+02:00": 6 - }, - "successful-coupon-claim": { - "2024-12-01T00:00:00+02:00": 95 - }, - "Upcoming Membership expiration": { - "2024-12-01T00:00:00+02:00": 189 - }, - "User gets a gift coupon (Giveaway coupon)": { - "2024-12-01T00:00:00+02:00": 10 - } - } - }, - "62f93267cd5afb6ad39b12b1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 349 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 349 - }, - "popup-notifications": { - "2024-12-01T00:00:00+02:00": 64 - }, - "Ai Gen Notifications": { - "2024-12-01T00:00:00+02:00": 285 - } - } - }, - "64b4e554d82471a0444f8415": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "LeaderBoard Update": { - "2024-12-01T00:00:00+02:00": 45 - }, - "Claim Rewards": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Team Submission": { - "2024-12-01T00:00:00+02:00": 55 - } - } - }, - "6600f0d38453b14f2ff41c7d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "Job Needs Attention": { - "2024-12-01T00:00:00+02:00": 178 - }, - "Transform Finished in App": { - "2024-12-01T00:00:00+02:00": 252 - } - } - }, - "63d548c1a9b6cc61d4c3beb3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5307 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5307 - }, - "Work Cancelled": { - "2024-12-01T00:00:00+02:00": 252 - }, - "Start Work Soon": { - "2024-12-01T00:00:00+02:00": 277 - }, - "Duel Invited": { - "2024-12-01T00:00:00+02:00": 690 - }, - "Actions": { - "2024-12-01T00:00:00+02:00": 258 - }, - "Expensive Skill": { - "2024-12-01T00:00:00+02:00": 3504 - }, - "Start Work Reminder": { - "2024-12-01T00:00:00+02:00": 326 - } - } - }, - "64135799799e3c974d3f6426": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5047881 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5047881 - }, - "New Match": { - "2024-12-01T00:00:00+02:00": 4114525 - }, - "Allstar Gaming": { - "2024-12-01T00:00:00+02:00": 7148 - }, - "New Squad Clip": { - "2024-12-01T00:00:00+02:00": 426 - }, - "New Comment": { - "2024-12-01T00:00:00+02:00": 9 - }, - "New Follow": { - "2024-12-01T00:00:00+02:00": 3688 - }, - "New Clips": { - "2024-12-01T00:00:00+02:00": 816269 - }, - "New Mobile Clips": { - "2024-12-01T00:00:00+02:00": 105816 - } - } - }, - "640f33277df3c830240b71b4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 380 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 380 - }, - "Question support": { - "2024-12-01T00:00:00+02:00": 63 - }, - "Weekly family report": { - "2024-12-01T00:00:00+02:00": 133 - }, - "Invite for kid": { - "2024-12-01T00:00:00+02:00": 183 - } - } - }, - "65cb7ceb619fe4f9cf882165": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5543 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5543 - }, - "Push Notification": { - "2024-12-01T00:00:00+02:00": 5541 - } - } - }, - "6627a8d783dccfeec76eb3f3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2716 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2716 - }, - "logicballs-free-users": { - "2024-12-01T00:00:00+02:00": 2558 - }, - "logicballs-paid-users": { - "2024-12-01T00:00:00+02:00": 158 - } - } - }, - "64d7bb315b5e6bb444d4dd86": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7661 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7661 - }, - "timecard-submitted-on-behalf": { - "2024-12-01T00:00:00+02:00": 271 - }, - "Loan Out Approval Requested": { - "2024-12-01T00:00:00+02:00": 202 - }, - "Onboarding Edited": { - "2024-12-01T00:00:00+02:00": 566 - }, - "Timecard Changes Made": { - "2024-12-01T00:00:00+02:00": 2814 - }, - "timecard-submitted": { - "2024-12-01T00:00:00+02:00": 3612 - }, - "Loan Out Declined": { - "2024-12-01T00:00:00+02:00": 33 - }, - "timecard-changes-requested": { - "2024-12-01T00:00:00+02:00": 122 - }, - "Loan Out Approved": { - "2024-12-01T00:00:00+02:00": 41 - } - } - }, - "65fb16744fe3628e5e65fe2e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 379 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 379 - }, - "Closed-coupon-email-InApp-notif": { - "2024-12-01T00:00:00+02:00": 32 - }, - "Document Signature Completion": { - "2024-12-01T00:00:00+02:00": 4 - }, - "SendEmail": { - "2024-12-01T00:00:00+02:00": 24 - }, - "Live-coupon-email-InApp-notif": { - "2024-12-01T00:00:00+02:00": 26 - }, - "Live-coupon-InApp": { - "2024-12-01T00:00:00+02:00": 48 - }, - "cfc-80-percent-in-app": { - "2024-12-01T00:00:00+02:00": 24 - }, - "Closed-coupon-InApp": { - "2024-12-01T00:00:00+02:00": 220 - } - } - }, - "6639346438754624b559d51d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 277 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 277 - }, - "echo-notification": { - "2024-12-01T00:00:00+02:00": 277 - } - } - }, - "671f768afb21db27362e8d5f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8917 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8917 - }, - "in-app-notification": { - "2024-12-01T00:00:00+02:00": 8917 - } - } - }, - "63a988938099fc7fe0b9f12d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 409 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 409 - }, - "Crypto Transactions Email": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Update Information (KYC Failed)": { - "2024-12-01T00:00:00+02:00": 4 - }, - "fund-User-Account-from-elphinstone account": { - "2024-12-01T00:00:00+02:00": 32 - }, - "sign-up-non-us": { - "2024-12-01T00:00:00+02:00": 12 - }, - "Account Approved by Alpaca": { - "2024-12-01T00:00:00+02:00": 10 - }, - "cancel-pending-order": { - "2024-12-01T00:00:00+02:00": 20 - }, - "withdraw-funds-from-user-account": { - "2024-12-01T00:00:00+02:00": 10 - }, - "funds_update": { - "2024-12-01T00:00:00+02:00": 301 - } - } - }, - "656d49757b44306b3c820521": { - "$overall": { - "2024-12-01T00:00:00+02:00": 255 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 255 - }, - "new-opportunity-created": { - "2024-12-01T00:00:00+02:00": 255 - } - } - }, - "667b514853d09da0827f2c20": { - "$overall": { - "2024-12-01T00:00:00+02:00": 50 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 50 - }, - "account-verification-code": { - "2024-12-01T00:00:00+02:00": 34 - }, - "account-verification-code-sms": { - "2024-12-01T00:00:00+02:00": 16 - } - } - }, - "6634cbe4612e6f34a400b05e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 241 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 241 - }, - "View Updated": { - "2024-12-01T00:00:00+02:00": 11 - }, - "Updated assets": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Unknown reports": { - "2024-12-01T00:00:00+02:00": 117 - }, - "Request Documentation": { - "2024-12-01T00:00:00+02:00": 102 - } - } - }, - "650b644a42707458fe431762": { - "$overall": { - "2024-12-01T00:00:00+02:00": 125 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 125 - }, - "challenge.created": { - "2024-12-01T00:00:00+02:00": 40 - }, - "challenge.user.join": { - "2024-12-01T00:00:00+02:00": 13 - }, - "challenge.complete.winner.winner": { - "2024-12-01T00:00:00+02:00": 55 - }, - "challenge.started": { - "2024-12-01T00:00:00+02:00": 15 - } - } - }, - "673b3b592f10dba8e8616a90": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1396 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1396 - }, - "task-assignment": { - "2024-12-01T00:00:00+02:00": 40 - }, - "org-user-digest": { - "2024-12-01T00:00:00+02:00": 1354 - } - } - }, - "638241fa15685362a30e0365": { - "$overall": { - "2024-12-01T00:00:00+02:00": 480 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 480 - }, - "assignor-erp-integration-success": { - "2024-12-01T00:00:00+02:00": 98 - }, - "assignor-erp-integration-failure": { - "2024-12-01T00:00:00+02:00": 7 - }, - "operational-pending-issues": { - "2024-12-01T00:00:00+02:00": 148 - }, - "Notify ccb operation status": { - "2024-12-01T00:00:00+02:00": 227 - } - } - }, - "64341d3fd766fd13ee96b6a1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 830 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 830 - }, - "Experiment Created": { - "2024-12-01T00:00:00+02:00": 428 - }, - "Experiment Finished": { - "2024-12-01T00:00:00+02:00": 402 - } - } - }, - "65eb2863bd6a1b3de8913c21": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2661 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2661 - }, - "User Invited (Local and External)": { - "2024-12-01T00:00:00+02:00": 248 - }, - "The Community - Global Email": { - "2024-12-01T00:00:00+02:00": 284 - }, - "The Community - Global In-app": { - "2024-12-01T00:00:00+02:00": 2129 - } - } - }, - "64ef9990faeddba41ef3caae": { - "$overall": { - "2024-12-01T00:00:00+02:00": 689 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 689 - }, - "Notifica transação efetivada": { - "2024-12-01T00:00:00+02:00": 278 - }, - "Notifica reativação pares transacionais": { - "2024-12-01T00:00:00+02:00": 18 - }, - "Notifica pre autorização de reserva": { - "2024-12-01T00:00:00+02:00": 9 - }, - "notifica-fatura-fechada": { - "2024-12-01T00:00:00+02:00": 125 - }, - "Notifica Proposta Pendente de Aprovação": { - "2024-12-01T00:00:00+02:00": 259 - } - } - }, - "646327aed6925ea19b9c43ea": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4276 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4276 - }, - "credentials-changed-notification-template": { - "2024-12-01T00:00:00+02:00": 4276 - } - } - }, - "65f3db2b4599fa000c2becc7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 575 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 575 - }, - "sendOrderPushNotificationToClient": { - "2024-12-01T00:00:00+02:00": 19 - }, - "Sent Otp to Sms": { - "2024-12-01T00:00:00+02:00": 556 - } - } - }, - "63a81723bee1d5aed77eeecc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 246 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 246 - }, - "login-notification": { - "2024-12-01T00:00:00+02:00": 246 - } - } - }, - "6523e5f01941f73be45e3ac3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 875 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 875 - }, - "Plaintiff Characteristic Changes Submitted": { - "2024-12-01T00:00:00+02:00": 22 - }, - "Plaintiff Finding - Running Campaign": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Plaintiff Finding - Characteristics Suggested": { - "2024-12-01T00:00:00+02:00": 23 - }, - "Plaintiff Finding - Characteristics Revised": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Plaintiff Finding - Plaintiff Status Change": { - "2024-12-01T00:00:00+02:00": 309 - }, - "Static - Report was completed": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Where Is Efi": { - "2024-12-01T00:00:00+02:00": 30 - }, - "New communication - Darrow side": { - "2024-12-01T00:00:00+02:00": 187 - }, - "Plaintiff Finding - Potential Plaintiff Identified": { - "2024-12-01T00:00:00+02:00": 65 - }, - "Plaintiff Finding - Potential Plaintiff Reminder": { - "2024-12-01T00:00:00+02:00": 34 - }, - "New communication - User side": { - "2024-12-01T00:00:00+02:00": 54 - }, - "New Case Assignment": { - "2024-12-01T00:00:00+02:00": 92 - }, - "Plaintiff Finding - Mass Arbitration - New Plaintiff's Reminder": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "65e5b2bac09e1cf82ec747bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 514 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 514 - }, - "Network - user answer follow request": { - "2024-12-01T00:00:00+02:00": 168 - }, - "Onboarding": { - "2024-12-01T00:00:00+02:00": 64 - }, - "Network - user create follow request": { - "2024-12-01T00:00:00+02:00": 281 - } - } - }, - "63362369e2a2de81df9b0573": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1493 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1493 - }, - "ORDER_CHANGE_REQUEST_UPDATED": { - "2024-12-01T00:00:00+02:00": 683 - }, - "SUBSCRIPTION_INVOICE_PAID": { - "2024-12-01T00:00:00+02:00": 61 - }, - "Order change request added": { - "2024-12-01T00:00:00+02:00": 195 - }, - "ORDER_CHANGE_REQUEST_NEW_COMMENT": { - "2024-12-01T00:00:00+02:00": 174 - }, - "ORDER_CHANGE_REQUEST_ARCHIVED": { - "2024-12-01T00:00:00+02:00": 10 - }, - "ORDER_CHANGE_REQUEST_USER_MENTIONED_IN_COMMENT": { - "2024-12-01T00:00:00+02:00": 36 - }, - "ORDER_CHANGE_REQUEST_ASSIGNEE_CHANGED": { - "2024-12-01T00:00:00+02:00": 103 - }, - "UPLOAD_SESSION_FILE_WILL_BE_DELETED": { - "2024-12-01T00:00:00+02:00": 68 - }, - "SUBSCRIPTION_INVOICE_UPCOMING": { - "2024-12-01T00:00:00+02:00": 43 - }, - "CSC_LICENSE_KEY_EXPIRED": { - "2024-12-01T00:00:00+02:00": 34 - }, - "SUBSCRIPTION_PAYMENT_FAILED": { - "2024-12-01T00:00:00+02:00": 84 - } - } - }, - "653fbf348928fc83db032ef4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 600 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 600 - }, - "Email confirmed": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Email Confirmed": { - "2024-12-01T00:00:00+02:00": 52 - }, - "Password Reset Request": { - "2024-12-01T00:00:00+02:00": 19 - }, - "On Boarding Notification": { - "2024-12-01T00:00:00+02:00": 498 - }, - "Password Reset": { - "2024-12-01T00:00:00+02:00": 18 - } - } - }, - "64c3f5e72df653eabdc06c32": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3964 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3964 - }, - "deletelist_error": { - "2024-12-01T00:00:00+02:00": 28 - }, - "Generic_Notification": { - "2024-12-01T00:00:00+02:00": 3936 - } - } - }, - "66cbf5decf609b134349ac56": { - "$overall": { - "2024-12-01T00:00:00+02:00": 925 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 925 - }, - "BRAND_SPONSORSHIP_INCREASE": { - "2024-12-01T00:00:00+02:00": 370 - }, - "CATEGORY_SPONSORSHIP_TOTAL": { - "2024-12-01T00:00:00+02:00": 227 - }, - "BRAND_SPEND_INCREASE": { - "2024-12-01T00:00:00+02:00": 328 - } - } - }, - "6554c9199139d6b01f88625d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "Order Placed - Admin": { - "2024-12-01T00:00:00+02:00": 33 - }, - "Customer Password Reset": { - "2024-12-01T00:00:00+02:00": 29 - }, - "User verified": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Offer Update Created": { - "2024-12-01T00:00:00+02:00": 110 - }, - "Order Placed": { - "2024-12-01T00:00:00+02:00": 33 - }, - "Channel Message Created": { - "2024-12-01T00:00:00+02:00": 115 - }, - "Order Shipment Created": { - "2024-12-01T00:00:00+02:00": 24 - } - } - }, - "63bcf68d35958e9aa59578ff": { - "$overall": { - "2024-12-01T00:00:00+02:00": 498 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 498 - }, - "cnc-notification": { - "2024-12-01T00:00:00+02:00": 498 - } - } - }, - "66cb2b9ecf609b1343ac5d85": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2170 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2170 - }, - "admin-subscriptions": { - "2024-12-01T00:00:00+02:00": 42 - }, - "admin-accounts": { - "2024-12-01T00:00:00+02:00": 2128 - } - } - }, - "6448e3efe2067a03ba33cbb7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3527 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3527 - }, - "fcm-task-scheduled-msg-stage": { - "2024-12-01T00:00:00+02:00": 3527 - } - } - }, - "642d9001c6b53aa5dd5124f5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 734024 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 734024 - }, - "Newclus Digest": { - "2024-12-01T00:00:00+02:00": 3120 - }, - "Daily Digest": { - "2024-12-01T00:00:00+02:00": 137090 - }, - "Cluster In-App": { - "2024-12-01T00:00:00+02:00": 593814 - } - } - }, - "63ecb58fd38e757796a68c1c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3793037 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3793037 - }, - "bidding_started": { - "2024-12-01T00:00:00+02:00": 77143 - }, - "Magic Link": { - "2024-12-01T00:00:00+02:00": 23912 - }, - "Achievement - Top Selling Broker": { - "2024-12-01T00:00:00+02:00": 52 - }, - "myhomevaluationupdate": { - "2024-12-01T00:00:00+02:00": 132964 - }, - "Achievement - Top Clicked Listing": { - "2024-12-01T00:00:00+02:00": 279 - }, - "firsttimeforsale": { - "2024-12-01T00:00:00+02:00": 3756 - }, - "(FDF) Second payment reminder": { - "2024-12-01T00:00:00+02:00": 777 - }, - "newlistings": { - "2024-12-01T00:00:00+02:00": 3552380 - }, - "(FDF) First payment reminder": { - "2024-12-01T00:00:00+02:00": 1432 - }, - "livestream": { - "2024-12-01T00:00:00+02:00": 342 - } - } - }, - "66ab0c482a0b42870f2dadef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5080 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5080 - }, - "welcome-member": { - "2024-12-01T00:00:00+02:00": 1640 - }, - "unlock-reward": { - "2024-12-01T00:00:00+02:00": 1911 - }, - "reward-summary": { - "2024-12-01T00:00:00+02:00": 1502 - }, - "reward-summary-sms": { - "2024-12-01T00:00:00+02:00": 27 - } - } - }, - "64e793a5dd99c21f1ef1ddcb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 39739 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 39739 - }, - "Reset Password": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Student Passport - Request Completed": { - "2024-12-01T00:00:00+02:00": 37 - }, - "The Community - Global Email": { - "2024-12-01T00:00:00+02:00": 22079 - }, - "The Community - Global In-app": { - "2024-12-01T00:00:00+02:00": 17459 - }, - "Student Passport - New Request Notifications": { - "2024-12-01T00:00:00+02:00": 18 - }, - "User Invited (Local and External)": { - "2024-12-01T00:00:00+02:00": 135 - } - } - }, - "667d2415de5890bc6c29b3cc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5781 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5781 - }, - "GBC": { - "2024-12-01T00:00:00+02:00": 1088 - }, - "GBC_Delay": { - "2024-12-01T00:00:00+02:00": 4693 - } - } - }, - "674586592c32fe389f95879e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95 - }, - "AdvertiserBalanceLow": { - "2024-12-01T00:00:00+02:00": 91 - } - } - }, - "6494e6cab1ef6a7f8830e871": { - "$overall": { - "2024-12-01T00:00:00+02:00": 279 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 279 - }, - "Resume Rejected Hors domaine": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Poste expiré": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Resume Rejected Candidature internationale": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Apply Candidate": { - "2024-12-01T00:00:00+02:00": 76 - }, - "Votre poste est retourné en haut de liste": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Votre profil a été approuvé": { - "2024-12-01T00:00:00+02:00": 92 - }, - "Visibilité de votre profil expiré": { - "2024-12-01T00:00:00+02:00": 48 - } - } - }, - "658e6a3b0ad62708782a93bf": { - "$overall": { - "2024-12-01T00:00:00+02:00": 308 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 308 - }, - "In App Notification": { - "2024-12-01T00:00:00+02:00": 308 - } - } - }, - "62ac67523de29f001cb8bfdb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 329 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 329 - }, - "Invite to Werk test": { - "2024-12-01T00:00:00+02:00": 329 - } - } - }, - "659d3b40f58e905eca1793b0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 354 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 354 - }, - "Test notification": { - "2024-12-01T00:00:00+02:00": 354 - } - } - }, - "655c93211a91da1b109bea70": { - "$overall": { - "2024-12-01T00:00:00+02:00": 632 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 632 - }, - "Inbox updates": { - "2024-12-01T00:00:00+02:00": 440 - }, - "Comment": { - "2024-12-01T00:00:00+02:00": 99 - }, - "Campaign updates": { - "2024-12-01T00:00:00+02:00": 34 - }, - "Direct mention": { - "2024-12-01T00:00:00+02:00": 59 - } - } - }, - "64df0f4ea9172aa4b7052247": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11734 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11734 - }, - "task-summary": { - "2024-12-01T00:00:00+02:00": 694 - }, - "primary-workflow": { - "2024-12-01T00:00:00+02:00": 7354 - }, - "secondary-workflow": { - "2024-12-01T00:00:00+02:00": 3686 - } - } - }, - "6605a26d8b3193b7f042cff3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 250 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 250 - }, - "[GFI Research] Xác minh thay đổi Email": { - "2024-12-01T00:00:00+02:00": 13 - }, - "[GFI Research] Nạp tiền thành công": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Untitled": { - "2024-12-01T00:00:00+02:00": 5 - }, - "[GFI Research] Send notification with mail": { - "2024-12-01T00:00:00+02:00": 55 - }, - "[GFI Research] Kích hoạt tài khoản của bạn": { - "2024-12-01T00:00:00+02:00": 24 - }, - "[GFI Research] Thông báo bài viết mới": { - "2024-12-01T00:00:00+02:00": 45 - }, - "[GFI Research] Xác minh đăng nhập": { - "2024-12-01T00:00:00+02:00": 81 - }, - "[GFI Research] Khôi phục mật khẩu": { - "2024-12-01T00:00:00+02:00": 9 - } - } - }, - "63cea3496779056a3f2fff8d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "firstTimeOrderConfirmation for subscriber 352": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Admin Webhook Disabled": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Admin New Patient": { - "2024-12-01T00:00:00+02:00": 158 - }, - "First Time Order Confirmation": { - "2024-12-01T00:00:00+02:00": 112 - }, - "New Refill": { - "2024-12-01T00:00:00+02:00": 5 - }, - "firstTimeOrderConfirmation for subscriber 421": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Admin Daily Report": { - "2024-12-01T00:00:00+02:00": 92 - }, - "Patient Welcome for subscriber 423": { - "2024-12-01T00:00:00+02:00": 6 - }, - "Admin New Order": { - "2024-12-01T00:00:00+02:00": 213 - }, - "Patient Welcome": { - "2024-12-01T00:00:00+02:00": 126 - }, - "Order Confirmation": { - "2024-12-01T00:00:00+02:00": 70 - }, - "Patient OTP": { - "2024-12-01T00:00:00+02:00": 339 - }, - "Checkin Renewal for subscriber 437": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Order Receipt": { - "2024-12-01T00:00:00+02:00": 79 - } - } - }, - "6463ebef60f1803b3a6fbf6b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95170 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95170 - }, - "Adjustment Charges": { - "2024-12-01T00:00:00+02:00": 3158 - }, - "Cancellations": { - "2024-12-01T00:00:00+02:00": 2904 - }, - "Pickups": { - "2024-12-01T00:00:00+02:00": 26808 - }, - "PRO Number Updates": { - "2024-12-01T00:00:00+02:00": 9533 - }, - "Reschedules": { - "2024-12-01T00:00:00+02:00": 25847 - }, - "Deliveries": { - "2024-12-01T00:00:00+02:00": 26919 - } - } - }, - "67475e932c32fe389fa51052": { - "$overall": { - "2024-12-01T00:00:00+02:00": 486 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 486 - }, - "in-app-only": { - "2024-12-01T00:00:00+02:00": 486 - } - } - }, - "651fa9f835fbd6284965127c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2551 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2551 - }, - "New Vulnerability": { - "2024-12-01T00:00:00+02:00": 257 - }, - "New report": { - "2024-12-01T00:00:00+02:00": 2290 - } - } - }, - "643d4f7130bdc004e35b8b0e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1325 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1325 - }, - "new-news-in-favorite": { - "2024-12-01T00:00:00+02:00": 1325 - } - } - }, - "6335791aee1316a5c89b6d93": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7964 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7964 - }, - "offer_accepted": { - "2024-12-01T00:00:00+02:00": 139 - }, - "Offer/Order: Generic Message": { - "2024-12-01T00:00:00+02:00": 1667 - }, - "Subcontractor Assignment Decision": { - "2024-12-01T00:00:00+02:00": 336 - }, - "Tasks: Generic Message": { - "2024-12-01T00:00:00+02:00": 193 - }, - "new_task": { - "2024-12-01T00:00:00+02:00": 310 - }, - "Subcontractor Assignment Generic Message": { - "2024-12-01T00:00:00+02:00": 5319 - } - } - }, - "6447d7ccf2e1143129042903": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5661 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5661 - }, - "email-update-otp": { - "2024-12-01T00:00:00+02:00": 9 - }, - "iapp-push-notification": { - "2024-12-01T00:00:00+02:00": 2230 - }, - "push-email-notification": { - "2024-12-01T00:00:00+02:00": 1945 - }, - "payment-reminder": { - "2024-12-01T00:00:00+02:00": 42 - }, - "reset-password-email": { - "2024-12-01T00:00:00+02:00": 5 - }, - "invite-contact": { - "2024-12-01T00:00:00+02:00": 84 - }, - "reset-pass-alert": { - "2024-12-01T00:00:00+02:00": 6 - }, - "contact-signature": { - "2024-12-01T00:00:00+02:00": 8 - }, - "payment-reminder-past": { - "2024-12-01T00:00:00+02:00": 497 - }, - "sms-workflow": { - "2024-12-01T00:00:00+02:00": 835 - } - } - }, - "639c385254ca30325e86f445": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17518 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17518 - }, - "2 days before next installment": { - "2024-12-01T00:00:00+02:00": 936 - }, - "Merchant's credit line application rejected": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Pending Installment Payment Successful": { - "2024-12-01T00:00:00+02:00": 835 - }, - "Credit line unblocked by the admin": { - "2024-12-01T00:00:00+02:00": 4 - }, - "Invoice Completely Paid": { - "2024-12-01T00:00:00+02:00": 119 - }, - "Installment auto-debited from wallet": { - "2024-12-01T00:00:00+02:00": 1268 - }, - "Chasback has expired": { - "2024-12-01T00:00:00+02:00": 9 - }, - "Change in company details by admin": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Invoice Due For Payment": { - "2024-12-01T00:00:00+02:00": 23 - }, - "1 day before next installment": { - "2024-12-01T00:00:00+02:00": 1087 - }, - "Admin custom installment notifications": { - "2024-12-01T00:00:00+02:00": 6960 - }, - "Cashback has been won": { - "2024-12-01T00:00:00+02:00": 14 - }, - "New Invoice Request Received": { - "2024-12-01T00:00:00+02:00": 191 - }, - "Cashback about to expire": { - "2024-12-01T00:00:00+02:00": 52 - }, - "ADMIN_CUSTOM_NOTIFICATION": { - "2024-12-01T00:00:00+02:00": 800 - }, - "Wallet has been topped-up successfully": { - "2024-12-01T00:00:00+02:00": 50 - }, - "Installment Overdue": { - "2024-12-01T00:00:00+02:00": 4039 - }, - "On due date of an installment": { - "2024-12-01T00:00:00+02:00": 1099 - } - } - }, - "64747ec18b0b51ed1741923d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "adminPanel-workflow": { - "2024-12-01T00:00:00+02:00": 28 - }, - "channelLikes-workflow-Russian": { - "2024-12-01T00:00:00+02:00": 72 - }, - "sharePage-workflow": { - "2024-12-01T00:00:00+02:00": 241 - }, - "sharePage-workflow-Russian": { - "2024-12-01T00:00:00+02:00": 349 - }, - "unregisteredChannel-workflow": { - "2024-12-01T00:00:00+02:00": 7 - }, - "unregisteredChannel-workflow-Russian": { - "2024-12-01T00:00:00+02:00": 5 - }, - "channelLikes-workflow": { - "2024-12-01T00:00:00+02:00": 44 - } - } - }, - "64c7be962df653eabd0a53dd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "Technical Debt Alert": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Build Completed": { - "2024-12-01T00:00:00+02:00": 656 - } - } - }, - "63215ba3a4ca4df9242c24c4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "Reset Password": { - "2024-12-01T00:00:00+02:00": 13 - }, - "FILE_UPLOAD": { - "2024-12-01T00:00:00+02:00": 187 - }, - "User Welcome Email": { - "2024-12-01T00:00:00+02:00": 20 - }, - "incorrect-password": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Client UserAccount verification": { - "2024-12-01T00:00:00+02:00": 14 - }, - "Account Verification": { - "2024-12-01T00:00:00+02:00": 27 - }, - "Schedule Project": { - "2024-12-01T00:00:00+02:00": 392 - } - } - }, - "65799faaab5221590f7f1cc1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 305 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 305 - }, - "Installer App": { - "2024-12-01T00:00:00+02:00": 130 - }, - "Beta Survey": { - "2024-12-01T00:00:00+02:00": 15 - }, - "Customer Onboarding": { - "2024-12-01T00:00:00+02:00": 160 - } - } - }, - "64ee088296eacf2243b8b25b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2759 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2759 - }, - "Due Date Reminder": { - "2024-12-01T00:00:00+02:00": 903 - }, - "Task Assigned": { - "2024-12-01T00:00:00+02:00": 473 - }, - "Task Pending": { - "2024-12-01T00:00:00+02:00": 16 - }, - "Ticket Deleted": { - "2024-12-01T00:00:00+02:00": 398 - }, - "Core Field Changed": { - "2024-12-01T00:00:00+02:00": 94 - }, - "Message Notification": { - "2024-12-01T00:00:00+02:00": 8 - }, - "Comment Added": { - "2024-12-01T00:00:00+02:00": 330 - }, - "Task Claimed": { - "2024-12-01T00:00:00+02:00": 37 - }, - "Ticket Created": { - "2024-12-01T00:00:00+02:00": 55 - }, - "Daily Summary": { - "2024-12-01T00:00:00+02:00": 358 - }, - "Due Date Crossed": { - "2024-12-01T00:00:00+02:00": 20 - }, - "Task Assigned To Be Claimed": { - "2024-12-01T00:00:00+02:00": 67 - } - } - }, - "6524263d72a8166dd08346c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6441 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6441 - }, - "partners-create-indication": { - "2024-12-01T00:00:00+02:00": 53 - }, - "partner-alert-notification": { - "2024-12-01T00:00:00+02:00": 5413 - }, - "status-comercial-vendas": { - "2024-12-01T00:00:00+02:00": 10 - }, - "RMA-SOLICITACAO-FABRICA": { - "2024-12-01T00:00:00+02:00": 40 - }, - "STATUS-RMA-CONCESSIONARIO": { - "2024-12-01T00:00:00+02:00": 9 - }, - "criado-venda": { - "2024-12-01T00:00:00+02:00": 33 - }, - "STATUS-RMA-FABRICA": { - "2024-12-01T00:00:00+02:00": 438 - }, - "STATUS-RMA-CLIENTE": { - "2024-12-01T00:00:00+02:00": 29 - }, - "partners-update-nf": { - "2024-12-01T00:00:00+02:00": 178 - }, - "partners-update-indication": { - "2024-12-01T00:00:00+02:00": 234 - } - } - }, - "6572fd669788e6811d7b4d64": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4915 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4915 - }, - "Gallery Download": { - "2024-12-01T00:00:00+02:00": 3575 - }, - "Selection Notify": { - "2024-12-01T00:00:00+02:00": 859 - }, - "Favorite Photo Comment": { - "2024-12-01T00:00:00+02:00": 343 - }, - "Review Received": { - "2024-12-01T00:00:00+02:00": 138 - } - } - }, - "67219003d36466abaeb1f995": { - "$overall": { - "2024-12-01T00:00:00+02:00": 348 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 348 - }, - "crm-notification": { - "2024-12-01T00:00:00+02:00": 348 - } - } - }, - "647d42173a4ec8a59984c750": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13970 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13970 - }, - "Allocation Success Driver": { - "2024-12-01T00:00:00+02:00": 4495 - }, - "Allocation Manual Success": { - "2024-12-01T00:00:00+02:00": 1852 - }, - "Allocation Success": { - "2024-12-01T00:00:00+02:00": 2469 - }, - "Allocation Manual": { - "2024-12-01T00:00:00+02:00": 988 - }, - "Order Create": { - "2024-12-01T00:00:00+02:00": 2411 - }, - "Order Drop Off": { - "2024-12-01T00:00:00+02:00": 1653 - }, - "Add Leads": { - "2024-12-01T00:00:00+02:00": 102 - } - } - }, - "65453e2c44cca773bdf1cdd7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19 - }, - "Account Activation": { - "2024-12-01T00:00:00+02:00": 19 - } - } - }, - "63b86f5db775d8ef0ed8f08f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20721 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20721 - }, - "SUPO In-App notification": { - "2024-12-01T00:00:00+02:00": 20721 - } - } - }, - "630cb844fafbba9bf010f186": { - "$overall": { - "2024-12-01T00:00:00+02:00": 45977 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 45977 - }, - "Equipment Document Expiry Alerts": { - "2024-12-01T00:00:00+02:00": 1710 - }, - "Upcoming maintenance alerts": { - "2024-12-01T00:00:00+02:00": 144 - }, - "Restricted Geofence Violation": { - "2024-12-01T00:00:00+02:00": 28695 - }, - "Idling Alerts": { - "2024-12-01T00:00:00+02:00": 13895 - }, - "Crash Detection Violations": { - "2024-12-01T00:00:00+02:00": 523 - }, - "New Request Update": { - "2024-12-01T00:00:00+02:00": 75 - }, - "New Ad-Hoc Request": { - "2024-12-01T00:00:00+02:00": 36 - }, - "Equipment Request Update": { - "2024-12-01T00:00:00+02:00": 399 - }, - "Equipment Order Created": { - "2024-12-01T00:00:00+02:00": 5 - }, - "Low Fuel Alerts (Tanks)": { - "2024-12-01T00:00:00+02:00": 417 - }, - "New Maintenance Assigned": { - "2024-12-01T00:00:00+02:00": 10 - }, - "Maintenance Updated": { - "2024-12-01T00:00:00+02:00": 68 - } - } - }, - "674e32b62c32fe389f0ea40a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 339 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 339 - }, - "overstock-workflow": { - "2024-12-01T00:00:00+02:00": 7 - }, - "suggested-restocks-workflow": { - "2024-12-01T00:00:00+02:00": 233 - }, - "overdue-po-workflow": { - "2024-12-01T00:00:00+02:00": 34 - }, - "a-new-member-joining-the-team": { - "2024-12-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15 - }, - "daily-summary-workflow": { - "2024-12-01T00:00:00+02:00": 41 - } - } - }, - "6540cb89c086274eec8fb0b1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11329 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11329 - }, - "Transaction": { - "2024-12-01T00:00:00+02:00": 78 - }, - "Transactions": { - "2024-12-01T00:00:00+02:00": 10704 - }, - "Invoice Overdue": { - "2024-12-01T00:00:00+02:00": 519 - }, - "Inbox Match": { - "2024-12-01T00:00:00+02:00": 17 - }, - "Invoice Paid": { - "2024-12-01T00:00:00+02:00": 9 - } - } - }, - "636044f61fbb8368897eadbc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 36118 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 36118 - }, - "GoogleAccountLink": { - "2024-12-01T00:00:00+02:00": 193 - }, - "SaladStoreSurvey5-30-24": { - "2024-12-01T00:00:00+02:00": 5 - }, - "NotStarChef": { - "2024-12-01T00:00:00+02:00": 6 - }, - "3090/4080ReactivationDec-2024": { - "2024-12-01T00:00:00+02:00": 3615 - }, - "MinerRestartBlast": { - "2024-12-01T00:00:00+02:00": 638 - }, - "PasskeyAdded": { - "2024-12-01T00:00:00+02:00": 380 - }, - "Target Reward: 25% Progress": { - "2024-12-01T00:00:00+02:00": 1545 - }, - "BackupCodesRegen": { - "2024-12-01T00:00:00+02:00": 44 - }, - "PayPalAccountLink": { - "2024-12-01T00:00:00+02:00": 747 - }, - "PasskeyRemovedLast": { - "2024-12-01T00:00:00+02:00": 21 - }, - "Target Reward: 75% Progress": { - "2024-12-01T00:00:00+02:00": 1961 - }, - "BackupCodesViewed": { - "2024-12-01T00:00:00+02:00": 498 - }, - "SatisfactionSurveyDec-2024": { - "2024-12-01T00:00:00+02:00": 6684 - }, - "StarChefNotification": { - "2024-12-01T00:00:00+02:00": 16080 - }, - "Target Rewards: 100% Progress": { - "2024-12-01T00:00:00+02:00": 1691 - }, - "EarningThresholdSurveyNov2024": { - "2024-12-01T00:00:00+02:00": 7 - }, - "Target Reward: 50% Progress": { - "2024-12-01T00:00:00+02:00": 1993 - }, - "DemandMonitorGpu": { - "2024-12-01T00:00:00+02:00": 10 - } - } - }, - "64654f8125b1fb30f26b3ce3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 129601 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 129601 - }, - "Employer Reward Requested": { - "2024-12-01T00:00:00+02:00": 2572 - }, - "Public Profile Activity": { - "2024-12-01T00:00:00+02:00": 10066 - }, - "PublicProfilePostVisit": { - "2024-12-01T00:00:00+02:00": 51222 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 46 - }, - "Points Flex Reward Availability": { - "2024-12-01T00:00:00+02:00": 2382 - }, - "EmployeeNewLead": { - "2024-12-01T00:00:00+02:00": 27 - }, - "EmployeeWeeklySmsFeedback": { - "2024-12-01T00:00:00+02:00": 35631 - }, - "RewardSettingsUpdated": { - "2024-12-01T00:00:00+02:00": 199 - }, - "NewJobSatisfactionSurvey": { - "2024-12-01T00:00:00+02:00": 1238 - }, - "EmployeeNewOnlineMentionV2": { - "2024-12-01T00:00:00+02:00": 24573 - }, - "NoPointsRewardEarned": { - "2024-12-01T00:00:00+02:00": 1457 - }, - "EmployeeProfileNewLead": { - "2024-12-01T00:00:00+02:00": 188 - } - } - }, - "62cd681212f9e10011655a35": { - "$overall": { - "2024-12-01T00:00:00+02:00": 817476 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 817476 - }, - "Neue Nachricht an Assignee": { - "2024-12-01T00:00:00+02:00": 15098 - }, - "Export verfügbar": { - "2024-12-01T00:00:00+02:00": 39 - }, - "Mitarbeiter zugewiesen": { - "2024-12-01T00:00:00+02:00": 1985 - }, - "Mitarbeiter erwähnt": { - "2024-12-01T00:00:00+02:00": 232 - }, - "Neue Nachricht": { - "2024-12-01T00:00:00+02:00": 800122 - } - } - }, - "654e95e71b0a1377ffe4f755": { - "$overall": { - "2024-12-01T00:00:00+02:00": 63234 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 63234 - }, - "Nemt WebApp-Trips-Notifications": { - "2024-12-01T00:00:00+02:00": 50130 - }, - "Hrlux-Prod WebApp-Trips-Notifications": { - "2024-12-01T00:00:00+02:00": 13104 - } - } - }, - "670d176b8b5274f547d231c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 316 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 316 - }, - "after-send-order-workflow": { - "2024-12-01T00:00:00+02:00": 8 - }, - "sticker-pickup": { - "2024-12-01T00:00:00+02:00": 139 - }, - "after-choosing-npu-lottery": { - "2024-12-01T00:00:00+02:00": 13 - }, - "dukaty-purchase": { - "2024-12-01T00:00:00+02:00": 10 - }, - "after-buy-weelet": { - "2024-12-01T00:00:00+02:00": 122 - }, - "sticker-send-info": { - "2024-12-01T00:00:00+02:00": 14 - }, - "after-buy-products-workflow": { - "2024-12-01T00:00:00+02:00": 6 - }, - "dukaty-topup-workflow": { - "2024-12-01T00:00:00+02:00": 4 - } - } - }, - "64d2121ee443560425c07189": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1135 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1135 - }, - "Snoozed has ended": { - "2024-12-01T00:00:00+02:00": 1135 - } - } - }, - "65bbbfe9cadbf9deb57b546e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 622 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 622 - }, - "Invite by Email": { - "2024-12-01T00:00:00+02:00": 7 - }, - "surgeryApproval": { - "2024-12-01T00:00:00+02:00": 68 - }, - "Surgical Surgery Create": { - "2024-12-01T00:00:00+02:00": 547 - } - } - }, - "63c146116c33f15eefc12c8d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 916 - }, - "undefined": { - "$overall": { - "2024-12-01T00:00:00+02:00": 916 - }, - "Non-critical Alarm [v1]": { - "2024-12-01T00:00:00+02:00": 916 - } - } - } - }, - "B. Process Workflow Step - [Triggers] [Total Events]": { - "$overall": { - "2024-12-01T00:00:00+02:00": 59361868 - }, - "668fa1064111ae088df8ecd3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 712 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 356 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 356 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 356 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 356 - } - } - }, - "64e32ac81e192345f283d627": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1946 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 844 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 844 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 285 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 285 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 817 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 817 - } - } - }, - "636975131fbb836889d6f696": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13114 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3743 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3743 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3016 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3016 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 852 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 852 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5503 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5503 - } - } - }, - "64b4e554d82471a0444f8415": { - "$overall": { - "2024-12-01T00:00:00+02:00": 456 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 114 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 114 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 114 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 114 - } - } - }, - "646eaa72e0d0d1b39ac3b281": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1598 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 799 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 799 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 799 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 799 - } - } - }, - "63c146116c33f15eefc12c8d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3760 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 445 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 445 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 890 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 890 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 148 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 148 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 445 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 445 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 916 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 916 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 916 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 916 - } - } - }, - "65bb0ed1516fabd8520d5673": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1281 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 95 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 95 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1091 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1091 - } - } - }, - "6400caeef591ea2e090f6040": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8145697 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 41660 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 41660 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1350944 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1350944 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1351177 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1351177 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1350204 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1350204 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1350199 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1350199 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1350200 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1350200 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1351313 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1351313 - } - } - }, - "6734a5a33b50565012d8dce0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1038 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 513 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 513 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 518 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 518 - } - } - }, - "64e4824819860000717aecb9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15466 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6884 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6884 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8582 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8582 - } - } - }, - "65c67ec9b637cdb23e09edef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 704 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 352 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 352 - } - } - }, - "63b4a3edc2c62a5b4b374cc6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1521 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 39 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 39 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 772 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 772 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 127 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 127 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 583 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 583 - } - } - }, - "6644fabbfbadc9d325d90248": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4195 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1702 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1702 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 561 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 561 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1371 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1371 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 561 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 561 - } - } - }, - "64092d0773a1721d0476baa9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2048 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 106 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 106 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 798 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 798 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 203 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 203 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 803 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 803 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 136 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 136 - } - } - }, - "66ea0719cf609b1343a50a19": { - "$overall": { - "2024-12-01T00:00:00+02:00": 793 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 226 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 226 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 306 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 306 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 261 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 261 - } - } - }, - "648c0658616db8f05a735ef4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5616 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1503 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1503 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 683 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 683 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1613 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1613 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1817 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1817 - } - } - }, - "666c096bb3464b7775094768": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1765 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 487 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 487 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 291 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 291 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 173 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 173 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 814 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 814 - } - } - }, - "66ab0c482a0b42870f2dadef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9550 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5080 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5080 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 27 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4443 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4443 - } - } - }, - "6721fd6e30d1c09960214146": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3022 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 818 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 818 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 411 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 411 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 155 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 155 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 819 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 819 - } - }, - "custom": { - "$overall": { - "2024-12-01T00:00:00+02:00": 819 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 819 - } - } - }, - "64e77d4b96eacf22439b13cd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 500 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 131 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 131 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 102 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 102 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 250 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 250 - } - } - }, - "65af718b8e557ef0af46f7c0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18794 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9201 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9201 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 381 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 381 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9203 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9203 - } - } - }, - "63c1debfe84f99fee270acf7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17045 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3546 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3546 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3541 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3541 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3541 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3541 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 600 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 600 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5817 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5817 - } - } - }, - "6478b60f3a95df70dfeab13c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14208 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7104 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7104 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7104 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7104 - } - } - }, - "651e2d9e8816295152897198": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2064 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1032 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1032 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1032 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1032 - } - } - }, - "669187bb9efb8372ce7c6483": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2233 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1117 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1117 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1116 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1116 - } - } - }, - "674e32b62c32fe389f0ea40a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 403 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 339 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 339 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 45 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 45 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 18 - } - } - }, - "652ea963fa315318e7925510": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3126 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 754 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 754 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 436 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 436 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 436 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 436 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1500 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1500 - } - } - }, - "641df7485d9af70da9c29397": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2569 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 609 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 609 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 371 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 371 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 609 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 609 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 980 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 980 - } - } - }, - "646f26388b0b51ed1734729b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 39576 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13192 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13192 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13192 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13192 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13192 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13192 - } - } - }, - "6408720f46fde50c6d4affe5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5676 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1414 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1414 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1424 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1424 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1414 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1414 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1424 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1424 - } - } - }, - "639c385254ca30325e86f445": { - "$overall": { - "2024-12-01T00:00:00+02:00": 35036 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17518 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17518 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17518 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17518 - } - } - }, - "63cfe876ab8d9270851c178d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4676 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 138 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 138 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1018 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1018 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3520 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3520 - } - } - }, - "6637e82483488a7091d0513d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1829 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 550 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 550 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 702 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 702 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 577 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 577 - } - } - }, - "6582723f08be7e008ad65128": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12844 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5142 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5142 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5141 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5141 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2561 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2561 - } - } - }, - "654eb4b8d71fd8620c6d174e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 39284 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9821 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9821 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9821 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9821 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9821 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9821 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9821 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9821 - } - } - }, - "6439d814d3f2f7f8eb014099": { - "$overall": { - "2024-12-01T00:00:00+02:00": 564 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 282 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 282 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 282 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 282 - } - } - }, - "65bbbfe9cadbf9deb57b546e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1791 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 615 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 615 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 554 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 554 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 622 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 622 - } - } - }, - "674586592c32fe389f95879e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 169 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 74 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 74 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 95 - } - } - }, - "63d548c1a9b6cc61d4c3beb3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10614 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5307 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5307 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 258 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 258 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5049 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5049 - } - } - }, - "66cbf5decf609b134349ac56": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1850 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 925 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 925 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 925 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 925 - } - } - }, - "671bba5a0ab03d946718eb3b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2576 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 177 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 177 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1053 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1053 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1331 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1331 - } - } - }, - "63e9893f8ce4830a19151391": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4770 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2526 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2526 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 502 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 502 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1727 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1727 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15 - } - } - }, - "62ac67523de29f001cb8bfdb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 658 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 329 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 329 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 329 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 329 - } - } - }, - "6516702d73891288fc1ca032": { - "$overall": { - "2024-12-01T00:00:00+02:00": 49104 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16368 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16368 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16368 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16368 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16368 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16368 - } - } - }, - "63a32471bee1d5aed72cc01d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11460 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5730 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5730 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5730 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5730 - } - } - }, - "66437ce7b370e6b94e711d3c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 641 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 310 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 310 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 295 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 295 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 36 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 36 - } - } - }, - "62f93267cd5afb6ad39b12b1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 698 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 349 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 349 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 349 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 349 - } - } - }, - "651aea5133924ee69071720d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 78215 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23447 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23447 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6805 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6805 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23380 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23380 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6930 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6930 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17653 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17653 - } - } - }, - "66d9e408cf609b134331065f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12662 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7646 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7646 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 596 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 596 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2035 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2035 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 417 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 417 - } - }, - "custom": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1968 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1968 - } - } - }, - "64135799799e3c974d3f6426": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14873624 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4866259 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4866259 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 100164 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 100164 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4859199 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4859199 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5048002 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5048002 - } - } - }, - "65fa38148453b14f2f5aeea2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 822 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 186 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 186 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 254 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 254 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 261 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 261 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 121 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 121 - } - } - }, - "6742dd7d1bb91e63d914a510": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1327 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 377 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 377 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 377 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 377 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 571 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 571 - } - } - }, - "6554c9199139d6b01f88625d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2803 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 786 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 786 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 833 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 833 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 833 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 833 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 351 - } - } - }, - "64480a48771e7bed3dc3600e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 79301 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 51613 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 51613 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23863 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23863 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3819 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3819 - } - } - }, - "66d61e9dcf609b134368c516": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10313 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4154 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4154 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1994 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1994 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4165 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4165 - } - } - }, - "64ecc8ef96eacf2243a91769": { - "$overall": { - "2024-12-01T00:00:00+02:00": 58147 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5152 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5152 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4951 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4951 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24749 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 24749 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23295 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23295 - } - } - }, - "630ca7b800f7dbd3faf2d726": { - "$overall": { - "2024-12-01T00:00:00+02:00": 96986 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1823 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1823 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 93065 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 93065 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2098 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2098 - } - } - }, - "6524263d72a8166dd08346c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12922 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 615 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 615 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 40 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 40 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5826 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5826 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6441 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6441 - } - } - }, - "64341d3fd766fd13ee96b6a1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2490 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 830 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 830 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 830 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 830 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 830 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 830 - } - } - }, - "664c96c0e6f72af294ae867a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2070 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 656 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 656 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 497 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 497 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 539 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 539 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 378 - } - } - }, - "6639eeff0c0215ee78621015": { - "$overall": { - "2024-12-01T00:00:00+02:00": 83838 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 41919 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 41919 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 41779 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 41779 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 140 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 140 - } - } - }, - "656d49757b44306b3c820521": { - "$overall": { - "2024-12-01T00:00:00+02:00": 504 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 249 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 249 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 255 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 255 - } - } - }, - "6627a8d783dccfeec76eb3f3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16304 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6794 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6794 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2716 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2716 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6794 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6794 - } - } - }, - "66a5008b076eb7c94c1adb92": { - "$overall": { - "2024-12-01T00:00:00+02:00": 889 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 432 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 432 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 457 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 457 - } - } - }, - "672e25d0a1974766693e1703": { - "$overall": { - "2024-12-01T00:00:00+02:00": 674 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 319 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 319 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 63 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 63 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 292 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 292 - } - } - }, - "652e95466c3964c5a2832222": { - "$overall": { - "2024-12-01T00:00:00+02:00": 679 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 191 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 191 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 237 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 237 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 244 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 244 - } - } - }, - "636a6b4d9e04bb11b575cf74": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6090 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2820 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2820 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 225 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 225 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3045 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3045 - } - } - }, - "6685216144e8f8b477105e38": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5832 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2916 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2916 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2916 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2916 - } - } - }, - "647a49083a4ec8a5997fb67c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 421 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 211 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 211 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 210 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 210 - } - } - }, - "66f0dd46cf609b13436885f5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 126 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42 - } - } - }, - "647817a98b0b51ed174db1a8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 47181 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 22430 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2071 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2071 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 22430 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 250 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 250 - } - } - }, - "669559c51c484e3d9a0e1839": { - "$overall": { - "2024-12-01T00:00:00+02:00": 530 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 265 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 265 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 265 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 265 - } - } - }, - "642d9001c6b53aa5dd5124f5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1358751 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 593812 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 593812 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15458 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15458 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15458 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15458 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 734023 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 734023 - } - } - }, - "656197541eb377d7c3b258a0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22185 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7555 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7555 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7075 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7075 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7555 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7555 - } - } - }, - "651eff411df1b46454f4c05a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 38674 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12181 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12181 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9365 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9365 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9380 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9380 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1598 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1598 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4283 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4283 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1867 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1867 - } - } - }, - "669d47da98a7c2cace1dea46": { - "$overall": { - "2024-12-01T00:00:00+02:00": 701 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 303 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 303 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 47 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 47 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 47 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 47 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 304 - } - } - }, - "64fb853287135ffdc3b410ec": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14915 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4040 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4040 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3979 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3979 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3979 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3979 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2466 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2466 - } - }, - "custom": { - "$overall": { - "2024-12-01T00:00:00+02:00": 451 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 451 - } - } - }, - "6670ed6e78b0832675c76f6a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2627 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 902 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 902 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 823 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 823 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 902 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 902 - } - } - }, - "62fa8155227ab843d407b3f5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23406 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6820 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6820 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3157 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3157 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5013 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5013 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8416 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8416 - } - } - }, - "66b997fe9c11077f0257d94e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 261 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 22 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 217 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 217 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 22 - } - } - }, - "6727412d456590b1d8992d83": { - "$overall": { - "2024-12-01T00:00:00+02:00": 292 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 146 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 146 - } - } - }, - "64c94e80fc11bce407229550": { - "$overall": { - "2024-12-01T00:00:00+02:00": 79707 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26569 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 26569 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26569 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 26569 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26569 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 26569 - } - } - }, - "63ff64e6f591ea2e097d64bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6518 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 65 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 65 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2044 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2044 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 912 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 912 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 166 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 166 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3331 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3331 - } - } - }, - "66b36aa7aa4218d12678f006": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1227 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 237 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 237 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 280 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 280 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 64 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 64 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 71 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 71 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 343 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 343 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 232 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 232 - } - } - }, - "66fc55c5cf609b13433a677d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9646 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4823 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4823 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4823 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4823 - } - } - }, - "646e25734c1d7d4ec22acfa5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 51658 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 25514 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 25514 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 281 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 281 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15485 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15485 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10378 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10378 - } - } - }, - "6680a87553d09da082d4fd31": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3702 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1851 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1851 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1851 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1851 - } - } - }, - "652efbf06c3964c5a2845118": { - "$overall": { - "2024-12-01T00:00:00+02:00": 704 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 352 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 243 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 109 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 109 - } - } - }, - "646f08088b0b51ed17340c31": { - "$overall": { - "2024-12-01T00:00:00+02:00": 54375 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18140 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 18140 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18491 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 18491 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17744 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17744 - } - } - }, - "64d10e4220f4008b5df1e37a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10168 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8813 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8813 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 103 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 103 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1252 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1252 - } - } - }, - "650002893cc619d36e43a166": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2315 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 574 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 574 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 574 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 574 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 574 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 574 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 593 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 593 - } - } - }, - "638a3301ed1c4c44d2a58839": { - "$overall": { - "2024-12-01T00:00:00+02:00": 451594 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 150894 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 150894 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 150894 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 150894 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 149806 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 149806 - } - } - }, - "650b644a42707458fe431762": { - "$overall": { - "2024-12-01T00:00:00+02:00": 305 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 125 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 125 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 125 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 125 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 55 - } - } - }, - "65cb7ceb619fe4f9cf882165": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11087 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5542 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5542 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5543 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5543 - } - } - }, - "6580bfe12c7e267bc3af8dc2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14607 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4869 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4869 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4869 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4869 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4869 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4869 - } - } - }, - "65a56e2e8e557ef0afd6f872": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5896 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2756 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2756 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2756 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2756 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 384 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 384 - } - } - }, - "650d24f8f39b9230da78520b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2264 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1132 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1132 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1132 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1132 - } - } - }, - "662a58724b6cd9280bf5139d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 536 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 268 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 268 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 268 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 268 - } - } - }, - "63bcf68d35958e9aa59578ff": { - "$overall": { - "2024-12-01T00:00:00+02:00": 996 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 498 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 498 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 498 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 498 - } - } - }, - "67235ab730d1c099604bf849": { - "$overall": { - "2024-12-01T00:00:00+02:00": 674 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 133 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 133 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 133 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 133 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 408 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 408 - } - } - }, - "667b514853d09da0827f2c20": { - "$overall": { - "2024-12-01T00:00:00+02:00": 134 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 34 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 50 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 50 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 50 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 50 - } - } - }, - "65c17ff93086d5972f17c2d0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2334 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 766 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 766 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 400 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 400 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 402 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 402 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 766 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 766 - } - } - }, - "646327aed6925ea19b9c43ea": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12828 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4276 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4276 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4276 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4276 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4276 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4276 - } - } - }, - "64b03bae2eb78d11de58c1bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20090 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10045 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10045 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10045 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10045 - } - } - }, - "671f768afb21db27362e8d5f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17834 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8917 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8917 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8917 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8917 - } - } - }, - "63ac163b2588b530704387fc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1599 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 533 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 533 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 533 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 533 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 533 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 533 - } - } - }, - "65ce436d99b1dce753411d4a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1740 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 746 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 124 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 124 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 124 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 124 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 746 - } - } - }, - "66cb2b9ecf609b1343ac5d85": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4340 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2170 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2170 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2170 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2170 - } - } - }, - "6758633bd0bc5c5859e4d0b0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 619 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 56 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 56 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 378 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 185 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 185 - } - } - }, - "63c7b1ddab8d9270851b219f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 682 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 341 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 341 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 341 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 341 - } - } - }, - "66fd558bcf609b1343268e49": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55292 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27646 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 27646 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27646 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 27646 - } - } - }, - "666b875bb3464b7775f56472": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2624 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1312 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1312 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1312 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1312 - } - } - }, - "660ef03291bd69a79e31a321": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18674 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9337 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9337 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9337 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9337 - } - } - }, - "6421cf785876c8840c441642": { - "$overall": { - "2024-12-01T00:00:00+02:00": 689 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 275 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 275 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 275 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 275 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 139 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 139 - } - } - }, - "66b9e7e99c11077f0298542c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 756 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 377 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 377 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 378 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 378 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1 - } - } - }, - "6671df91f4a238f107fe9f56": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2136 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 260 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 260 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 138 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 138 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 758 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 758 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 360 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 360 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 620 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 620 - } - } - }, - "6423f39a2586c27b11d98d84": { - "$overall": { - "2024-12-01T00:00:00+02:00": 112463 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42859 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42859 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14471 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14471 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34196 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 34196 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20937 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 20937 - } - } - }, - "653f9eeac93cc0129acf4bcb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 78017 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23841 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23841 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13302 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13302 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22023 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 22023 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7956 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7956 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10895 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10895 - } - } - }, - "66b1fe79aa4218d12657d85b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1704 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 851 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 851 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 853 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 853 - } - } - }, - "62b8aeda9bbe840018528c47": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1575 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 525 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 525 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 525 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 525 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 525 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 525 - } - } - }, - "641c3bb95d9af70da93f09a9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3477 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 934 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 934 - } - }, - "custom": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1201 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1201 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1342 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1342 - } - } - }, - "6447d7ccf2e1143129042903": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11322 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 835 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 835 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2230 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2230 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2596 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2596 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5661 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5661 - } - } - }, - "66621bc53a586fac83886829": { - "$overall": { - "2024-12-01T00:00:00+02:00": 52880 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20094 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 20094 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20094 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 20094 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12692 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12692 - } - } - }, - "658c15eae2d5aed98bef8f80": { - "$overall": { - "2024-12-01T00:00:00+02:00": 33693 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10732 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10732 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1664 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1664 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5801 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5801 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3351 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3351 - } - }, - "custom": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4635 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4635 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7510 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7510 - } - } - }, - "6321e40f1a3ff48f5712daa8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 38138 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19069 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 19069 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19069 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 19069 - } - } - }, - "66cde6ffcf609b13433bff6b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4196 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2098 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2098 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2098 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2098 - } - } - }, - "660b31f5b551758561fb037c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 417867 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 370760 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 370760 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6906 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6906 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6906 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6906 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6906 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6906 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26389 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 26389 - } - } - }, - "6669f5fec7f96cc1968787d9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 38463 - }, - "custom": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9184 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9184 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9970 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9970 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8923 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8923 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10386 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10386 - } - } - }, - "65df17f92b39eba95ab6ae95": { - "$overall": { - "2024-12-01T00:00:00+02:00": 927 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 462 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 462 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 465 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 465 - } - } - }, - "64197347da8256b93fd7bbb8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1912 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 956 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 956 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 956 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 956 - } - } - }, - "63cea3496779056a3f2fff8d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7548 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1257 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1257 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1257 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1257 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1257 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1257 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1257 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "64919f0eb5f1ae122b876762": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1830 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 915 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 915 - } - } - }, - "65af6ad4f58e905ecab29441": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4533741 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2266867 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2266867 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2266874 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2266874 - } - } - }, - "64f6ffa51bb9daae5164392a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23368 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11683 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11683 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11685 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11685 - } - } - }, - "6643b1e7fbadc9d325959e25": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2069 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 784 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 784 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 591 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 591 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 43 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 43 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 651 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 651 - } - } - }, - "6537ebf5585a37886d9f05b5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18135 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3005 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3005 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7047 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7047 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 392 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 392 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7691 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7691 - } - } - }, - "64eda93c14b8a3ace6f4c5e9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16523 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1692 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1692 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2363 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2363 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2375 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2375 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2375 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2375 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7718 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7718 - } - } - }, - "65113f461a7614493dc5a9f0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 127964 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42913 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42913 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42635 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42635 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42416 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42416 - } - } - }, - "63ecb58fd38e757796a68c1c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15037991 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3709587 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3709587 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3766582 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3766582 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3766580 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3766580 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3793033 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3793033 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2209 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2209 - } - } - }, - "654e95e71b0a1377ffe4f755": { - "$overall": { - "2024-12-01T00:00:00+02:00": 126468 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 63234 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 63234 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 63234 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 63234 - } - } - }, - "63b86f5db775d8ef0ed8f08f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 41442 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20721 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 20721 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 20721 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 20721 - } - } - }, - "651add0cb03ff038cedc7448": { - "$overall": { - "2024-12-01T00:00:00+02:00": 517089 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 74 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 74 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 258508 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 258508 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 258507 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 258507 - } - } - }, - "640f33277df3c830240b71b4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1073 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 562 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 562 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 380 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 380 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 131 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 131 - } - } - }, - "651fa9f835fbd6284965127c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5616 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3065 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3065 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2551 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2551 - } - } - }, - "66b35706aa4218d126bbbf49": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3380 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1125 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1125 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1125 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1125 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1130 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1130 - } - } - }, - "655f20b2afd4055e0df6ae1d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2143 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 526 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 526 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1119 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1119 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 498 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 498 - } - } - }, - "66f19c98cf609b134304a0f6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4568 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1553 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1553 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1554 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1554 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1461 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1461 - } - } - }, - "63fbb0118920eed9471fa1b2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1043 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 173 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 173 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 156 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 156 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 69 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 69 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 645 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 645 - } - } - }, - "656b003c666d47dc7d25648c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7212 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2389 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2389 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2389 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2389 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2434 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2434 - } - } - }, - "64d37f84045bf0282da7b498": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7555 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 881 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 881 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 907 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 907 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 295 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 295 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2288 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2288 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3184 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3184 - } - } - }, - "6337ca88ee1316a5c8a9009e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1290 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 430 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 430 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 430 - } - } - }, - "673b3b592f10dba8e8616a90": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2567 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1393 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1393 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 983 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 983 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 191 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 191 - } - } - }, - "6501cc0935286a5ea69aa722": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1336 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 668 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 668 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 668 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 668 - } - } - }, - "6414934fda8256b93f957df3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 632 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 316 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 316 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 316 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 316 - } - } - }, - "63ad63d5a3d6d6f6e46334a0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9466 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2684 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2684 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2684 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2684 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 707 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 707 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3391 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3391 - } - } - }, - "6361ae479e04bb11b51b9401": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5353 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 663 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 663 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2051 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2051 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 259 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 259 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 148 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 148 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2232 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2232 - } - } - }, - "64654f8125b1fb30f26b3ce3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 301164 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 129019 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 129019 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 37543 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 37543 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 76308 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 76308 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12043 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12043 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 46251 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 46251 - } - } - }, - "6463ebef60f1803b3a6fbf6b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 199311 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 86731 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 86731 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95170 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 95170 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17410 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17410 - } - } - }, - "657312d2fd6a606fd6eaa203": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3758 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1204 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1204 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1277 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1277 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1277 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1277 - } - } - }, - "67063d37ba6a0580bfccc7e3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3532 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 552 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 552 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 887 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 887 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 550 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 550 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1543 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1543 - } - } - }, - "666a0c480f48d9a01fea8e2c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1856 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1389 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1389 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 467 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 467 - } - } - }, - "66688112d05b953ba10ab594": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3774 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1244 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1244 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1228 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1228 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 58 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 58 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1244 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1244 - } - } - }, - "6408f2f0dd5f589fe2ca61b4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3734 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 934 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 934 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 933 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 933 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1867 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1867 - } - } - }, - "65d5e7fa2d8ee2bc1404fa0f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10556 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5278 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5278 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5278 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5278 - } - } - }, - "637daec62610c873786139a1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5900 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2954 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2954 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2913 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2913 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 33 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 33 - } - } - }, - "65fd55c44f991166e7a7335e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2600 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 814 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 814 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 557 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 557 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 330 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 330 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 735 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 735 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 44 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 44 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 120 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 120 - } - } - }, - "672e2335a197476669200759": { - "$overall": { - "2024-12-01T00:00:00+02:00": 36078 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17082 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17082 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18016 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 18016 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 980 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 980 - } - } - }, - "647e50e6720b54f89e06480e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 506 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 251 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 251 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 251 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 251 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4 - } - } - }, - "6494e6cab1ef6a7f8830e871": { - "$overall": { - "2024-12-01T00:00:00+02:00": 558 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 279 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 279 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 279 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 279 - } - } - }, - "64747ec18b0b51ed1741923d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1492 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 746 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 746 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 746 - } - } - }, - "637b2240c58b301920b2f70c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 38278 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9383 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9383 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9383 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9383 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9383 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9383 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10129 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10129 - } - } - }, - "645863ebd6925ea19b7d2456": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2514 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 114 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2286 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2286 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 114 - } - } - }, - "63fe730e5787050c5df466a9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7743 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2965 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2965 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2110 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2110 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2275 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2275 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 243 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 150 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 150 - } - } - }, - "630cb844fafbba9bf010f186": { - "$overall": { - "2024-12-01T00:00:00+02:00": 165051 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 45978 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 45978 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4299 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4299 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 45978 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 45978 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34124 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 34124 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34672 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 34672 - } - } - }, - "6663404493a6b815ffefb2f0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1877856 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 595014 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 595014 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 595014 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 595014 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 61747 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 61747 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 626081 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 626081 - } - } - }, - "66cf1c1bcf609b134337b496": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1139 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 567 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 567 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 572 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 572 - } - } - }, - "660c351dbfb1f0d56f7a6fcc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 884 - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 202 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 202 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 86 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 86 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 86 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 86 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 86 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 86 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 424 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 424 - } - } - }, - "662f0d0e843a6a8496596159": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1039 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 326 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 326 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 361 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 361 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 352 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 352 - } - } - }, - "641d8c2fda8256b93f228fd0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 62446 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31223 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 31223 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31223 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 31223 - } - } - }, - "6439210da97b5d90d4874f30": { - "$overall": { - "2024-12-01T00:00:00+02:00": 79591 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16592 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16592 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17563 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17563 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15441 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15441 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14691 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14691 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15303 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15303 - } - } - }, - "63b85858b775d8ef0ed805cb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 50973 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16994 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16994 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16995 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16995 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16984 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16984 - } - } - }, - "6523e5f01941f73be45e3ac3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1750 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 875 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 875 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 875 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 875 - } - } - }, - "6314b4eb232b8996aaa4c9bc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5880 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2940 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2940 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2940 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2940 - } - } - }, - "668708d194330132afefdfcc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7806 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3903 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3903 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3903 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3903 - } - } - }, - "64c3f5e72df653eabdc06c32": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7928 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3964 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3964 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3964 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3964 - } - } - }, - "643d4f7130bdc004e35b8b0e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3760 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1325 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1325 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 555 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 555 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 555 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 555 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1325 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1325 - } - } - }, - "65d368c9a1dfc9ae299cbd1e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2819 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 503 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 503 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 613 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 613 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1703 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1703 - } - } - }, - "65887da2f14b6f3ef002d584": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1478 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 739 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 739 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 739 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 739 - } - } - }, - "66362cc66c5885a3257940bb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4446 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2223 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2223 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2219 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2219 - } - } - }, - "64362dac4e5fea401a0f19af": { - "$overall": { - "2024-12-01T00:00:00+02:00": 106916 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 53458 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 53458 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 53456 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 53456 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2 - } - } - }, - "634d5b1a27d50dea0bbfa3bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31967 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 119 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 119 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7720 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7720 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12041 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12041 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12087 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12087 - } - } - }, - "62cd681212f9e10011655a35": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2454382 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 817480 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 817480 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2217 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2217 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 817207 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 817207 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 817478 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 817478 - } - } - }, - "64011cb9841d0bacae01f6ff": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1916 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 456 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 456 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 144 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 144 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 416 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 416 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 470 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 470 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 430 - } - } - }, - "6569c906478e147113dd7a9e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 992 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 490 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 490 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 496 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 496 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "67463a802c32fe389fa61341": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2047 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1024 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1024 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 896 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 896 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 127 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 127 - } - } - }, - "66704e3f30319d13334f4306": { - "$overall": { - "2024-12-01T00:00:00+02:00": 850592 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 324 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 324 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 366818 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 366818 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 483450 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 483450 - } - } - }, - "66319137a95d2d5be0cffdd5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2876 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1438 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1438 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1438 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1438 - } - } - }, - "64d2121ee443560425c07189": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2270 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1135 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1135 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1135 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1135 - } - } - }, - "65453e2c44cca773bdf1cdd7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 38 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 19 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 19 - } - } - }, - "65b03e6d7facd2ac9be61dc4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2152 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1076 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1076 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 862 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 862 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 214 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 214 - } - } - }, - "65799faaab5221590f7f1cc1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 740 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 305 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 305 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 130 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 130 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 175 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 175 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 130 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 130 - } - } - }, - "6568b37faa67fd979c0b94d8": { - "$overall": { - "2024-12-01T00:00:00+02:00": 770 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 148 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 148 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 148 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 148 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 148 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 148 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 326 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 326 - } - } - }, - "6437a1cdc3f9dd9ef6a22609": { - "$overall": { - "2024-12-01T00:00:00+02:00": 29065 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9687 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9687 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9687 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9687 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9689 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9689 - } - } - }, - "6525396bae3f3225a9475db0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23311 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 285 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 285 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6696 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6696 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8432 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8432 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2170 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2170 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 858 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 858 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4870 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4870 - } - } - }, - "64dbea7b28a0b10b3b77239e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5928 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2964 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2964 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2964 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2964 - } - } - }, - "63317d6327d50dea0b03d16e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1112 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1034 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1034 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 48 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 48 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 30 - } - } - }, - "652d099361752f4c288defb9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1152 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 576 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 576 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 576 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 576 - } - } - }, - "665f34e28e2550325700cda9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 636 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 318 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 318 - } - } - }, - "63a32b86bee1d5aed72d7f15": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12903 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2432 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2432 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2904 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2904 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 472 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 472 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4663 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4663 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2432 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2432 - } - } - }, - "659d3b40f58e905eca1793b0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 708 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 354 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 354 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 354 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 354 - } - } - }, - "63bb02b5063f6d94cdf18ac9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12973 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4001 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4001 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1499 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1499 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3015 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3015 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 63 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 63 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4395 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4395 - } - } - }, - "6572fd669788e6811d7b4d64": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14745 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4915 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4915 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4915 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4915 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4915 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4915 - } - } - }, - "64e3554548249e7e76aeffc3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13526 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2791 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2791 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2744 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2744 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2074 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2074 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2791 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2791 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3126 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3126 - } - } - }, - "654fe30fc36c6d67b96de432": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5806 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2903 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2903 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2903 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2903 - } - } - }, - "63b6208e711db04e8129df6b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12017 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4483 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4483 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3051 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3051 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4483 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4483 - } - } - }, - "6627ff494ad60adb146eca32": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6346 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1371 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1371 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 458 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 458 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1638 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1638 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 849 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 849 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2030 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2030 - } - } - }, - "65c1f64ef94456f501d98f49": { - "$overall": { - "2024-12-01T00:00:00+02:00": 209344 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 104672 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 104672 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 104672 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 104672 - } - } - }, - "657006a1d69593bcb426d80e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1364 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 682 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 682 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 682 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 682 - } - } - }, - "63a988938099fc7fe0b9f12d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 828 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 409 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 409 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 419 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 419 - } - } - }, - "64c1760e3ec3e6a351ea3ba1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1414 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 707 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 707 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 707 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 707 - } - } - }, - "647d42173a4ec8a59984c750": { - "$overall": { - "2024-12-01T00:00:00+02:00": 44321 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13970 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13970 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13970 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13970 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2411 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2411 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13970 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13970 - } - } - }, - "66b3c633abc563f5ee1c4ffa": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8020 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1287 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1287 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2723 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2723 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4010 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4010 - } - } - }, - "6433d2fc6e1e72f63f63b5fe": { - "$overall": { - "2024-12-01T00:00:00+02:00": 80764 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 40382 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 40382 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 40382 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 40382 - } - } - }, - "6422c50c5876c8840c8b4668": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12794 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6397 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6397 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6397 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6397 - } - } - }, - "653fbf348928fc83db032ef4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1200 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 600 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 600 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 600 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 600 - } - } - }, - "668d398684227ca750502c57": { - "$overall": { - "2024-12-01T00:00:00+02:00": 230706 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30999 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 30999 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 90157 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 90157 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 107662 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 107662 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1888 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1888 - } - } - }, - "628f82923c3e82001812b7cf": { - "$overall": { - "2024-12-01T00:00:00+02:00": 490 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 245 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 245 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 245 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 245 - } - } - }, - "6635236c843a6a8496d4d38e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 606 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 303 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 303 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 303 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 303 - } - } - }, - "65f2f98b79ffb10acbce98c2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2730 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1163 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1163 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 202 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 202 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1365 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1365 - } - } - }, - "63b80e5704fdc888671f3820": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1026 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 423 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 423 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 513 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 513 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 90 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 90 - } - } - }, - "64e46fc009b229a7c5c1735c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21558 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5384 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5384 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5395 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5395 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10779 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10779 - } - } - }, - "63b3f614749085d8f285703a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27350 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6187 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6187 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6549 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6549 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6540 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6540 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 135 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 135 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7939 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7939 - } - } - }, - "667d2415de5890bc6c29b3cc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16153 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5730 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5730 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4642 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4642 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5781 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5781 - } - } - }, - "648e433db5f1ae122b746d19": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5568 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2784 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2784 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2784 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2784 - } - } - }, - "64b703eb90b5785d4734577a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4350 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 773 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 773 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1800 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1800 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 69 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 69 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1708 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1708 - } - } - }, - "6641cac9c4df36a9648c8dd5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17739 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6280 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6280 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5674 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5674 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5785 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5785 - } - } - }, - "66fa9de25d6b8aa393727348": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12504 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4316 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4316 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4114 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4114 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4074 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4074 - } - } - }, - "63eaaa4dd1a5554c97db1b86": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4984 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2486 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2486 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2492 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2492 - } - } - }, - "654bab8b191027742aa28ec7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5522 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1841 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1841 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1840 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1840 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1841 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1841 - } - } - }, - "66d536cdcf609b1343d0e115": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2184 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 800 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 800 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 513 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 513 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 871 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 871 - } - } - }, - "65ceaef2535ad490c942a13c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 39639 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2718 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2718 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2718 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2718 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1239 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1239 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30382 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 30382 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2582 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2582 - } - } - }, - "66a79f82dfafba8038bc3399": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3085 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 874 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 874 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1092 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1092 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1119 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1119 - } - } - }, - "652d210133aa2d8c68b1bea6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24345 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8115 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8115 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8115 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8115 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8115 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8115 - } - } - }, - "65f086bfeb4977909f034ec2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1720 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 860 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 860 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 860 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 860 - } - } - }, - "6335791aee1316a5c89b6d93": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15928 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7964 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7964 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7964 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7964 - } - } - }, - "65439145e3bcee0f76a5a368": { - "$overall": { - "2024-12-01T00:00:00+02:00": 33168 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2945 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2945 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2945 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2945 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2945 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2945 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2945 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2945 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21388 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 21388 - } - } - }, - "624c1d9fdd3137001824f6ef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23996 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11998 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11998 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11998 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11998 - } - } - }, - "667afbe4231acc7b876e0a8a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1167 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 195 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 195 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 243 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 243 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 243 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 243 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 243 - } - } - }, - "656dbe9f27f644ad0ecba9ae": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1830 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 915 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 915 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 915 - } - } - }, - "64c03a19bab542bccfebc4c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 37866 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1495 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1495 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 35078 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 35078 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1293 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1293 - } - } - }, - "6593fa76f58e905ecac67a12": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30713 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15356 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15356 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15357 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 15357 - } - } - }, - "651d2708e1b82d64b37fb064": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1544 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 772 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 772 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 772 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 772 - } - } - }, - "64db6d7084fbabb0eef2e7a0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 70650 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23550 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23550 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23550 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23550 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23550 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23550 - } - } - }, - "64469b1b4919b8d7cbf845ef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23278 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3344 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3344 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7837 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7837 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3344 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3344 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 399 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 399 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8354 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8354 - } - } - }, - "658a048acb274a771b085163": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2430 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1215 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1215 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1215 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1215 - } - } - }, - "655c93211a91da1b109bea70": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1656 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 632 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 632 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 275 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 275 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 117 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 117 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 632 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 632 - } - } - }, - "651ea1381df1b46454f21192": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3174 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1587 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1587 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1587 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1587 - } - } - }, - "64df0f4ea9172aa4b7052247": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42556 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11734 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11734 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11040 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11040 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8048 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8048 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11734 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11734 - } - } - }, - "63edbed95f1718af27dc2f2f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 35145 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11715 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11715 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11715 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11715 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11715 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11715 - } - } - }, - "67444c602c32fe389fd89f54": { - "$overall": { - "2024-12-01T00:00:00+02:00": 616 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 607 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 607 - } - } - }, - "6397389154ca30325edb6391": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5934 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1029 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1029 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1937 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1937 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2965 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2965 - } - } - }, - "6507114e90b85787fd58b6d2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 54493 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2278 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2278 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14361 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14361 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 17501 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 17501 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 377 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 377 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19976 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 19976 - } - } - }, - "6543a644e3126f05f0cad775": { - "$overall": { - "2024-12-01T00:00:00+02:00": 95943 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 47971 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 47971 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2123 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2123 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 45849 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 45849 - } - } - }, - "6502d39087135ffdc35caf67": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19536 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16808 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16808 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1364 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1364 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1364 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1364 - } - } - }, - "634826ed27d50dea0ba493f9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 49814 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24907 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 24907 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24907 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 24907 - } - } - }, - "65f3db2b4599fa000c2becc7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1149 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 574 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 574 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 19 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 556 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 556 - } - } - }, - "6615460e6df43c247a0e01bb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 44007 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14669 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14669 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14669 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14669 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14669 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14669 - } - } - }, - "65caa89e619fe4f9cf723907": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34972 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5623 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5623 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23726 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 23726 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5623 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5623 - } - } - }, - "650c474042707458fe59f367": { - "$overall": { - "2024-12-01T00:00:00+02:00": 83813 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 300 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 300 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 300 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 300 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 300 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 300 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 892 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 892 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 82021 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 82021 - } - } - }, - "64ee088296eacf2243b8b25b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7447 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2401 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2401 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2759 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2759 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2287 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2287 - } - } - }, - "6413051f44e9291a6455e3e7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1431 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 477 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 477 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 477 - } - } - }, - "644a988e631887e5f000dae6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14544 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7272 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7272 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7272 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7272 - } - } - }, - "64f0638825339d16c5d2738a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1746 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 535 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 535 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 335 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 335 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 535 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 535 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 341 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 341 - } - } - }, - "6549444cb6c1c9448db38bc2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 60 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 34 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 34 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 13 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 13 - } - } - }, - "64aa3f5d5f8a9af8437ea498": { - "$overall": { - "2024-12-01T00:00:00+02:00": 23744 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 85 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 85 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6896 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6896 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6950 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6950 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1424 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1424 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 537 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 537 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7852 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7852 - } - } - }, - "6329fc7ae2a2de81df4b10a6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7722 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3781 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3781 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 113 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 113 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3828 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3828 - } - } - }, - "64f0c28825339d16c5d8131a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 576 - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 288 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 288 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 288 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 288 - } - } - }, - "6557f01a8c7cd7ff32f2d475": { - "$overall": { - "2024-12-01T00:00:00+02:00": 133868 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26402 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 26402 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27331 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 27331 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26402 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 26402 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27331 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 27331 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26402 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 26402 - } - } - }, - "65aad6098e557ef0afa191c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7085 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1420 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1420 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1420 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1420 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1420 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1420 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1405 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1405 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1420 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1420 - } - } - }, - "6639346438754624b559d51d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 615 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 30 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 277 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 277 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 31 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 31 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 277 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 277 - } - } - }, - "6571c58bfd6a606fd6c8f3f0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 592 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 296 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 296 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 296 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 296 - } - } - }, - "63cf21de42cfbce360219228": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1004 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 502 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 502 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 502 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 502 - } - } - }, - "667abaa4218289a1c466b985": { - "$overall": { - "2024-12-01T00:00:00+02:00": 560 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 280 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 280 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 280 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 280 - } - } - }, - "65129c6a87135ffdc368e7a3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3109 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 940 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 940 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 970 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 970 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1001 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1001 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 198 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 198 - } - } - }, - "63f586fd589ed09e95f0010f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1494 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 747 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 747 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 747 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 747 - } - } - }, - "64c7be962df653eabd0a53dd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2019 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 673 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 673 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 673 - } - } - }, - "64d7bb315b5e6bb444d4dd86": { - "$overall": { - "2024-12-01T00:00:00+02:00": 19218 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7661 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7661 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3896 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3896 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7661 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 7661 - } - } - }, - "663d16aa34ea4ddc9b9f2f3d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1248 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 624 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 624 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 624 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 624 - } - } - }, - "6673d3288b7329c353ad689d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2116 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1058 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1058 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1058 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1058 - } - } - }, - "66cedf34cf609b134361bfa7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9254 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4627 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4627 - } - } - }, - "64e793a5dd99c21f1ef1ddcb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 73593 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11192 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11192 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5863 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5863 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16799 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16799 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 39739 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 39739 - } - } - }, - "64ca38d1a936a1d182441a27": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1528 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 764 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 764 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 764 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 764 - } - } - }, - "6635b78bbe41ef77518aaba0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 60153 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30076 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 30076 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30077 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 30077 - } - } - }, - "65f440088edf3eee31cf371b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1444 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 722 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 722 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 722 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 722 - } - } - }, - "65537ecc00c55a508c06f6ce": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9850 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4925 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4925 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4925 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4925 - } - } - }, - "63ed36d0f38aed64140c6720": { - "$overall": { - "2024-12-01T00:00:00+02:00": 593 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 278 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 278 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 185 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 185 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 130 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 130 - } - } - }, - "653ba5e0583a1ec8f82b3589": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2968 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1484 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1484 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1484 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1484 - } - } - }, - "627cf999d4869d0018625c67": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7475 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3692 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3692 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 91 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 91 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3692 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3692 - } - } - }, - "65f8f7959343b5be34ab729c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 25584 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12792 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12792 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12792 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12792 - } - } - }, - "6687b6fe3069ddef14178411": { - "$overall": { - "2024-12-01T00:00:00+02:00": 15808 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2835 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2835 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12973 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12973 - } - } - }, - "62a0b9433de29f001cb6626f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7289 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2190 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2190 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 112 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 112 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2812 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2812 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2175 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2175 - } - } - }, - "651fca9cb03ff038cef1c54f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8352 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2088 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2088 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2088 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2088 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2088 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2088 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2088 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2088 - } - } - }, - "650af582c016453d5bdfb209": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1046 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 523 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 523 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 523 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 523 - } - } - }, - "64c78706e994a8dc20cdb2e1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 510 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 255 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 255 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 255 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 255 - } - } - }, - "6634cbe4612e6f34a400b05e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 507 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 241 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 241 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 241 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 241 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 22 - } - } - }, - "67475e932c32fe389fa51052": { - "$overall": { - "2024-12-01T00:00:00+02:00": 963 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 477 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 486 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 486 - } - } - }, - "670d176b8b5274f547d231c9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 626 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 310 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 310 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 316 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 316 - } - } - }, - "671faf6b285bc655d85f6e65": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1050 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 534 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 534 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 55 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 461 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 461 - } - } - }, - "6600f0d38453b14f2ff41c7d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1038 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 430 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 178 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 178 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 430 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 430 - } - } - }, - "66ce471dcf609b1343289560": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42003 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21003 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 21003 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21000 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 21000 - } - } - }, - "64f09213faeddba41e0137d9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2558 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 634 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 634 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 734 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 734 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 172 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 172 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 348 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 348 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 670 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 670 - } - } - }, - "65718e1d37b5f612059c62ef": { - "$overall": { - "2024-12-01T00:00:00+02:00": 145961 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 121536 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 121536 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24425 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 24425 - } - } - }, - "63a3be9fe0b58885ea9a25b0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 546 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 273 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 273 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 273 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 273 - } - } - }, - "632cae5927d50dea0bf3898b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3816 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1273 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1273 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1270 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1270 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1273 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1273 - } - } - }, - "6502ec79f39b9230da7cc89f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5754 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2408 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2408 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 548 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 548 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2798 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2798 - } - } - }, - "648079c03a4ec8a5999d3eb1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 598 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 299 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 299 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 299 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 299 - } - } - }, - "653ffc80c93cc0129ad126ab": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1065 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 183 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 183 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 294 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 294 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 294 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 294 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 294 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 294 - } - } - }, - "671dcbd5fb21db27364e8179": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9231 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3047 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3047 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3918 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3918 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2266 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2266 - } - } - }, - "65fbe3a58453b14f2f670e14": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16175 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5143 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5143 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1020 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1020 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4869 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4869 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4869 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4869 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 274 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 274 - } - } - }, - "64ef9990faeddba41ef3caae": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1544 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 772 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 772 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 689 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 689 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 83 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 83 - } - } - }, - "658e6a3b0ad62708782a93bf": { - "$overall": { - "2024-12-01T00:00:00+02:00": 616 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 308 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 308 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 308 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 308 - } - } - }, - "6684fd53e40a50735b55a981": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1794 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 894 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 894 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 894 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 894 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6 - } - } - }, - "65e5b2bac09e1cf82ec747bd": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1028 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 514 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 514 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 514 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 514 - } - } - }, - "65af69c5aeb88319ddace25a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 110286 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55143 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 55143 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55143 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 55143 - } - } - }, - "6481d805720b54f89e143404": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2048 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1024 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1024 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1024 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1024 - } - } - }, - "66a0f9f7f502999ed8453644": { - "$overall": { - "2024-12-01T00:00:00+02:00": 899 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 301 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 301 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 298 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 298 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 300 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 300 - } - } - }, - "643e8d58b6a53d8ae70721c2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 43110 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21555 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 21555 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21555 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 21555 - } - } - }, - "655cccfb8c7cd7ff32031773": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3245 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 649 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 649 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1298 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1298 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1298 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1298 - } - } - }, - "6448e3efe2067a03ba33cbb7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 7054 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3527 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3527 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3527 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3527 - } - } - }, - "66432c55c4df36a964927b2c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 85498 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42654 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42654 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42645 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42645 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 194 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 194 - } - } - }, - "6630a51483064b959c801961": { - "$overall": { - "2024-12-01T00:00:00+02:00": 67700 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6257 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6257 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 33850 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 33850 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 27593 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 27593 - } - } - }, - "65fb16744fe3628e5e65fe2e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 762 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 87 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 87 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 296 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 296 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 379 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 379 - } - } - }, - "652e5833fff93419480c951b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 292754 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146377 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 146377 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 146377 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 146377 - } - } - }, - "65f9e3b139829e6c76826cb5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1072146 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 184418 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 184418 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 150740 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 150740 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 184424 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 184424 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 552564 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 552564 - } - } - }, - "67212578d50b4e9ff9a6cc1f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 459 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 151 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 151 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 100 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 100 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 208 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 208 - } - } - }, - "6540cb89c086274eec8fb0b1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22658 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11329 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11329 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5220 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5220 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6109 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6109 - } - } - }, - "671bcf830ab03d9467221e9b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 636 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 318 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 318 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 318 - } - } - }, - "66032532f43359bff28c011f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 609354 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304677 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 304677 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304677 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 304677 - } - } - }, - "63215ba3a4ca4df9242c24c4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1536 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 673 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 190 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 190 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 673 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 673 - } - } - }, - "6593f529f58e905ecac5cf4b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 60125 - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4558 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4558 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12276 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12276 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16868 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 16868 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 8213 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 8213 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18210 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 18210 - } - } - }, - "642552b70136cef86a79373c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1205 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 481 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 481 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 222 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 222 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 21 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 21 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 481 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 481 - } - } - }, - "661541fa6df43c247a0a31f9": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1905 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 895 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 895 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 895 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 895 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 115 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 115 - } - } - }, - "66828021e73f8d95adbb100f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9080 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2370 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2370 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2170 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2170 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 153 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 153 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4387 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4387 - } - } - }, - "63a81723bee1d5aed77eeecc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 369 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 123 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 123 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 123 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 123 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 123 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 123 - } - } - }, - "63362369e2a2de81df9b0573": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5508 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1483 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1483 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1271 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1271 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1261 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1261 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1493 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1493 - } - } - }, - "6508ba6e7722fc74ea9637ec": { - "$overall": { - "2024-12-01T00:00:00+02:00": 16466 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2507 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2507 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3550 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3550 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2898 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2898 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1043 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1043 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6468 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6468 - } - } - }, - "643682a035c8dd9a2c46ac2b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 107320 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 57733 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 57733 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14979 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14979 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14979 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14979 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9870 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9870 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9759 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9759 - } - } - }, - "6523dfc76b6e9b692e5b79d6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1950 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 975 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 975 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 975 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 975 - } - } - }, - "6759b8ec6b43e4625123293e": { - "$overall": { - "2024-12-01T00:00:00+02:00": 632 - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 233 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 233 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 55 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 55 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 302 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 302 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 42 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 42 - } - } - }, - "6453755860f1803b3a3fba83": { - "$overall": { - "2024-12-01T00:00:00+02:00": 775 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 270 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 270 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 270 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 270 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 235 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 235 - } - } - }, - "659b604dbfebd8d8d51299ca": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11202 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3734 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3734 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3734 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3734 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3734 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3734 - } - } - }, - "63320239ee1316a5c87e38d1": { - "$overall": { - "2024-12-01T00:00:00+02:00": 36924 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18462 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 18462 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 18462 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 18462 - } - } - }, - "62fe5f8f227ab843d4272a38": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4394 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1416 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1416 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1488 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1488 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1490 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1490 - } - } - }, - "6578af0c7500743a91038c4b": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1200 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 400 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 400 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 400 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 400 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 400 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 400 - } - } - }, - "63a059f5bee1d5aed7e4d95c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4239 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1413 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1413 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1413 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1413 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1413 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1413 - } - } - }, - "6322333a2d7b721933bd8cf6": { - "$overall": { - "2024-12-01T00:00:00+02:00": 30410 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10656 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10656 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9980 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9980 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9774 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9774 - } - } - }, - "644c1877631887e5f006a54f": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3573 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1191 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1191 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1191 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1191 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1191 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1191 - } - } - }, - "657752b62682a8ccf9887a7c": { - "$overall": { - "2024-12-01T00:00:00+02:00": 298157 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 149115 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 149115 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 304 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 304 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 148669 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 148669 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 58 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 58 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 11 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 11 - } - } - }, - "65eb2863bd6a1b3de8913c21": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5027 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 532 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 532 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 775 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 775 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2661 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2661 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1059 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1059 - } - } - }, - "63d31df842cfbce360a1f91d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2047 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 512 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 512 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 533 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 533 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 458 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 458 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 544 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 544 - } - } - }, - "65e5c6dde5b9e5a88a318d93": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1159 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 231 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 231 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 697 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 697 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 231 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 231 - } - } - }, - "651c209f8816295152811079": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2513 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 22 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 22 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 751 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 751 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 870 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 870 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 870 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 870 - } - } - }, - "636044f61fbb8368897eadbc": { - "$overall": { - "2024-12-01T00:00:00+02:00": 72240 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 36120 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 36120 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 36120 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 36120 - } - } - }, - "669ba0033c94be87b123b8c5": { - "$overall": { - "2024-12-01T00:00:00+02:00": 24392 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12196 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12196 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12196 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 12196 - } - } - }, - "646d9f170b49196df3ab5f80": { - "$overall": { - "2024-12-01T00:00:00+02:00": 28812 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14406 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14406 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 14406 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 14406 - } - } - }, - "64ae84fa90b5785d4716e362": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2824 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1412 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1412 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1412 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1412 - } - } - }, - "66ac042fb11ac224eaf4f23a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 32302 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10782 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10782 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10782 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10782 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 10738 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 10738 - } - } - }, - "6298723bbf5f05001986dd80": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1230 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 615 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 615 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 615 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 615 - } - } - }, - "63c8f9dd69a571f23a1f87d0": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9259 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4627 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 5 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4627 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4627 - } - } - }, - "64a079225cccb636d843bd26": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3306 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1653 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1653 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1653 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1653 - } - } - }, - "6436e7094f087a109c0322a7": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12680 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6340 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6340 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 6340 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 6340 - } - } - }, - "656f1ea74663d4c5f711bce4": { - "$overall": { - "2024-12-01T00:00:00+02:00": 714 - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 219 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 219 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 219 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 219 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 276 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 276 - } - } - }, - "665f80fe8e255032572549f2": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1759 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 351 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 351 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 351 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 355 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 355 - } - }, - "sms": { - "$overall": { - "2024-12-01T00:00:00+02:00": 351 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 351 - } - } - }, - "6605a26d8b3193b7f042cff3": { - "$overall": { - "2024-12-01T00:00:00+02:00": 461 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 199 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 199 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 25 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 25 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 29 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 29 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 208 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 208 - } - } - }, - "6627ad47fe81f5c852ec1b6a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 12270 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4014 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4014 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 117 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 117 - } - }, - "push": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4008 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4008 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 4131 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 4131 - } - } - }, - "64477125ac1c08f04edc14aa": { - "$overall": { - "2024-12-01T00:00:00+02:00": 26330 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9881 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9881 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3284 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3284 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 3284 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 3284 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 9881 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 9881 - } - } - }, - "63fa339af93b4fa85aac153d": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1312 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 486 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 486 - } - }, - "digest": { - "$overall": { - "2024-12-01T00:00:00+02:00": 413 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 413 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 413 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 413 - } - } - }, - "65e0b87e3a2387ff89a82beb": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1410 - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 414 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 414 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 705 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 705 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 291 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 291 - } - } - }, - "638241fa15685362a30e0365": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1440 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 480 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 480 - } - }, - "delay": { - "$overall": { - "2024-12-01T00:00:00+02:00": 480 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 480 - } - }, - "chat": { - "$overall": { - "2024-12-01T00:00:00+02:00": 480 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 480 - } - } - }, - "6578cf542c7e267bc3e3897a": { - "$overall": { - "2024-12-01T00:00:00+02:00": 5828 - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2090 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2090 - } - }, - "email": { - "$overall": { - "2024-12-01T00:00:00+02:00": 1648 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 1648 - } - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 2090 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 2090 - } - } - }, - "67219003d36466abaeb1f995": { - "$overall": { - "2024-12-01T00:00:00+02:00": 696 - }, - "in_app": { - "$overall": { - "2024-12-01T00:00:00+02:00": 348 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 348 - } - }, - "trigger": { - "$overall": { - "2024-12-01T00:00:00+02:00": 348 - }, - "undefined": { - "2024-12-01T00:00:00+02:00": 348 - } - } - } - } - }, - "time_comparison": { - "date_range": { - "from_date": "2024-11-01T00:00:00+02:00", - "to_date": "2024-11-30T23:59:59.999000+02:00" - }, - "series": { - "A. Notification Subscriber Event Trigger [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25243970 - }, - "63d31df842cfbce360a1f91d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 632 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 632 - }, - "Listing Updated": { - "2024-11-01T00:00:00+02:00": 562 - }, - "Listing Cancellation Request": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Listing Created": { - "2024-11-01T00:00:00+02:00": 43 - }, - "Magic Link": { - "2024-11-01T00:00:00+02:00": 16 - } - } - }, - "6680a87553d09da082d4fd31": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4402 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4402 - }, - "Overdue Invoices": { - "2024-11-01T00:00:00+02:00": 1701 - }, - "Items to order": { - "2024-11-01T00:00:00+02:00": 2113 - }, - "Overdue Purchase Orders": { - "2024-11-01T00:00:00+02:00": 588 - } - } - }, - "645863ebd6925ea19b7d2456": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2821 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2821 - }, - "Workflow Notification": { - "2024-11-01T00:00:00+02:00": 2821 - } - } - }, - "6337ca88ee1316a5c8a9009e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 922 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 922 - }, - "Projects": { - "2024-11-01T00:00:00+02:00": 524 - }, - "Tasks": { - "2024-11-01T00:00:00+02:00": 295 - }, - "Timesheets": { - "2024-11-01T00:00:00+02:00": 100 - } - } - }, - "660c351dbfb1f0d56f7a6fcc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2468 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2468 - }, - "requestlist-actorsaddedtoitem-v1": { - "2024-11-01T00:00:00+02:00": 86 - }, - "requestlist-duedatereminders-v1": { - "2024-11-01T00:00:00+02:00": 2382 - } - } - }, - "643682a035c8dd9a2c46ac2b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 112587 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 112587 - }, - "ConjunctionStatusUpdate": { - "2024-11-01T00:00:00+02:00": 11768 - }, - "FileFailureProcessing": { - "2024-11-01T00:00:00+02:00": 33 - }, - "ChatRoomCreated": { - "2024-11-01T00:00:00+02:00": 2513 - }, - "ManoeuvreScreeningSummaryUpdate": { - "2024-11-01T00:00:00+02:00": 9174 - }, - "ConjunctionSummaryUpdate": { - "2024-11-01T00:00:00+02:00": 89099 - } - } - }, - "664c96c0e6f72af294ae867a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 525 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 525 - }, - "Add On": { - "2024-11-01T00:00:00+02:00": 40 - }, - "Independent Request Acceptance": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Associate Disconnection": { - "2024-11-01T00:00:00+02:00": 23 - }, - "Independent Association Request": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Place Order": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Independent Request Rejection": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Sign Contract": { - "2024-11-01T00:00:00+02:00": 306 - }, - "Subscription": { - "2024-11-01T00:00:00+02:00": 45 - } - } - }, - "6549444cb6c1c9448db38bc2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1052 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1052 - }, - "Subscription Notice": { - "2024-11-01T00:00:00+02:00": 1052 - } - } - }, - "659d3b40f58e905eca1793b0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 122 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 122 - }, - "Test notification": { - "2024-11-01T00:00:00+02:00": 122 - } - } - }, - "66cb2b9ecf609b1343ac5d85": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7628 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7628 - }, - "admin-subscriptions": { - "2024-11-01T00:00:00+02:00": 474 - }, - "admin-accounts": { - "2024-11-01T00:00:00+02:00": 7154 - } - } - }, - "66d61e9dcf609b134368c516": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6299 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6299 - }, - "landlord_tenancy_confirmed": { - "2024-11-01T00:00:00+02:00": 9 - }, - "send_request_to_supplier": { - "2024-11-01T00:00:00+02:00": 85 - }, - "maintenance_created_from_inspection": { - "2024-11-01T00:00:00+02:00": 130 - }, - "property_owner_tenancy_extended": { - "2024-11-01T00:00:00+02:00": 11 - }, - "new_tenant_expense": { - "2024-11-01T00:00:00+02:00": 16 - }, - "bond_payment_received": { - "2024-11-01T00:00:00+02:00": 11 - }, - "private_viewing_reminder_non_user": { - "2024-11-01T00:00:00+02:00": 11 - }, - "reset_password_instructions": { - "2024-11-01T00:00:00+02:00": 15 - }, - "new_chat_message": { - "2024-11-01T00:00:00+02:00": 376 - }, - "new_tenancy_request_property_manager_variant": { - "2024-11-01T00:00:00+02:00": 56 - }, - "rent_payment_sent": { - "2024-11-01T00:00:00+02:00": 408 - }, - "inspection_completed": { - "2024-11-01T00:00:00+02:00": 41 - }, - "tenancy_extension_added": { - "2024-11-01T00:00:00+02:00": 15 - }, - "landlord_has_signed": { - "2024-11-01T00:00:00+02:00": 11 - }, - "rent_payment_overdue": { - "2024-11-01T00:00:00+02:00": 75 - }, - "tenancy_in_arrears": { - "2024-11-01T00:00:00+02:00": 33 - }, - "applicant_added": { - "2024-11-01T00:00:00+02:00": 35 - }, - "daily_listing_matches": { - "2024-11-01T00:00:00+02:00": 184 - }, - "private_viewing_confirmed": { - "2024-11-01T00:00:00+02:00": 22 - }, - "rent_payment_received": { - "2024-11-01T00:00:00+02:00": 464 - }, - "renter_tenancy_confirmed_property_management_variant": { - "2024-11-01T00:00:00+02:00": 35 - }, - "send_request_to_property_owner": { - "2024-11-01T00:00:00+02:00": 11 - }, - "share_with_owner": { - "2024-11-01T00:00:00+02:00": 45 - }, - "close_reminder": { - "2024-11-01T00:00:00+02:00": 253 - }, - "reminder_to_confirm": { - "2024-11-01T00:00:00+02:00": 11 - }, - "tenancy_invite_accepted_landlord": { - "2024-11-01T00:00:00+02:00": 14 - }, - "tenancy_request_accepted": { - "2024-11-01T00:00:00+02:00": 99 - }, - "payment_remittance": { - "2024-11-01T00:00:00+02:00": 21 - }, - "rental_application_unsuccessful": { - "2024-11-01T00:00:00+02:00": 20 - }, - "property_manager_tenancy_locked_in": { - "2024-11-01T00:00:00+02:00": 90 - }, - "new_enquiry_message": { - "2024-11-01T00:00:00+02:00": 2154 - }, - "expense_updated_for_uninvited_tenants": { - "2024-11-01T00:00:00+02:00": 14 - }, - "confirmation_instructions": { - "2024-11-01T00:00:00+02:00": 116 - }, - "account_summary": { - "2024-11-01T00:00:00+02:00": 297 - }, - "awaiting_sign_offs": { - "2024-11-01T00:00:00+02:00": 84 - }, - "tenancy_invite_accepted": { - "2024-11-01T00:00:00+02:00": 8 - }, - "external_bond_filed": { - "2024-11-01T00:00:00+02:00": 6 - }, - "open_home_reminder": { - "2024-11-01T00:00:00+02:00": 8 - }, - "tenancy_services_bond_filing": { - "2024-11-01T00:00:00+02:00": 18 - }, - "tenancy_variation_signed": { - "2024-11-01T00:00:00+02:00": 11 - }, - "bond_payment_due": { - "2024-11-01T00:00:00+02:00": 85 - }, - "new_rental_application": { - "2024-11-01T00:00:00+02:00": 91 - }, - "background_check_completed": { - "2024-11-01T00:00:00+02:00": 26 - }, - "time_confirmed_with_message": { - "2024-11-01T00:00:00+02:00": 62 - }, - "billing_method_charge_failed": { - "2024-11-01T00:00:00+02:00": 94 - }, - "rent_split_set": { - "2024-11-01T00:00:00+02:00": 8 - }, - "charge_receipt": { - "2024-11-01T00:00:00+02:00": 25 - }, - "uninvited_tenant_variation_document": { - "2024-11-01T00:00:00+02:00": 9 - }, - "tenancy_expiring": { - "2024-11-01T00:00:00+02:00": 59 - }, - "listing_approved": { - "2024-11-01T00:00:00+02:00": 43 - }, - "property_owner_tenancy_confirmed": { - "2024-11-01T00:00:00+02:00": 18 - }, - "rent_in_advance_reminder": { - "2024-11-01T00:00:00+02:00": 45 - }, - "user_edited_notice": { - "2024-11-01T00:00:00+02:00": 19 - }, - "renter_tenancy_confirmed": { - "2024-11-01T00:00:00+02:00": 15 - }, - "private_viewing_reminder": { - "2024-11-01T00:00:00+02:00": 12 - }, - "rental_application_accepted": { - "2024-11-01T00:00:00+02:00": 24 - }, - "tenancy_extension_confirmed": { - "2024-11-01T00:00:00+02:00": 61 - }, - "rental_application_shortlisted": { - "2024-11-01T00:00:00+02:00": 25 - }, - "updated_tenant_expense": { - "2024-11-01T00:00:00+02:00": 62 - }, - "first_application_made": { - "2024-11-01T00:00:00+02:00": 18 - }, - "applicant_shortlisted": { - "2024-11-01T00:00:00+02:00": 17 - }, - "property_manager_tenancy_confirmed": { - "2024-11-01T00:00:00+02:00": 97 - } - } - }, - "653ffc80c93cc0129ad126ab": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "Account Threshold Notification": { - "2024-11-01T00:00:00+02:00": 379 - }, - "In-App notification": { - "2024-11-01T00:00:00+02:00": 495 - } - } - }, - "63fbb0118920eed9471fa1b2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22178 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22178 - }, - "Workflow Notification": { - "2024-11-01T00:00:00+02:00": 22113 - }, - "Intern Test": { - "2024-11-01T00:00:00+02:00": 60 - } - } - }, - "656197541eb377d7c3b258a0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5677 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5677 - }, - "Notification Workflow": { - "2024-11-01T00:00:00+02:00": 5677 - } - } - }, - "641d8c2fda8256b93f228fd0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 33164 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 33164 - }, - "order-placed": { - "2024-11-01T00:00:00+02:00": 3006 - }, - "user-product-deleted-from-cart": { - "2024-11-01T00:00:00+02:00": 391 - }, - "notify-me-alerts": { - "2024-11-01T00:00:00+02:00": 382 - }, - "guest-quantity-update-cart": { - "2024-11-01T00:00:00+02:00": 1824 - }, - "orders-canceledBy-seller": { - "2024-11-01T00:00:00+02:00": 11 - }, - "returns-requested": { - "2024-11-01T00:00:00+02:00": 17 - }, - "guest-cart-created": { - "2024-11-01T00:00:00+02:00": 7193 - }, - "guest-product-added-cart": { - "2024-11-01T00:00:00+02:00": 6588 - }, - "customer-signup": { - "2024-11-01T00:00:00+02:00": 147 - }, - "product-added-cart": { - "2024-11-01T00:00:00+02:00": 208 - }, - "canceled-product-from-order": { - "2024-11-01T00:00:00+02:00": 18 - }, - "orders-shipped": { - "2024-11-01T00:00:00+02:00": 3841 - }, - "cart-created": { - "2024-11-01T00:00:00+02:00": 342 - }, - "orders-delivered": { - "2024-11-01T00:00:00+02:00": 2071 - }, - "quantity-updated-cart": { - "2024-11-01T00:00:00+02:00": 131 - }, - "guest-product-deleted-from-cart": { - "2024-11-01T00:00:00+02:00": 6992 - } - } - }, - "65aad6098e557ef0afa191c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "RTUT General": { - "2024-11-01T00:00:00+02:00": 27 - }, - "One-Time-Code": { - "2024-11-01T00:00:00+02:00": 12 - } - } - }, - "64d7bb315b5e6bb444d4dd86": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4034 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4034 - }, - "Onboarding Edited": { - "2024-11-01T00:00:00+02:00": 366 - }, - "Loan Out Approval Requested": { - "2024-11-01T00:00:00+02:00": 213 - }, - "Timecard Changes Made": { - "2024-11-01T00:00:00+02:00": 140 - }, - "timecard-submitted": { - "2024-11-01T00:00:00+02:00": 2936 - }, - "timecard-submitted-on-behalf": { - "2024-11-01T00:00:00+02:00": 225 - }, - "timecard-changes-requested": { - "2024-11-01T00:00:00+02:00": 154 - } - } - }, - "6537ebf5585a37886d9f05b5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9211 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9211 - }, - "Order received - Promoter": { - "2024-11-01T00:00:00+02:00": 4428 - }, - "Order Complete - Customer": { - "2024-11-01T00:00:00+02:00": 4428 - }, - "Event Release - Customers": { - "2024-11-01T00:00:00+02:00": 355 - } - } - }, - "665f34e28e2550325700cda9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58 - }, - "Followers": { - "2024-11-01T00:00:00+02:00": 58 - } - } - }, - "63a32471bee1d5aed72cc01d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7231 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7231 - }, - "Lead created": { - "2024-11-01T00:00:00+02:00": 3871 - }, - "Offer campaign created": { - "2024-11-01T00:00:00+02:00": 2649 - }, - "Advisory report campaign created": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Offer insurance module export": { - "2024-11-01T00:00:00+02:00": 675 - }, - "Broker integration access granted": { - "2024-11-01T00:00:00+02:00": 19 - } - } - }, - "660ef03291bd69a79e31a321": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9414 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9414 - }, - "Tarefa Compartilhada": { - "2024-11-01T00:00:00+02:00": 22 - }, - "Tarefa Atribuída": { - "2024-11-01T00:00:00+02:00": 9380 - }, - "Notas de Item": { - "2024-11-01T00:00:00+02:00": 12 - } - } - }, - "65129c6a87135ffdc368e7a3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1031 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1031 - }, - "Nouvelle Action": { - "2024-11-01T00:00:00+02:00": 110 - }, - "AM complet": { - "2024-11-01T00:00:00+02:00": 27 - }, - "Non-conformité": { - "2024-11-01T00:00:00+02:00": 42 - }, - "newOrderProductReturn": { - "2024-11-01T00:00:00+02:00": 76 - }, - "commentaire Action": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Rappel Action": { - "2024-11-01T00:00:00+02:00": 684 - }, - "Nouvel AM": { - "2024-11-01T00:00:00+02:00": 49 - }, - "Changement état Action": { - "2024-11-01T00:00:00+02:00": 11 - } - } - }, - "65e5c6dde5b9e5a88a318d93": { - "$overall": { - "2024-11-01T00:00:00+02:00": 498 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 498 - }, - "Dataset Notification": { - "2024-11-01T00:00:00+02:00": 498 - } - } - }, - "64fb853287135ffdc3b410ec": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3977 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3977 - }, - "New Voicemail": { - "2024-11-01T00:00:00+02:00": 480 - }, - "New SMS": { - "2024-11-01T00:00:00+02:00": 3497 - } - } - }, - "63b80e5704fdc888671f3820": { - "$overall": { - "2024-11-01T00:00:00+02:00": 855 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 855 - }, - "Email Notification": { - "2024-11-01T00:00:00+02:00": 675 - }, - "SMS Notification": { - "2024-11-01T00:00:00+02:00": 180 - } - } - }, - "6494e6cab1ef6a7f8830e871": { - "$overall": { - "2024-11-01T00:00:00+02:00": 412 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 412 - }, - "Votre profil a été approuvé": { - "2024-11-01T00:00:00+02:00": 118 - }, - "Votre poste est retourné en haut de liste": { - "2024-11-01T00:00:00+02:00": 64 - }, - "Apply Candidate": { - "2024-11-01T00:00:00+02:00": 116 - }, - "Poste expiré": { - "2024-11-01T00:00:00+02:00": 36 - }, - "Visibilité de votre profil expiré": { - "2024-11-01T00:00:00+02:00": 68 - } - } - }, - "66a79f82dfafba8038bc3399": { - "$overall": { - "2024-11-01T00:00:00+02:00": 249 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 249 - }, - "account-verification-code": { - "2024-11-01T00:00:00+02:00": 229 - }, - "account-verification-code-sms": { - "2024-11-01T00:00:00+02:00": 20 - } - } - }, - "63ac163b2588b530704387fc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 599 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 599 - }, - "Patient sent a message": { - "2024-11-01T00:00:00+02:00": 96 - }, - "Dashboard Patient Activity": { - "2024-11-01T00:00:00+02:00": 83 - }, - "Internal message notification": { - "2024-11-01T00:00:00+02:00": 420 - } - } - }, - "6439d814d3f2f7f8eb014099": { - "$overall": { - "2024-11-01T00:00:00+02:00": 307 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 307 - }, - "invitation created (unregistered)": { - "2024-11-01T00:00:00+02:00": 93 - }, - "Reset password": { - "2024-11-01T00:00:00+02:00": 26 - }, - "subscription upgraded": { - "2024-11-01T00:00:00+02:00": 12 - }, - "invitation created (registered)": { - "2024-11-01T00:00:00+02:00": 56 - }, - "Confirmation instructions": { - "2024-11-01T00:00:00+02:00": 67 - }, - "Invitation accepted": { - "2024-11-01T00:00:00+02:00": 49 - } - } - }, - "641df7485d9af70da9c29397": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1473 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1473 - }, - "common-alerts-email": { - "2024-11-01T00:00:00+02:00": 81 - }, - "common-alerts": { - "2024-11-01T00:00:00+02:00": 829 - }, - "reports": { - "2024-11-01T00:00:00+02:00": 556 - } - } - }, - "6663404493a6b815ffefb2f0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 831074 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 831074 - }, - "Approval request": { - "2024-11-01T00:00:00+02:00": 75486 - }, - "Made effective": { - "2024-11-01T00:00:00+02:00": 439977 - }, - "Action assigned": { - "2024-11-01T00:00:00+02:00": 8787 - }, - "Change request": { - "2024-11-01T00:00:00+02:00": 1402 - }, - "Editors Removed": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Approval complete": { - "2024-11-01T00:00:00+02:00": 15036 - }, - "Editors added": { - "2024-11-01T00:00:00+02:00": 43 - }, - "Action completed": { - "2024-11-01T00:00:00+02:00": 2029 - }, - "Approval received": { - "2024-11-01T00:00:00+02:00": 50264 - }, - "Mentions": { - "2024-11-01T00:00:00+02:00": 77 - }, - "Editor Assigned": { - "2024-11-01T00:00:00+02:00": 126 - }, - "Approvers updated": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Approval declined": { - "2024-11-01T00:00:00+02:00": 5298 - }, - "Editors removed": { - "2024-11-01T00:00:00+02:00": 30 - }, - "Draft updated to latest template": { - "2024-11-01T00:00:00+02:00": 1632 - }, - "Editors Added": { - "2024-11-01T00:00:00+02:00": 31 - }, - "Review request": { - "2024-11-01T00:00:00+02:00": 62960 - }, - "Comment added": { - "2024-11-01T00:00:00+02:00": 75 - }, - "Suggestion added": { - "2024-11-01T00:00:00+02:00": 257 - }, - "New Comment Test Workflow": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Editor assigned": { - "2024-11-01T00:00:00+02:00": 244 - }, - "Owner assigned": { - "2024-11-01T00:00:00+02:00": 20759 - }, - "Review complete": { - "2024-11-01T00:00:00+02:00": 16420 - }, - "Mention in a comment": { - "2024-11-01T00:00:00+02:00": 52 - }, - "New comment": { - "2024-11-01T00:00:00+02:00": 1407 - }, - "Training assigned": { - "2024-11-01T00:00:00+02:00": 124384 - }, - "Task Step completed": { - "2024-11-01T00:00:00+02:00": 4249 - } - } - }, - "6408720f46fde50c6d4affe5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4296 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4296 - }, - "User assigned to a key role": { - "2024-11-01T00:00:00+02:00": 163 - }, - "User invited to an event": { - "2024-11-01T00:00:00+02:00": 236 - }, - "A new feedback": { - "2024-11-01T00:00:00+02:00": 30 - }, - "User mentioned in chat": { - "2024-11-01T00:00:00+02:00": 35 - }, - "User mentioned in a feedback comment": { - "2024-11-01T00:00:00+02:00": 36 - }, - "Note added to a task": { - "2024-11-01T00:00:00+02:00": 79 - }, - "Undone task": { - "2024-11-01T00:00:00+02:00": 3625 - }, - "Invalid value provided in a task": { - "2024-11-01T00:00:00+02:00": 92 - } - } - }, - "6502d39087135ffdc35caf67": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14224 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14224 - }, - "events-dynamo-trigger": { - "2024-11-01T00:00:00+02:00": 4858 - }, - "user-add": { - "2024-11-01T00:00:00+02:00": 8 - }, - "events-changed-status": { - "2024-11-01T00:00:00+02:00": 9358 - } - } - }, - "63c146116c33f15eefc12c8d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2422 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2422 - }, - "Non-critical Alarm [v1]": { - "2024-11-01T00:00:00+02:00": 2422 - } - } - }, - "671b580c7cf00cbadbb9b0c3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 634 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 634 - }, - "Onboarding Workflow": { - "2024-11-01T00:00:00+02:00": 634 - } - } - }, - "6569c906478e147113dd7a9e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23 - }, - "DayTrade Welcome Email": { - "2024-11-01T00:00:00+02:00": 12 - }, - "SEBI RA Account Activated": { - "2024-11-01T00:00:00+02:00": 10 - } - } - }, - "6644fabbfbadc9d325d90248": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1428 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1428 - }, - "Allocation notifications": { - "2024-11-01T00:00:00+02:00": 27 - }, - "No scans notifications": { - "2024-11-01T00:00:00+02:00": 472 - }, - "Persona Notifications": { - "2024-11-01T00:00:00+02:00": 41 - }, - "Enrollment notifications": { - "2024-11-01T00:00:00+02:00": 883 - } - } - }, - "64e77d4b96eacf22439b13cd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1322 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1322 - }, - "invite-contact": { - "2024-11-01T00:00:00+02:00": 6 - }, - "iapp-push-notification": { - "2024-11-01T00:00:00+02:00": 549 - }, - "payment-reminder-past": { - "2024-11-01T00:00:00+02:00": 58 - }, - "push-email-notification": { - "2024-11-01T00:00:00+02:00": 442 - }, - "payment-reminder": { - "2024-11-01T00:00:00+02:00": 49 - }, - "sms-workflow": { - "2024-11-01T00:00:00+02:00": 199 - } - } - }, - "66fc55c5cf609b13433a677d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5988 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5988 - }, - "nda-document-preprocessing": { - "2024-11-01T00:00:00+02:00": 201 - }, - "nda-document-processing-failure": { - "2024-11-01T00:00:00+02:00": 60 - }, - "nda-document-processing": { - "2024-11-01T00:00:00+02:00": 3582 - }, - "nda-document-processed": { - "2024-11-01T00:00:00+02:00": 2145 - } - } - }, - "669d47da98a7c2cace1dea46": { - "$overall": { - "2024-11-01T00:00:00+02:00": 84 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 84 - }, - "task-updates": { - "2024-11-01T00:00:00+02:00": 50 - }, - "initiative-updates": { - "2024-11-01T00:00:00+02:00": 34 - } - } - }, - "652e95466c3964c5a2832222": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5233 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5233 - }, - "The Community - Global Email": { - "2024-11-01T00:00:00+02:00": 2581 - }, - "The Community - Global In-app": { - "2024-11-01T00:00:00+02:00": 2542 - }, - "Student Passport - New Request Notifications": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Local-Environment-CBeach": { - "2024-11-01T00:00:00+02:00": 97 - } - } - }, - "6639346438754624b559d51d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 718 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 718 - }, - "echo-notification": { - "2024-11-01T00:00:00+02:00": 717 - } - } - }, - "6578af0c7500743a91038c4b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 121 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 121 - }, - "Default": { - "2024-11-01T00:00:00+02:00": 121 - } - } - }, - "65df17f92b39eba95ab6ae95": { - "$overall": { - "2024-11-01T00:00:00+02:00": 869 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 869 - }, - "externalUserCreatedAndAssigned": { - "2024-11-01T00:00:00+02:00": 56 - }, - "commentCreated": { - "2024-11-01T00:00:00+02:00": 466 - }, - "descriptionMentioned": { - "2024-11-01T00:00:00+02:00": 14 - }, - "externalAssigneeAdded": { - "2024-11-01T00:00:00+02:00": 98 - }, - "reviewerUpdated": { - "2024-11-01T00:00:00+02:00": 41 - }, - "assigneeUpdated": { - "2024-11-01T00:00:00+02:00": 63 - }, - "commentMentioned": { - "2024-11-01T00:00:00+02:00": 131 - } - } - }, - "628f82923c3e82001812b7cf": { - "$overall": { - "2024-11-01T00:00:00+02:00": 200 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 200 - }, - "Employee Activation": { - "2024-11-01T00:00:00+02:00": 10 - }, - "EMAIL_OTP": { - "2024-11-01T00:00:00+02:00": 190 - } - } - }, - "63362369e2a2de81df9b0573": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1731 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1731 - }, - "CSC_LICENSE_KEY_EXPIRED": { - "2024-11-01T00:00:00+02:00": 43 - }, - "ORDER_CHANGE_REQUEST_USER_MENTIONED_IN_COMMENT": { - "2024-11-01T00:00:00+02:00": 25 - }, - "ORDER_CHANGE_REQUEST_UPDATED": { - "2024-11-01T00:00:00+02:00": 582 - }, - "SUBSCRIPTION_INVOICE_PAID": { - "2024-11-01T00:00:00+02:00": 103 - }, - "SUBSCRIPTION_INVOICE_UPCOMING": { - "2024-11-01T00:00:00+02:00": 40 - }, - "UPLOAD_SESSION_FILE_WILL_BE_DELETED": { - "2024-11-01T00:00:00+02:00": 208 - }, - "SUBSCRIPTION_PAYMENT_FAILED": { - "2024-11-01T00:00:00+02:00": 83 - }, - "Order change request added": { - "2024-11-01T00:00:00+02:00": 384 - }, - "ORDER_CHANGE_REQUEST_ASSIGNEE_CHANGED": { - "2024-11-01T00:00:00+02:00": 126 - }, - "ORDER_CHANGE_REQUEST_ARCHIVED": { - "2024-11-01T00:00:00+02:00": 9 - }, - "ORDER_CHANGE_REQUEST_NEW_COMMENT": { - "2024-11-01T00:00:00+02:00": 128 - } - } - }, - "6523dfc76b6e9b692e5b79d6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1253 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1253 - }, - "Sale Notification": { - "2024-11-01T00:00:00+02:00": 1253 - } - } - }, - "65e5b2bac09e1cf82ec747bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 783 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 783 - }, - "Onboarding": { - "2024-11-01T00:00:00+02:00": 82 - }, - "Network - user create follow request": { - "2024-11-01T00:00:00+02:00": 365 - }, - "Kanban - User assigned to a task": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Network - user answer follow request": { - "2024-11-01T00:00:00+02:00": 324 - } - } - }, - "639c385254ca30325e86f445": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14633 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14633 - }, - "Chasback has expired": { - "2024-11-01T00:00:00+02:00": 15 - }, - "ADMIN_CUSTOM_NOTIFICATION": { - "2024-11-01T00:00:00+02:00": 237 - }, - "Badge targets updated by the admin": { - "2024-11-01T00:00:00+02:00": 486 - }, - "Admin custom installment notifications": { - "2024-11-01T00:00:00+02:00": 6419 - }, - "Merchant's credit line application rejected": { - "2024-11-01T00:00:00+02:00": 19 - }, - "New Invoice Request Received": { - "2024-11-01T00:00:00+02:00": 526 - }, - "Invoice amount refunded by admin": { - "2024-11-01T00:00:00+02:00": 94 - }, - "Installment Overdue": { - "2024-11-01T00:00:00+02:00": 2863 - }, - "Merchant's credit line application approved": { - "2024-11-01T00:00:00+02:00": 66 - }, - "Installment auto-debited from wallet": { - "2024-11-01T00:00:00+02:00": 101 - }, - "Pending Installment Payment Successful": { - "2024-11-01T00:00:00+02:00": 1074 - }, - "Invoice Completely Paid": { - "2024-11-01T00:00:00+02:00": 280 - }, - "Invoice Due For Payment": { - "2024-11-01T00:00:00+02:00": 152 - }, - "2 days before next installment": { - "2024-11-01T00:00:00+02:00": 424 - }, - "Wallet has been topped-up successfully": { - "2024-11-01T00:00:00+02:00": 103 - }, - "On due date of an installment": { - "2024-11-01T00:00:00+02:00": 993 - }, - "1 day before next installment": { - "2024-11-01T00:00:00+02:00": 563 - }, - "Cashback about to expire": { - "2024-11-01T00:00:00+02:00": 128 - }, - "Merchant submits credit line application": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Cashback has been won": { - "2024-11-01T00:00:00+02:00": 45 - }, - "merchant deactivated due to risk transaction": { - "2024-11-01T00:00:00+02:00": 14 - } - } - }, - "6627a8d783dccfeec76eb3f3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4163 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4163 - }, - "logicballs-free-users": { - "2024-11-01T00:00:00+02:00": 3975 - }, - "logicballs-paid-users": { - "2024-11-01T00:00:00+02:00": 188 - } - } - }, - "6578cf542c7e267bc3e3897a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5078 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5078 - }, - "TIMESHEET:REJECT": { - "2024-11-01T00:00:00+02:00": 28 - }, - "TIMESHEET:CREATE": { - "2024-11-01T00:00:00+02:00": 466 - }, - "TIMESHEET:DELETE": { - "2024-11-01T00:00:00+02:00": 153 - }, - "PAYRUN:FAILED": { - "2024-11-01T00:00:00+02:00": 43 - }, - "LEAVE-REQUEST:CREATE": { - "2024-11-01T00:00:00+02:00": 232 - }, - "LEAVE-REQUEST:UPDATE": { - "2024-11-01T00:00:00+02:00": 88 - }, - "LEAVE-REQUEST:REJECT": { - "2024-11-01T00:00:00+02:00": 10 - }, - "LEAVE-REQUEST:APPROVE": { - "2024-11-01T00:00:00+02:00": 83 - }, - "PAYRUN:FILED": { - "2024-11-01T00:00:00+02:00": 3547 - }, - "TIMESHEET:APPROVE": { - "2024-11-01T00:00:00+02:00": 217 - }, - "LEAVE-REQUEST:CANCEL": { - "2024-11-01T00:00:00+02:00": 24 - }, - "TIMESHEET:UPDATE": { - "2024-11-01T00:00:00+02:00": 185 - } - } - }, - "667d2415de5890bc6c29b3cc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6982 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6982 - }, - "GBC": { - "2024-11-01T00:00:00+02:00": 435 - }, - "Manual-notifications": { - "2024-11-01T00:00:00+02:00": 878 - }, - "GBC_Delay": { - "2024-11-01T00:00:00+02:00": 5669 - } - } - }, - "63cea3496779056a3f2fff8d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1249 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1249 - }, - "Patient OTP": { - "2024-11-01T00:00:00+02:00": 22 - }, - "First Time Order Confirmation for subscriber 423": { - "2024-11-01T00:00:00+02:00": 18 - }, - "First Time Order Confirmation": { - "2024-11-01T00:00:00+02:00": 92 - }, - "Pharmacy Email on Exception": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Admin Patient Message": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Patient Welcome": { - "2024-11-01T00:00:00+02:00": 223 - }, - "Admin New Order": { - "2024-11-01T00:00:00+02:00": 155 - }, - "Order Receipt": { - "2024-11-01T00:00:00+02:00": 17 - }, - "Prescription Changed": { - "2024-11-01T00:00:00+02:00": 8 - }, - "New Refill": { - "2024-11-01T00:00:00+02:00": 21 - }, - "firstTimeOrderConfirmation for subscriber 352": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Admin New Patient": { - "2024-11-01T00:00:00+02:00": 279 - }, - "First Time New Prescription": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Order Confirmation": { - "2024-11-01T00:00:00+02:00": 24 - }, - "Export disputes": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Admin Daily Report": { - "2024-11-01T00:00:00+02:00": 136 - }, - "Admin New Prescription": { - "2024-11-01T00:00:00+02:00": 14 - }, - "firstTimeOrderConfirmation for subscriber 421": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Patient Welcome for subscriber 423": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Doctor Message": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Support Message": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 6 - }, - "custom in app messages": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Patient Magic Link": { - "2024-11-01T00:00:00+02:00": 16 - } - } - }, - "650d24f8f39b9230da78520b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 688 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 688 - }, - "New comment mention": { - "2024-11-01T00:00:00+02:00": 13 - }, - "New comment": { - "2024-11-01T00:00:00+02:00": 675 - } - } - }, - "63f2c2af62dd0f648118e82f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44470 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44470 - }, - "pushReminder": { - "2024-11-01T00:00:00+02:00": 15316 - }, - "emailReminder": { - "2024-11-01T00:00:00+02:00": 29154 - } - } - }, - "62ac67523de29f001cb8bfdb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 590 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 590 - }, - "Company team invitation": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Invite to Werk test": { - "2024-11-01T00:00:00+02:00": 472 - }, - "Send Report to the Candidate": { - "2024-11-01T00:00:00+02:00": 111 - } - } - }, - "63fe730e5787050c5df466a9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7061 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7061 - }, - "ve-alerts": { - "2024-11-01T00:00:00+02:00": 4248 - }, - "ve-new-event": { - "2024-11-01T00:00:00+02:00": 159 - }, - "ve-model-changes": { - "2024-11-01T00:00:00+02:00": 2638 - }, - "Untitled": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "667afbe4231acc7b876e0a8a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 414 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 414 - }, - "Contacts": { - "2024-11-01T00:00:00+02:00": 104 - }, - "Tasks": { - "2024-11-01T00:00:00+02:00": 17 - }, - "New Direct Booking Chat": { - "2024-11-01T00:00:00+02:00": 293 - } - } - }, - "668fa1064111ae088df8ecd3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 465 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 465 - }, - "empa-workflow": { - "2024-11-01T00:00:00+02:00": 465 - } - } - }, - "63b4a3edc2c62a5b4b374cc6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 755 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 755 - }, - "Payout Deposit Updated": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Content Published": { - "2024-11-01T00:00:00+02:00": 79 - }, - "Contract Expired": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Offer Accepted": { - "2024-11-01T00:00:00+02:00": 58 - }, - "Contract Signature Reminded": { - "2024-11-01T00:00:00+02:00": 156 - }, - "Contact Added": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Content Message Added": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Collaboration Message Added": { - "2024-11-01T00:00:00+02:00": 84 - }, - "Invoice Status Updated": { - "2024-11-01T00:00:00+02:00": 174 - }, - "Offer Sent": { - "2024-11-01T00:00:00+02:00": 77 - }, - "Invoice Sent": { - "2024-11-01T00:00:00+02:00": 64 - } - } - }, - "640f33277df3c830240b71b4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 429 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 429 - }, - "Weekly family report": { - "2024-11-01T00:00:00+02:00": 300 - }, - "Question support": { - "2024-11-01T00:00:00+02:00": 119 - } - } - }, - "66a0f9f7f502999ed8453644": { - "$overall": { - "2024-11-01T00:00:00+02:00": 710 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 710 - }, - "Project Deletion Notifications": { - "2024-11-01T00:00:00+02:00": 44 - }, - "Project Creation Notifications": { - "2024-11-01T00:00:00+02:00": 71 - }, - "Subscription canceled Notifications": { - "2024-11-01T00:00:00+02:00": 91 - }, - "Project Deployment Notifications": { - "2024-11-01T00:00:00+02:00": 22 - }, - "Payment Notifications": { - "2024-11-01T00:00:00+02:00": 278 - }, - "Subscription update Notifications": { - "2024-11-01T00:00:00+02:00": 194 - } - } - }, - "636a6b4d9e04bb11b575cf74": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4297 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4297 - }, - "insuranceActionRequiredAlert": { - "2024-11-01T00:00:00+02:00": 7 - }, - "orderCancellationAlert": { - "2024-11-01T00:00:00+02:00": 7 - }, - "order-status-change-alert": { - "2024-11-01T00:00:00+02:00": 408 - }, - "orderAlert": { - "2024-11-01T00:00:00+02:00": 916 - }, - "quoteEmailTemplate": { - "2024-11-01T00:00:00+02:00": 10 - }, - "sendUserDefaultPassword": { - "2024-11-01T00:00:00+02:00": 11 - }, - "tataApiAlert": { - "2024-11-01T00:00:00+02:00": 2870 - }, - "newBulkOrderAlert": { - "2024-11-01T00:00:00+02:00": 29 - }, - "tataAigOrderEmail": { - "2024-11-01T00:00:00+02:00": 27 - }, - "visaAtRisk": { - "2024-11-01T00:00:00+02:00": 9 - } - } - }, - "6508ba6e7722fc74ea9637ec": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10121 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10121 - }, - "Case document is ready": { - "2024-11-01T00:00:00+02:00": 1033 - }, - "Case Document sent to review": { - "2024-11-01T00:00:00+02:00": 2808 - }, - "New chat message received": { - "2024-11-01T00:00:00+02:00": 5707 - }, - "Case Document has error": { - "2024-11-01T00:00:00+02:00": 503 - }, - "Immigrant joins the case": { - "2024-11-01T00:00:00+02:00": 64 - }, - "Case document is blocked": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "66828021e73f8d95adbb100f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5529 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5529 - }, - "Storage System Share": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Expiry Warning Notification": { - "2024-11-01T00:00:00+02:00": 400 - }, - "Approval Notification": { - "2024-11-01T00:00:00+02:00": 145 - }, - "roles": { - "2024-11-01T00:00:00+02:00": 535 - }, - "tenant-join-accept-reject": { - "2024-11-01T00:00:00+02:00": 74 - }, - "mdf-receivable-payable": { - "2024-11-01T00:00:00+02:00": 26 - }, - "lead-actions": { - "2024-11-01T00:00:00+02:00": 959 - }, - "invite": { - "2024-11-01T00:00:00+02:00": 114 - }, - "Dealflow CRUD": { - "2024-11-01T00:00:00+02:00": 1564 - }, - "new-partner-invite": { - "2024-11-01T00:00:00+02:00": 7 - }, - "pov-request": { - "2024-11-01T00:00:00+02:00": 107 - }, - "mdf-request": { - "2024-11-01T00:00:00+02:00": 21 - }, - "notes": { - "2024-11-01T00:00:00+02:00": 572 - }, - "tenant-access-request": { - "2024-11-01T00:00:00+02:00": 61 - }, - "note-comments": { - "2024-11-01T00:00:00+02:00": 592 - }, - "invite-user": { - "2024-11-01T00:00:00+02:00": 56 - }, - "products-industrySegment": { - "2024-11-01T00:00:00+02:00": 32 - }, - "converted-to-opportunity": { - "2024-11-01T00:00:00+02:00": 258 - } - } - }, - "65c67ec9b637cdb23e09edef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 410 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 410 - }, - "Summary PDF": { - "2024-11-01T00:00:00+02:00": 410 - } - } - }, - "6298723bbf5f05001986dd80": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1323 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1323 - }, - "create-organisation": { - "2024-11-01T00:00:00+02:00": 380 - }, - "unverified-create-task": { - "2024-11-01T00:00:00+02:00": 375 - }, - "unverified-create-job": { - "2024-11-01T00:00:00+02:00": 40 - }, - "certificate-uploaded": { - "2024-11-01T00:00:00+02:00": 528 - } - } - }, - "6397389154ca30325edb6391": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1305 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1305 - }, - "Tenant_Invitation": { - "2024-11-01T00:00:00+02:00": 164 - }, - "Task_Status_Updated": { - "2024-11-01T00:00:00+02:00": 23 - }, - "Tenant_Created": { - "2024-11-01T00:00:00+02:00": 246 - }, - "Auth_Registration_Verified": { - "2024-11-01T00:00:00+02:00": 354 - }, - "Tenant_User_Created": { - "2024-11-01T00:00:00+02:00": 90 - }, - "Auth_Registration_Verification": { - "2024-11-01T00:00:00+02:00": 275 - }, - "Task_Assigned": { - "2024-11-01T00:00:00+02:00": 46 - }, - "Tenant_User_Updated": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Sampling_Ready_To_Review": { - "2024-11-01T00:00:00+02:00": 94 - } - } - }, - "66b1fe79aa4218d12657d85b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 786 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 786 - }, - "filemaster-in-app-workflow": { - "2024-11-01T00:00:00+02:00": 786 - } - } - }, - "66704e3f30319d13334f4306": { - "$overall": { - "2024-11-01T00:00:00+02:00": 611471 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 611471 - }, - "pushNotification": { - "2024-11-01T00:00:00+02:00": 243 - }, - "Medvol_V1_Notification": { - "2024-11-01T00:00:00+02:00": 611228 - } - } - }, - "634826ed27d50dea0ba493f9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25979 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25979 - }, - "single message with url": { - "2024-11-01T00:00:00+02:00": 25979 - } - } - }, - "642d9001c6b53aa5dd5124f5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1201278 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1201278 - }, - "Newclus Digest": { - "2024-11-01T00:00:00+02:00": 4262 - }, - "Cluster In-App": { - "2024-11-01T00:00:00+02:00": 1023151 - }, - "Daily Digest": { - "2024-11-01T00:00:00+02:00": 173865 - } - } - }, - "63a81723bee1d5aed77eeecc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 366 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 366 - }, - "login-notification": { - "2024-11-01T00:00:00+02:00": 366 - } - } - }, - "63a988938099fc7fe0b9f12d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 644 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 644 - }, - "withdraw-funds-from-user-account": { - "2024-11-01T00:00:00+02:00": 21 - }, - "cancel-pending-order": { - "2024-11-01T00:00:00+02:00": 29 - }, - "fund-User-Account-from-elphinstone account": { - "2024-11-01T00:00:00+02:00": 50 - }, - "funds_update": { - "2024-11-01T00:00:00+02:00": 394 - }, - "Crypto Transactions Email": { - "2024-11-01T00:00:00+02:00": 30 - }, - "payoneer fund account": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Update Information (KYC Failed)": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Account Approved by Alpaca": { - "2024-11-01T00:00:00+02:00": 41 - }, - "subscribe-portfolio": { - "2024-11-01T00:00:00+02:00": 18 - }, - "sign-up-non-us": { - "2024-11-01T00:00:00+02:00": 44 - } - } - }, - "646eaa72e0d0d1b39ac3b281": { - "$overall": { - "2024-11-01T00:00:00+02:00": 945 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 945 - }, - "Adm with CTA": { - "2024-11-01T00:00:00+02:00": 728 - }, - "Adm - General": { - "2024-11-01T00:00:00+02:00": 217 - } - } - }, - "63bcf68d35958e9aa59578ff": { - "$overall": { - "2024-11-01T00:00:00+02:00": 283 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 283 - }, - "cnc-notification": { - "2024-11-01T00:00:00+02:00": 283 - } - } - }, - "64341d3fd766fd13ee96b6a1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1955 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1955 - }, - "Experiment Finished": { - "2024-11-01T00:00:00+02:00": 951 - }, - "Experiment Created": { - "2024-11-01T00:00:00+02:00": 1004 - } - } - }, - "6635b78bbe41ef77518aaba0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30195 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30195 - }, - "task-status": { - "2024-11-01T00:00:00+02:00": 30195 - } - } - }, - "658e6a3b0ad62708782a93bf": { - "$overall": { - "2024-11-01T00:00:00+02:00": 778 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 778 - }, - "In App Notification": { - "2024-11-01T00:00:00+02:00": 778 - } - } - }, - "65ceaef2535ad490c942a13c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30895 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30895 - }, - "Asset Risk Score Decreased": { - "2024-11-01T00:00:00+02:00": 342 - }, - "New Vulnerability Identified": { - "2024-11-01T00:00:00+02:00": 16307 - }, - "New Asset Creation": { - "2024-11-01T00:00:00+02:00": 311 - }, - "Asset Risk Score Increased": { - "2024-11-01T00:00:00+02:00": 1576 - }, - "Fixed Vulnerability": { - "2024-11-01T00:00:00+02:00": 12265 - }, - "New message in Security Experts": { - "2024-11-01T00:00:00+02:00": 94 - } - } - }, - "64f0c28825339d16c5d8131a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 631 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 631 - }, - "chat-message": { - "2024-11-01T00:00:00+02:00": 631 - } - } - }, - "627cf999d4869d0018625c67": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4740 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4740 - }, - "shipping-suivi": { - "2024-11-01T00:00:00+02:00": 982 - }, - "order-confirmation": { - "2024-11-01T00:00:00+02:00": 1902 - }, - "dispo-article": { - "2024-11-01T00:00:00+02:00": 7 - }, - "demande-retour": { - "2024-11-01T00:00:00+02:00": 120 - }, - "mail-contact": { - "2024-11-01T00:00:00+02:00": 768 - }, - "demande-sav": { - "2024-11-01T00:00:00+02:00": 120 - }, - "shipping-confirmation": { - "2024-11-01T00:00:00+02:00": 841 - } - } - }, - "64469b1b4919b8d7cbf845ef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4921 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4921 - }, - "[EN] External-Listing Live-Listing Price Update Confirmation": { - "2024-11-01T00:00:00+02:00": 43 - }, - "[TC] External-Buy-Order Confirmation (IF Delivery)": { - "2024-11-01T00:00:00+02:00": 19 - }, - "[EN] External-Buy-Confirmation of deposit payment": { - "2024-11-01T00:00:00+02:00": 24 - }, - "[TC] External-Quotation-New Quotation Submission Confirmation": { - "2024-11-01T00:00:00+02:00": 10 - }, - "[EN] External-Concierge Consignment-Watch Authentication Approved": { - "2024-11-01T00:00:00+02:00": 49 - }, - "[EN] External-Buy-Order Confirmation (IF Pickup)": { - "2024-11-01T00:00:00+02:00": 79 - }, - "[EN] External-Listing Live-Consignment Period Extended": { - "2024-11-01T00:00:00+02:00": 43 - }, - "[EN] External-Buy-Order Is Ready For Pickup": { - "2024-11-01T00:00:00+02:00": 34 - }, - "[TC] External-Buy-Order Confirmation (IF Pickup)": { - "2024-11-01T00:00:00+02:00": 18 - }, - "[EN] External-Quotations-Quotation Ready": { - "2024-11-01T00:00:00+02:00": 195 - }, - "[EN] External-Concierge Consignment-(IF DROP-OFF) (Reminder) Watch Delivery": { - "2024-11-01T00:00:00+02:00": 66 - }, - "[EN] External-Offers (Sell)-Counter Offer Confirmation": { - "2024-11-01T00:00:00+02:00": 52 - }, - "[EN] External-Concierge Consignment-Watch Sold": { - "2024-11-01T00:00:00+02:00": 58 - }, - "[EN] External-Offers (Sell)-Received Counteroffer From Buyer": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Core Forget Password": { - "2024-11-01T00:00:00+02:00": 66 - }, - "[EN] External-Offers (Sell)-Offer Accepted By The Buyer": { - "2024-11-01T00:00:00+02:00": 18 - }, - "[EN] External-Offers (buy)-Offer Accepted 24 Hours To Complete Payment": { - "2024-11-01T00:00:00+02:00": 16 - }, - "[EN] External-Buy-Cart Abandonment": { - "2024-11-01T00:00:00+02:00": 60 - }, - "[EN] External-Signup/Login-Account Verification Success": { - "2024-11-01T00:00:00+02:00": 187 - }, - "[EN] External-Concierge Consignment-(IF SHIPPING) Watch Delivery Confirmation": { - "2024-11-01T00:00:00+02:00": 7 - }, - "[EN] External-Concierge Consignment-(Reminder) Arrange Your Watch Delivery To Wristcheck": { - "2024-11-01T00:00:00+02:00": 66 - }, - "[EN] Internal-Quotations-Internal (Webops, Consignment): New Watch From Quotation": { - "2024-11-01T00:00:00+02:00": 36 - }, - "[EN] External-Buy-You Have 24 Hours To Complete Your Payment": { - "2024-11-01T00:00:00+02:00": 22 - }, - "[EN] External-Listing Live-Sales Listing Published": { - "2024-11-01T00:00:00+02:00": 50 - }, - "[EN] External-Buy-Order On Its Way": { - "2024-11-01T00:00:00+02:00": 21 - }, - "[EN] External-Collection-Collection Verification Status Updated: Verified": { - "2024-11-01T00:00:00+02:00": 13 - }, - "[EN] External-Quotations-Quotation Expired": { - "2024-11-01T00:00:00+02:00": 103 - }, - "[EN] External-Concierge Consignment-(IF DROP-OFF) Watch Delivery Confirmation": { - "2024-11-01T00:00:00+02:00": 66 - }, - "[EN] External-Signup/Login-Verify Your Email Address": { - "2024-11-01T00:00:00+02:00": 468 - }, - "[EN] External-Concierge Consignment-Consignment Expired Notification": { - "2024-11-01T00:00:00+02:00": 30 - }, - "[EN] External-Offers (Sell)-Receive Offer From Bidder": { - "2024-11-01T00:00:00+02:00": 63 - }, - "[EN] External-Concierge Consignment-Watch Details Updated Confirmation": { - "2024-11-01T00:00:00+02:00": 20 - }, - "[EN] External-Listing (live)-Watch consignment period ending soon": { - "2024-11-01T00:00:00+02:00": 71 - }, - "[EN] External-Concierge Consignment-Reminder: Complete Consignment": { - "2024-11-01T00:00:00+02:00": 92 - }, - "[EN] External-Buy-Confirmation of full payment": { - "2024-11-01T00:00:00+02:00": 104 - }, - "[EN] External-Concierge Consignment- Consignment Approved, Ready for Listing": { - "2024-11-01T00:00:00+02:00": 50 - }, - "[EN] External-Offers (buy)-Buyer No Response To A Offer Within 24 Hours": { - "2024-11-01T00:00:00+02:00": 53 - }, - "[TC] External-Quotations-Quotation Ready": { - "2024-11-01T00:00:00+02:00": 9 - }, - "[EN] External-Offers (buy)-Thank You For Placing An Offer": { - "2024-11-01T00:00:00+02:00": 62 - }, - "[EN] External-Concierge Consignment-(IF SHIPPING) (Reminder) Provide Us With The Courier And Shipping Details": { - "2024-11-01T00:00:00+02:00": 34 - }, - "[TC] External-Buy-Confirmation of deposit payment": { - "2024-11-01T00:00:00+02:00": 9 - }, - "[EN] Internal-Buy-Internal: Order Placed": { - "2024-11-01T00:00:00+02:00": 324 - }, - "[Internal] Magic Link": { - "2024-11-01T00:00:00+02:00": 413 - }, - "[EN] Internal-Concierge Consignment-Internal: New Consignment": { - "2024-11-01T00:00:00+02:00": 103 - }, - "[EN] Internal-Quotations-Internal (Consignment Team): Quotation Approval": { - "2024-11-01T00:00:00+02:00": 250 - }, - "[EN] External-Offers (buy)-You Have Received A Counteroffer!": { - "2024-11-01T00:00:00+02:00": 53 - }, - "[EN] External-Concierge Consignment-Watch Received For Authentication": { - "2024-11-01T00:00:00+02:00": 50 - }, - "[EN] External-Quotations-(Reminder) 3 days Quotation Ready": { - "2024-11-01T00:00:00+02:00": 195 - }, - "[EN] External-Signup/Login-Reset Password Successful": { - "2024-11-01T00:00:00+02:00": 39 - }, - "[EN] External-Signup/Login-Account Creation (Admin Portal User Creation)": { - "2024-11-01T00:00:00+02:00": 54 - }, - "[EN] External-Concierge Consignment-Reminder: Schedule your watch drop-off time": { - "2024-11-01T00:00:00+02:00": 61 - }, - "[TC] External-Collection-Watch Data Refreshed From Catalogue": { - "2024-11-01T00:00:00+02:00": 8 - }, - "[EN] External-Concierge Consignment-New Consignment Created": { - "2024-11-01T00:00:00+02:00": 10 - }, - "[EN] External-Concierge Consignment-Seller Policy Accepted Confirmation": { - "2024-11-01T00:00:00+02:00": 21 - }, - "[EN] External-Offers (Sell)-Offer Cancelled By Buyer": { - "2024-11-01T00:00:00+02:00": 10 - }, - "[EN] External-Buy-Order Confirmation (IF Delivery)": { - "2024-11-01T00:00:00+02:00": 45 - }, - "[EN] External-Collection-Watch Data Refreshed From Catalogue": { - "2024-11-01T00:00:00+02:00": 172 - }, - "[EN] Internal-Buy-Internal: Proof Of Payment Upload": { - "2024-11-01T00:00:00+02:00": 56 - }, - "[TC] External-Quotations-(Reminder) 3 days Quotation Ready": { - "2024-11-01T00:00:00+02:00": 9 - }, - "[EN] External-Concierge Consignment-Watch Under Authentication": { - "2024-11-01T00:00:00+02:00": 49 - }, - "[EN] External-Quotations-Reject Quotation/Consignment": { - "2024-11-01T00:00:00+02:00": 17 - }, - "[EN] External-Concierge Consignment-Seller Verification Rejected": { - "2024-11-01T00:00:00+02:00": 10 - }, - "[EN] External-Concierge Consignment-Consignment Ready: Arrange your watch delivery to Wristcheck": { - "2024-11-01T00:00:00+02:00": 66 - }, - "[EN] External-Concierge Consignment-(Individual seller + Dealer) Watch Return to Consignor": { - "2024-11-01T00:00:00+02:00": 14 - }, - "[EN] External-Buy-Order Has Been Delivered": { - "2024-11-01T00:00:00+02:00": 11 - }, - "[EN] External-Quotations-Abandoned Quotation": { - "2024-11-01T00:00:00+02:00": 10 - }, - "[EN] External-Quotation-New Quotation Submission Confirmation": { - "2024-11-01T00:00:00+02:00": 240 - }, - "[TC] External-Buy-Payment Reminder: You Have 24 Hours To Complete Your Payment": { - "2024-11-01T00:00:00+02:00": 9 - }, - "[TC] External-Buy-Confirmation of full payment": { - "2024-11-01T00:00:00+02:00": 30 - } - } - }, - "624c1d9fdd3137001824f6ef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14198 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14198 - }, - "New task assignment": { - "2024-11-01T00:00:00+02:00": 14198 - } - } - }, - "65fd55c44f991166e7a7335e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2515 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2515 - }, - "In Depot Charge Interruption": { - "2024-11-01T00:00:00+02:00": 380 - }, - "Vehicle Successfully Connected": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Vehicle Link Request": { - "2024-11-01T00:00:00+02:00": 36 - }, - "Returning Vehicle": { - "2024-11-01T00:00:00+02:00": 751 - }, - "Trusk Low Battery Shift End": { - "2024-11-01T00:00:00+02:00": 26 - }, - "Charge point interruption": { - "2024-11-01T00:00:00+02:00": 213 - }, - "Charge point critical error": { - "2024-11-01T00:00:00+02:00": 92 - }, - "create driver account": { - "2024-11-01T00:00:00+02:00": 62 - }, - "Charge point faulted and requires restart": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Overcharging Vehicle": { - "2024-11-01T00:00:00+02:00": 502 - }, - "Charge Near Depot": { - "2024-11-01T00:00:00+02:00": 321 - }, - "Charger End of Charge": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Trusk Low Battery Shift Start": { - "2024-11-01T00:00:00+02:00": 29 - }, - "generic create account": { - "2024-11-01T00:00:00+02:00": 19 - } - } - }, - "6433d2fc6e1e72f63f63b5fe": { - "$overall": { - "2024-11-01T00:00:00+02:00": 47895 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 47895 - }, - "AAA_COMMENT": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Sign up email verification": { - "2024-11-01T00:00:00+02:00": 369 - }, - "AAA_ARCHIVE_ROOM_VISIT": { - "2024-11-01T00:00:00+02:00": 555 - }, - "Someone email update permissions": { - "2024-11-01T00:00:00+02:00": 8613 - }, - "AAA_ACCOUNT_INVITE_USER": { - "2024-11-01T00:00:00+02:00": 469 - }, - "CallToAction section Buyer Reply": { - "2024-11-01T00:00:00+02:00": 154 - }, - "Room Deleted By Admin": { - "2024-11-01T00:00:00+02:00": 70 - }, - "AAA_ROOM_COLLABORATION": { - "2024-11-01T00:00:00+02:00": 665 - }, - "AAA_INVITE_PROSPECTS_REMINDER": { - "2024-11-01T00:00:00+02:00": 948 - }, - "AAA_PAGE_VIEW": { - "2024-11-01T00:00:00+02:00": 14116 - }, - "AAA_EMAIL_VERIFICATION": { - "2024-11-01T00:00:00+02:00": 349 - }, - "Account Plan Canceled": { - "2024-11-01T00:00:00+02:00": 98 - }, - "AAA_COMMENT_WITH_REPLAY": { - "2024-11-01T00:00:00+02:00": 4340 - }, - "Payment Failed": { - "2024-11-01T00:00:00+02:00": 82 - }, - "AAA_INVITE_PROSPECTS": { - "2024-11-01T00:00:00+02:00": 10204 - }, - "Invite Account Accept Increase Room": { - "2024-11-01T00:00:00+02:00": 25 - }, - "AAA_PAGE_VIEW_BLOCKED": { - "2024-11-01T00:00:00+02:00": 2190 - }, - "AAA_ACCOUNT_REINVITE_USER": { - "2024-11-01T00:00:00+02:00": 225 - }, - "AAA_OWNER_APPROVAL_USER": { - "2024-11-01T00:00:00+02:00": 63 - }, - "AAA_OVERDUE_TASK": { - "2024-11-01T00:00:00+02:00": 190 - }, - "AAA_OWNER_APPROVED_USER": { - "2024-11-01T00:00:00+02:00": 40 - }, - "AAA_NUDGE_BUYER": { - "2024-11-01T00:00:00+02:00": 94 - }, - "AAA_ROOM_DUPLICATION": { - "2024-11-01T00:00:00+02:00": 33 - }, - "AAA_SHARE_SECTION": { - "2024-11-01T00:00:00+02:00": 45 - }, - "AAA_ACCOUNT_ACCEPT_INVITATION": { - "2024-11-01T00:00:00+02:00": 302 - }, - "Payment Failed internal": { - "2024-11-01T00:00:00+02:00": 101 - }, - "Send reset password email": { - "2024-11-01T00:00:00+02:00": 101 - }, - "AAA_INTERNAL_USERS_ONBOARDING": { - "2024-11-01T00:00:00+02:00": 3365 - }, - "AAA_NOTIFY_ASSIGN": { - "2024-11-01T00:00:00+02:00": 68 - } - } - }, - "6684fd53e40a50735b55a981": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1747 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1747 - }, - "Enrollment confirmation": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Verification Code": { - "2024-11-01T00:00:00+02:00": 1179 - }, - "Welcome": { - "2024-11-01T00:00:00+02:00": 542 - } - } - }, - "63a059f5bee1d5aed7e4d95c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1329 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1329 - }, - "Pending Review": { - "2024-11-01T00:00:00+02:00": 99 - }, - "User Assigned to Account": { - "2024-11-01T00:00:00+02:00": 66 - }, - "Update Required": { - "2024-11-01T00:00:00+02:00": 36 - }, - "Monitoring update": { - "2024-11-01T00:00:00+02:00": 51 - }, - "Next KYC Review Date": { - "2024-11-01T00:00:00+02:00": 39 - }, - "New application received documents": { - "2024-11-01T00:00:00+02:00": 53 - }, - "Account Activated": { - "2024-11-01T00:00:00+02:00": 97 - }, - "Account Suspended": { - "2024-11-01T00:00:00+02:00": 10 - }, - "New Application": { - "2024-11-01T00:00:00+02:00": 702 - }, - "Verified Review": { - "2024-11-01T00:00:00+02:00": 169 - } - } - }, - "654e95e71b0a1377ffe4f755": { - "$overall": { - "2024-11-01T00:00:00+02:00": 66877 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 66877 - }, - "Hrlux-Prod WebApp-Trips-Notifications": { - "2024-11-01T00:00:00+02:00": 17276 - }, - "Nemt WebApp-Trips-Notifications": { - "2024-11-01T00:00:00+02:00": 49546 - }, - "Dev Webapp Trips Notifications": { - "2024-11-01T00:00:00+02:00": 55 - } - } - }, - "666b875bb3464b7775f56472": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2044 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2044 - }, - "Notification in-app": { - "2024-11-01T00:00:00+02:00": 1630 - }, - "Only App": { - "2024-11-01T00:00:00+02:00": 414 - } - } - }, - "6436e7094f087a109c0322a7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7118 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7118 - }, - "Database Created: Serverless": { - "2024-11-01T00:00:00+02:00": 407 - }, - "Database Created: Vector": { - "2024-11-01T00:00:00+02:00": 892 - }, - "Database Hibernate": { - "2024-11-01T00:00:00+02:00": 35 - }, - "Database ResumeHibernatedCluster": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Database Create": { - "2024-11-01T00:00:00+02:00": 5759 - } - } - }, - "67212578d50b4e9ff9a6cc1f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 314 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 314 - }, - "hotel-status-update": { - "2024-11-01T00:00:00+02:00": 287 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22 - } - } - }, - "65d5e7fa2d8ee2bc1404fa0f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 102 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 102 - }, - "notify-company-admins-about-new-employee": { - "2024-11-01T00:00:00+02:00": 34 - }, - "notify-company-admins-about-credits-from-super-admins": { - "2024-11-01T00:00:00+02:00": 18 - }, - "notify-employee-about-being-added-to-platform": { - "2024-11-01T00:00:00+02:00": 14 - }, - "notify-company-admins-about-credits-assigned-to-one-employee": { - "2024-11-01T00:00:00+02:00": 13 - } - } - }, - "657312d2fd6a606fd6eaa203": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1381 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1381 - }, - "Invoice due date expired": { - "2024-11-01T00:00:00+02:00": 525 - }, - "authorization": { - "2024-11-01T00:00:00+02:00": 57 - }, - "New invoice": { - "2024-11-01T00:00:00+02:00": 236 - }, - "Invoice paid": { - "2024-11-01T00:00:00+02:00": 220 - }, - "Invoice partially paid": { - "2024-11-01T00:00:00+02:00": 99 - }, - "Payment received": { - "2024-11-01T00:00:00+02:00": 235 - } - } - }, - "6414934fda8256b93f957df3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 457 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 457 - }, - "API Load Edit": { - "2024-11-01T00:00:00+02:00": 457 - } - } - }, - "657752b62682a8ccf9887a7c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3900 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3900 - }, - "Exhibit Clawbacks": { - "2024-11-01T00:00:00+02:00": 328 - }, - "Refresh Files": { - "2024-11-01T00:00:00+02:00": 218 - }, - "Annotation Sessions": { - "2024-11-01T00:00:00+02:00": 712 - }, - "Shared Item": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Documents Requested": { - "2024-11-01T00:00:00+02:00": 116 - }, - "Introduced Marked Exhibit": { - "2024-11-01T00:00:00+02:00": 2404 - }, - "Document Request Concluded": { - "2024-11-01T00:00:00+02:00": 104 - } - } - }, - "658a048acb274a771b085163": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2309 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2309 - }, - "Invite": { - "2024-11-01T00:00:00+02:00": 2284 - }, - "metric_changed": { - "2024-11-01T00:00:00+02:00": 24 - } - } - }, - "6439210da97b5d90d4874f30": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20002 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20002 - }, - "Bienvenue sur Yalink - Onboarding sans structure légale": { - "2024-11-01T00:00:00+02:00": 412 - }, - "Refus de candidature": { - "2024-11-01T00:00:00+02:00": 692 - }, - "Nouvelles expertises métiers disponibles": { - "2024-11-01T00:00:00+02:00": 75 - }, - "Profil présélectionné par Yalink - demande de devis": { - "2024-11-01T00:00:00+02:00": 37 - }, - "Bienvenue sur Yalink - Onboarding freelance": { - "2024-11-01T00:00:00+02:00": 267 - }, - "Cooptation - Accusé de réception": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Nouvelles opportunités publiées": { - "2024-11-01T00:00:00+02:00": 16808 - }, - "Demande de recommendation": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Dépôt de besoin - Accusé de réception": { - "2024-11-01T00:00:00+02:00": 145 - }, - "Envoi du devis à un commercial Yalink": { - "2024-11-01T00:00:00+02:00": 169 - }, - "Réponse suite au dépôt d'un besoin (hors scope)": { - "2024-11-01T00:00:00+02:00": 14 - }, - "kyc document expiré.": { - "2024-11-01T00:00:00+02:00": 836 - }, - "Nouveau statut de candidature": { - "2024-11-01T00:00:00+02:00": 163 - }, - "Envoi du devis au freelance": { - "2024-11-01T00:00:00+02:00": 169 - }, - "KYC rejeté : raison du refus": { - "2024-11-01T00:00:00+02:00": 9 - }, - "kyc document expiré dans 7 jours": { - "2024-11-01T00:00:00+02:00": 166 - }, - "Cooptation - inscription du filleul sur Yalink": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Nouveau statut de devis": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "6314b4eb232b8996aaa4c9bc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1937 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1937 - }, - "generic": { - "2024-11-01T00:00:00+02:00": 830 - }, - "impact-level": { - "2024-11-01T00:00:00+02:00": 422 - }, - "welcome": { - "2024-11-01T00:00:00+02:00": 537 - }, - "reminder": { - "2024-11-01T00:00:00+02:00": 148 - } - } - }, - "6478b60f3a95df70dfeab13c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10190 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10190 - }, - "Basic Chat Notification": { - "2024-11-01T00:00:00+02:00": 10190 - } - } - }, - "6673d3288b7329c353ad689d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1340 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1340 - }, - "web-notifications": { - "2024-11-01T00:00:00+02:00": 1340 - } - } - }, - "652ea963fa315318e7925510": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3665 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3665 - }, - "Unread message digest": { - "2024-11-01T00:00:00+02:00": 1829 - }, - "In-app notification": { - "2024-11-01T00:00:00+02:00": 1836 - } - } - }, - "62cd681212f9e10011655a35": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1037725 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1037725 - }, - "Export verfügbar": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Mitarbeiter zugewiesen": { - "2024-11-01T00:00:00+02:00": 2549 - }, - "Mitarbeiter erwähnt": { - "2024-11-01T00:00:00+02:00": 376 - }, - "Neue Nachricht": { - "2024-11-01T00:00:00+02:00": 1020817 - }, - "Neue Nachricht an Assignee": { - "2024-11-01T00:00:00+02:00": 13951 - } - } - }, - "63c7b1ddab8d9270851b219f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 560 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 560 - }, - "New Booking Request notification to external Radiographer": { - "2024-11-01T00:00:00+02:00": 122 - }, - "warning-dev": { - "2024-11-01T00:00:00+02:00": 42 - }, - "Booking Request Rejected": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Send Email Template (plain)": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Scanner KVM Edit Alert": { - "2024-11-01T00:00:00+02:00": 271 - }, - "MP: Notifications for dispatchers for new sessions": { - "2024-11-01T00:00:00+02:00": 79 - } - } - }, - "63b6208e711db04e8129df6b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4076 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4076 - }, - "pt-comunicado-rechazo": { - "2024-11-01T00:00:00+02:00": 128 - }, - "permisos de trabajo extension de tiempo ehs": { - "2024-11-01T00:00:00+02:00": 225 - }, - "permiso antes de vencer": { - "2024-11-01T00:00:00+02:00": 195 - }, - "dms-v2-machine-maintenance-completed": { - "2024-11-01T00:00:00+02:00": 74 - }, - "asignación incidente": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Permisos de trabajo inspección": { - "2024-11-01T00:00:00+02:00": 50 - }, - "satisfaction-survey-new-response-with-comment": { - "2024-11-01T00:00:00+02:00": 7 - }, - "dms-v2-laundry-weekly-report": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Incidente Creado": { - "2024-11-01T00:00:00+02:00": 11 - }, - "capa venimiento de accion": { - "2024-11-01T00:00:00+02:00": 85 - }, - "recordatorio gestion del cambio firmas tarde": { - "2024-11-01T00:00:00+02:00": 46 - }, - "dms-v2-machine-maintenance-started": { - "2024-11-01T00:00:00+02:00": 80 - }, - "radiaciones vencimiento de carnet": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Vencimiento de Acciones Capa": { - "2024-11-01T00:00:00+02:00": 36 - }, - "PT-Solicitud-Accion": { - "2024-11-01T00:00:00+02:00": 1549 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 21 - }, - "extensión de tiempo capa": { - "2024-11-01T00:00:00+02:00": 41 - }, - "Permiso Vencido": { - "2024-11-01T00:00:00+02:00": 170 - }, - "master plan accion tarde": { - "2024-11-01T00:00:00+02:00": 10 - }, - "ehs-brigade-member-discharge": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Pt-comunicacion-accion": { - "2024-11-01T00:00:00+02:00": 229 - }, - "PT-Envio-Solicitud": { - "2024-11-01T00:00:00+02:00": 337 - }, - "adjunta evidencia capa": { - "2024-11-01T00:00:00+02:00": 9 - }, - "lockers-reservation-user": { - "2024-11-01T00:00:00+02:00": 10 - }, - "permisos extensión de tiempo": { - "2024-11-01T00:00:00+02:00": 71 - }, - "PT-aprobado": { - "2024-11-01T00:00:00+02:00": 270 - }, - "ehs-brigade-member-enrollment": { - "2024-11-01T00:00:00+02:00": 9 - }, - "notificación de vencimiento del carné supervisor": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Extension Tiempo Permiso de Trabajo": { - "2024-11-01T00:00:00+02:00": 68 - }, - "lockers-reservation-admin": { - "2024-11-01T00:00:00+02:00": 10 - }, - "gestion de cambio revision": { - "2024-11-01T00:00:00+02:00": 12 - }, - "permiso que inician el día presente": { - "2024-11-01T00:00:00+02:00": 127 - }, - "masten plan recordatorio accion": { - "2024-11-01T00:00:00+02:00": 19 - }, - "new-action-capa": { - "2024-11-01T00:00:00+02:00": 14 - }, - "ehs-brigade-member-report": { - "2024-11-01T00:00:00+02:00": 18 - }, - "send-password": { - "2024-11-01T00:00:00+02:00": 36 - } - } - }, - "654bab8b191027742aa28ec7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1143 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1143 - }, - "overdue-notification-warning-en": { - "2024-11-01T00:00:00+02:00": 44 - }, - "sign-notification-en": { - "2024-11-01T00:00:00+02:00": 378 - }, - "fill-and-sign-link-notification-en": { - "2024-11-01T00:00:00+02:00": 39 - }, - "sign-link-notification-en": { - "2024-11-01T00:00:00+02:00": 364 - }, - "overdue-notification-es": { - "2024-11-01T00:00:00+02:00": 16 - }, - "all-signs-notification-en": { - "2024-11-01T00:00:00+02:00": 268 - }, - "sign-link-notification-es": { - "2024-11-01T00:00:00+02:00": 15 - }, - "all-signs-notification-es": { - "2024-11-01T00:00:00+02:00": 14 - } - } - }, - "669187bb9efb8372ce7c6483": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1051 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1051 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1051 - } - } - }, - "65c17ff93086d5972f17c2d0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1492 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1492 - }, - "Issues assigned to me": { - "2024-11-01T00:00:00+02:00": 303 - }, - "Issues updated": { - "2024-11-01T00:00:00+02:00": 781 - }, - "New issues created": { - "2024-11-01T00:00:00+02:00": 259 - }, - "New comments on issues": { - "2024-11-01T00:00:00+02:00": 109 - }, - "Comments I'm mentioned in": { - "2024-11-01T00:00:00+02:00": 38 - } - } - }, - "646327aed6925ea19b9c43ea": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29727 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29727 - }, - "credentials-changed-notification-template": { - "2024-11-01T00:00:00+02:00": 29727 - } - } - }, - "64e793a5dd99c21f1ef1ddcb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12072 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12072 - }, - "Account Updated": { - "2024-11-01T00:00:00+02:00": 9 - }, - "The Community - Global In-app": { - "2024-11-01T00:00:00+02:00": 5791 - }, - "Global Inapp Notification": { - "2024-11-01T00:00:00+02:00": 15 - }, - "User Invited (Local and External)": { - "2024-11-01T00:00:00+02:00": 635 - }, - "The Community - Global Email": { - "2024-11-01T00:00:00+02:00": 5588 - }, - "Student Passport - New Request Notifications": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Student Passport - Request Completed": { - "2024-11-01T00:00:00+02:00": 10 - } - } - }, - "6582723f08be7e008ad65128": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8645 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8645 - }, - "Only App": { - "2024-11-01T00:00:00+02:00": 4569 - }, - "Notification in-app": { - "2024-11-01T00:00:00+02:00": 4076 - } - } - }, - "650c474042707458fe59f367": { - "$overall": { - "2024-11-01T00:00:00+02:00": 177041 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 177041 - }, - "requestlist-duedatereminders-v1-hipaa": { - "2024-11-01T00:00:00+02:00": 176925 - }, - "requestlist-actorsaddedtoitem-v1-hipaa": { - "2024-11-01T00:00:00+02:00": 116 - } - } - }, - "65f3db2b4599fa000c2becc7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 917 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 917 - }, - "Sent Otp to Sms": { - "2024-11-01T00:00:00+02:00": 915 - } - } - }, - "65c1f64ef94456f501d98f49": { - "$overall": { - "2024-11-01T00:00:00+02:00": 164794 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 164794 - }, - "Item favoured": { - "2024-11-01T00:00:00+02:00": 164794 - } - } - }, - "630ca7b800f7dbd3faf2d726": { - "$overall": { - "2024-11-01T00:00:00+02:00": 94552 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 94552 - }, - "new_insight_created_digest_security_product_not_enforced_in_profile": { - "2024-11-01T00:00:00+02:00": 168 - }, - "new_insight_created_digest_security_product_disabled_on_gw": { - "2024-11-01T00:00:00+02:00": 156 - }, - "new_insight_created_digest_security_product_on_gw_not_enforced_in_rulebase": { - "2024-11-01T00:00:00+02:00": 24 - }, - "new_insight_created_digest_hash_blocked": { - "2024-11-01T00:00:00+02:00": 4255 - }, - "new_insight_created_digest_detect_to_prevent_no_hits": { - "2024-11-01T00:00:00+02:00": 17888 - }, - "new_insight_created_digest_protection_found_in_inactive": { - "2024-11-01T00:00:00+02:00": 30519 - }, - "new_insight_created_digest_ip_blocked_tp": { - "2024-11-01T00:00:00+02:00": 21364 - }, - "new_insight_created_digest_protection_fp": { - "2024-11-01T00:00:00+02:00": 15807 - }, - "new_insight_created_digest_jumbo_version_is_not_up_to_date": { - "2024-11-01T00:00:00+02:00": 232 - }, - "new_insight_created_digest_endpoint_detection_script": { - "2024-11-01T00:00:00+02:00": 908 - }, - "new_indicators_from_feed": { - "2024-11-01T00:00:00+02:00": 1370 - }, - "new_insight_created_digest_protection_in_detect_with_hits_tp": { - "2024-11-01T00:00:00+02:00": 1520 - }, - "new_insight_created_digest_security_product_license_expired": { - "2024-11-01T00:00:00+02:00": 162 - }, - "new_insight_created_digest_security_product_not_updated": { - "2024-11-01T00:00:00+02:00": 176 - } - } - }, - "637b2240c58b301920b2f70c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40967 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40967 - }, - "lapasar-test": { - "2024-11-01T00:00:00+02:00": 40967 - } - } - }, - "64d10e4220f4008b5df1e37a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 647 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 647 - }, - "Account Activity & Transactions": { - "2024-11-01T00:00:00+02:00": 456 - }, - "User Signed Up": { - "2024-11-01T00:00:00+02:00": 126 - }, - "Rewards": { - "2024-11-01T00:00:00+02:00": 65 - } - } - }, - "65a56e2e8e557ef0afd6f872": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10052 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10052 - }, - "client_workflow_new": { - "2024-11-01T00:00:00+02:00": 266 - }, - "tenant_project_update": { - "2024-11-01T00:00:00+02:00": 9786 - } - } - }, - "6615460e6df43c247a0e01bb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14173 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14173 - }, - "Darter Notification": { - "2024-11-01T00:00:00+02:00": 14173 - } - } - }, - "66b9e7e99c11077f0298542c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 940 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 940 - }, - "assignee-added-in-defect": { - "2024-11-01T00:00:00+02:00": 312 - }, - "jobs-notification": { - "2024-11-01T00:00:00+02:00": 602 - }, - "defect-created": { - "2024-11-01T00:00:00+02:00": 26 - } - } - }, - "64a079225cccb636d843bd26": { - "$overall": { - "2024-11-01T00:00:00+02:00": 166 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 166 - }, - "hepkids-coding": { - "2024-11-01T00:00:00+02:00": 7 - }, - "userTicketId": { - "2024-11-01T00:00:00+02:00": 115 - }, - "Send OTP": { - "2024-11-01T00:00:00+02:00": 17 - }, - "userEmail": { - "2024-11-01T00:00:00+02:00": 22 - } - } - }, - "64ae84fa90b5785d4716e362": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5897 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5897 - }, - "Simple Push": { - "2024-11-01T00:00:00+02:00": 5897 - } - } - }, - "669559c51c484e3d9a0e1839": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1225 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1225 - }, - "send-push-notification-using-fcm": { - "2024-11-01T00:00:00+02:00": 1225 - } - } - }, - "65f8f7959343b5be34ab729c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11358 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11358 - }, - "Open asset": { - "2024-11-01T00:00:00+02:00": 1380 - }, - "meo": { - "2024-11-01T00:00:00+02:00": 9978 - } - } - }, - "6322333a2d7b721933bd8cf6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8307 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8307 - }, - "export-ready-for-download": { - "2024-11-01T00:00:00+02:00": 99 - }, - "task_done": { - "2024-11-01T00:00:00+02:00": 7 - }, - "inactive-account-detected": { - "2024-11-01T00:00:00+02:00": 362 - }, - "new_note_tag": { - "2024-11-01T00:00:00+02:00": 85 - }, - "import-start": { - "2024-11-01T00:00:00+02:00": 225 - }, - "schedule_reminder_today": { - "2024-11-01T00:00:00+02:00": 586 - }, - "task-created-notification": { - "2024-11-01T00:00:00+02:00": 209 - }, - "reminder_done": { - "2024-11-01T00:00:00+02:00": 197 - }, - "task_create": { - "2024-11-01T00:00:00+02:00": 44 - }, - "Space Invitation email": { - "2024-11-01T00:00:00+02:00": 110 - }, - "task-due-today-notification": { - "2024-11-01T00:00:00+02:00": 693 - }, - "reminder_create": { - "2024-11-01T00:00:00+02:00": 105 - }, - "Import finish": { - "2024-11-01T00:00:00+02:00": 196 - }, - "linkedin-inbox-synced": { - "2024-11-01T00:00:00+02:00": 5096 - }, - "task-completed-notification": { - "2024-11-01T00:00:00+02:00": 293 - } - } - }, - "655c93211a91da1b109bea70": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2203 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2203 - }, - "Comment": { - "2024-11-01T00:00:00+02:00": 229 - }, - "Direct mention": { - "2024-11-01T00:00:00+02:00": 235 - }, - "Inbox updates": { - "2024-11-01T00:00:00+02:00": 1691 - }, - "Campaign updates": { - "2024-11-01T00:00:00+02:00": 48 - } - } - }, - "65af69c5aeb88319ddace25a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 69474 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 69474 - }, - "Tasks Pending": { - "2024-11-01T00:00:00+02:00": 69474 - } - } - }, - "671f768afb21db27362e8d5f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26849 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26849 - }, - "in-app-notification": { - "2024-11-01T00:00:00+02:00": 26849 - } - } - }, - "64b03bae2eb78d11de58c1bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9215 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9215 - }, - "dmpag": { - "2024-11-01T00:00:00+02:00": 9215 - } - } - }, - "6422c50c5876c8840c8b4668": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4209 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4209 - }, - "incident-report": { - "2024-11-01T00:00:00+02:00": 304 - }, - "due-today-tasks": { - "2024-11-01T00:00:00+02:00": 14 - }, - "careplancontributor": { - "2024-11-01T00:00:00+02:00": 52 - }, - "initial-assessment": { - "2024-11-01T00:00:00+02:00": 13 - }, - "appointment-assignment": { - "2024-11-01T00:00:00+02:00": 84 - }, - "one-day-overdue-tasks": { - "2024-11-01T00:00:00+02:00": 102 - }, - "legal-status": { - "2024-11-01T00:00:00+02:00": 11 - }, - "investigation-type": { - "2024-11-01T00:00:00+02:00": 262 - }, - "task-assignment": { - "2024-11-01T00:00:00+02:00": 182 - }, - "risk-assessment": { - "2024-11-01T00:00:00+02:00": 3067 - }, - "observation-level-up": { - "2024-11-01T00:00:00+02:00": 45 - }, - "legal-status-expiry": { - "2024-11-01T00:00:00+02:00": 70 - } - } - }, - "63320239ee1316a5c87e38d1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24106 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24106 - }, - "admin-onboarding": { - "2024-11-01T00:00:00+02:00": 521 - }, - "admin-subscriptions": { - "2024-11-01T00:00:00+02:00": 411 - }, - "admin-account-members": { - "2024-11-01T00:00:00+02:00": 38 - }, - "admin-rows": { - "2024-11-01T00:00:00+02:00": 10522 - }, - "admin-users": { - "2024-11-01T00:00:00+02:00": 5079 - }, - "admin-accounts": { - "2024-11-01T00:00:00+02:00": 7529 - } - } - }, - "66fa9de25d6b8aa393727348": { - "$overall": { - "2024-11-01T00:00:00+02:00": 988 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 988 - }, - "sparepartsOrderUpdate": { - "2024-11-01T00:00:00+02:00": 6 - }, - "planner-deadline": { - "2024-11-01T00:00:00+02:00": 250 - }, - "ticketUpdate": { - "2024-11-01T00:00:00+02:00": 254 - }, - "news": { - "2024-11-01T00:00:00+02:00": 282 - }, - "order": { - "2024-11-01T00:00:00+02:00": 7 - }, - "newsAll": { - "2024-11-01T00:00:00+02:00": 184 - } - } - }, - "651e2d9e8816295152897198": { - "$overall": { - "2024-11-01T00:00:00+02:00": 673 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 673 - }, - "Liqudity Buy Alert With Referr info": { - "2024-11-01T00:00:00+02:00": 23 - }, - "Registration Successful": { - "2024-11-01T00:00:00+02:00": 61 - }, - "OTP DCN": { - "2024-11-01T00:00:00+02:00": 517 - }, - "Liqudity Buy Alert DCN": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Onboarding Workflow": { - "2024-11-01T00:00:00+02:00": 66 - } - } - }, - "64919f0eb5f1ae122b876762": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2447 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2447 - }, - "Marketplace CRM Notifications": { - "2024-11-01T00:00:00+02:00": 2447 - } - } - }, - "66d9e408cf609b134331065f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27658 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27658 - }, - "weekly-digest": { - "2024-11-01T00:00:00+02:00": 10631 - }, - "listing-accepted": { - "2024-11-01T00:00:00+02:00": 460 - }, - "offer-received": { - "2024-11-01T00:00:00+02:00": 28 - }, - "daily-digest": { - "2024-11-01T00:00:00+02:00": 10629 - }, - "listing-new-collection": { - "2024-11-01T00:00:00+02:00": 3183 - }, - "offer-accepted": { - "2024-11-01T00:00:00+02:00": 34 - }, - "offer-new-collection": { - "2024-11-01T00:00:00+02:00": 2688 - } - } - }, - "647d42173a4ec8a59984c750": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7729 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7729 - }, - "Allocation Manual Success": { - "2024-11-01T00:00:00+02:00": 1089 - }, - "Allocation Manual": { - "2024-11-01T00:00:00+02:00": 348 - }, - "Add Leads": { - "2024-11-01T00:00:00+02:00": 114 - }, - "Allocation Success": { - "2024-11-01T00:00:00+02:00": 1261 - }, - "Allocation Success Driver": { - "2024-11-01T00:00:00+02:00": 2459 - }, - "Order Create": { - "2024-11-01T00:00:00+02:00": 1659 - }, - "Order Drop Off": { - "2024-11-01T00:00:00+02:00": 799 - } - } - }, - "656d49757b44306b3c820521": { - "$overall": { - "2024-11-01T00:00:00+02:00": 439 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 439 - }, - "new-opportunity-created": { - "2024-11-01T00:00:00+02:00": 439 - } - } - }, - "6637e82483488a7091d0513d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 913 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 913 - }, - "Friend Stream Start": { - "2024-11-01T00:00:00+02:00": 91 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 44 - }, - "Email Verification": { - "2024-11-01T00:00:00+02:00": 159 - }, - "Stream Available": { - "2024-11-01T00:00:00+02:00": 584 - }, - "Stream Like": { - "2024-11-01T00:00:00+02:00": 28 - } - } - }, - "643d4f7130bdc004e35b8b0e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1636 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1636 - }, - "new-news-in-favorite": { - "2024-11-01T00:00:00+02:00": 1636 - } - } - }, - "666a0c480f48d9a01fea8e2c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1036 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1036 - }, - "Transfers": { - "2024-11-01T00:00:00+02:00": 958 - }, - "Flex": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Amex": { - "2024-11-01T00:00:00+02:00": 45 - } - } - }, - "652d210133aa2d8c68b1bea6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9736 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9736 - }, - "solicitacao-criada": { - "2024-11-01T00:00:00+02:00": 4704 - }, - "solicitacao-conclusao": { - "2024-11-01T00:00:00+02:00": 959 - }, - "solicitacao-rejeicao": { - "2024-11-01T00:00:00+02:00": 16 - }, - "solicitacao-autorizacao": { - "2024-11-01T00:00:00+02:00": 4057 - } - } - }, - "6524263d72a8166dd08346c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 953 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 953 - }, - "STATUS-RMA-CONCESSIONARIO": { - "2024-11-01T00:00:00+02:00": 6 - }, - "partners-update-indication": { - "2024-11-01T00:00:00+02:00": 67 - }, - "RMA-SOLICITACAO-FABRICA": { - "2024-11-01T00:00:00+02:00": 175 - }, - "status-comercial-vendas": { - "2024-11-01T00:00:00+02:00": 8 - }, - "partners-update-sale": { - "2024-11-01T00:00:00+02:00": 11 - }, - "STATUS-RMA-CLIENTE": { - "2024-11-01T00:00:00+02:00": 44 - }, - "partners-create-indication": { - "2024-11-01T00:00:00+02:00": 51 - }, - "criado-venda": { - "2024-11-01T00:00:00+02:00": 182 - }, - "STATUS-RMA-FABRICA": { - "2024-11-01T00:00:00+02:00": 357 - }, - "status-solicitacao-compra": { - "2024-11-01T00:00:00+02:00": 48 - } - } - }, - "6639eeff0c0215ee78621015": { - "$overall": { - "2024-11-01T00:00:00+02:00": 32073 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 32073 - }, - "development ENV": { - "2024-11-01T00:00:00+02:00": 31840 - }, - "oms app": { - "2024-11-01T00:00:00+02:00": 233 - } - } - }, - "63e9893f8ce4830a19151391": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3325 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3325 - }, - "Closed or Holiday Reminder": { - "2024-11-01T00:00:00+02:00": 187 - }, - "Entered Location": { - "2024-11-01T00:00:00+02:00": 188 - }, - "List Updated": { - "2024-11-01T00:00:00+02:00": 1754 - }, - "Weekly forgotten Items": { - "2024-11-01T00:00:00+02:00": 994 - }, - "Exit Location": { - "2024-11-01T00:00:00+02:00": 202 - } - } - }, - "64b4e554d82471a0444f8415": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29647 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29647 - }, - "LeaderBoard Update": { - "2024-11-01T00:00:00+02:00": 1295 - }, - "Mint Nft": { - "2024-11-01T00:00:00+02:00": 18617 - }, - "Claim Rewards": { - "2024-11-01T00:00:00+02:00": 198 - }, - "Team Submission": { - "2024-11-01T00:00:00+02:00": 9533 - } - } - }, - "6669f5fec7f96cc1968787d9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23146 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23146 - }, - "comment-mention": { - "2024-11-01T00:00:00+02:00": 4092 - }, - "file-download": { - "2024-11-01T00:00:00+02:00": 809 - }, - "comment-reply": { - "2024-11-01T00:00:00+02:00": 1253 - }, - "collaborator-invite": { - "2024-11-01T00:00:00+02:00": 16992 - } - } - }, - "65bb0ed1516fabd8520d5673": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1390 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1390 - }, - "inbox-new-thread": { - "2024-11-01T00:00:00+02:00": 839 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 23 - }, - "inbox-thread-digest": { - "2024-11-01T00:00:00+02:00": 528 - } - } - }, - "65887da2f14b6f3ef002d584": { - "$overall": { - "2024-11-01T00:00:00+02:00": 223 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 223 - }, - "success": { - "2024-11-01T00:00:00+02:00": 223 - } - } - }, - "665f80fe8e255032572549f2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 323 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 323 - }, - "Machine Down": { - "2024-11-01T00:00:00+02:00": 323 - } - } - }, - "66ac042fb11ac224eaf4f23a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14364 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14364 - }, - "prod-eu-user-resource-requests": { - "2024-11-01T00:00:00+02:00": 43 - }, - "prod-eu-timesheet-not-completed": { - "2024-11-01T00:00:00+02:00": 14321 - } - } - }, - "66b36aa7aa4218d12678f006": { - "$overall": { - "2024-11-01T00:00:00+02:00": 324 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 324 - }, - "email": { - "2024-11-01T00:00:00+02:00": 99 - }, - "journey": { - "2024-11-01T00:00:00+02:00": 9 - }, - "test-email-notification": { - "2024-11-01T00:00:00+02:00": 42 - }, - "ttya-journey-workflow-level-3": { - "2024-11-01T00:00:00+02:00": 9 - }, - "ttya-journey-workflow-level-1": { - "2024-11-01T00:00:00+02:00": 55 - }, - "first_level_workflow": { - "2024-11-01T00:00:00+02:00": 10 - }, - "ttya-journey-workflow-level-2": { - "2024-11-01T00:00:00+02:00": 54 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 16 - }, - "email_email_email": { - "2024-11-01T00:00:00+02:00": 14 - } - } - }, - "66fd558bcf609b1343268e49": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20031 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20031 - }, - "in-app": { - "2024-11-01T00:00:00+02:00": 20031 - } - } - }, - "6525396bae3f3225a9475db0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4891 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4891 - }, - "Space Membership Invite Approval Admin": { - "2024-11-01T00:00:00+02:00": 461 - }, - "Space Membership Invite Decline Admin": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Comment Reactions": { - "2024-11-01T00:00:00+02:00": 135 - }, - "Space Membership Request Approval Admin": { - "2024-11-01T00:00:00+02:00": 101 - }, - "Space Membership Request Approval User": { - "2024-11-01T00:00:00+02:00": 77 - }, - "Post Reactions": { - "2024-11-01T00:00:00+02:00": 650 - }, - "Challenge Event Summary": { - "2024-11-01T00:00:00+02:00": 26 - }, - "Space Membership Request Decline Admin": { - "2024-11-01T00:00:00+02:00": 271 - }, - "Space Membership Request": { - "2024-11-01T00:00:00+02:00": 416 - }, - "Space Appointment Creation": { - "2024-11-01T00:00:00+02:00": 510 - }, - "Challenge Keep Streak": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Post Comment Author": { - "2024-11-01T00:00:00+02:00": 212 - }, - "Challenge Approval": { - "2024-11-01T00:00:00+02:00": 24 - }, - "Space Appointment Update": { - "2024-11-01T00:00:00+02:00": 46 - }, - "Space Membership Invite Approval User": { - "2024-11-01T00:00:00+02:00": 235 - }, - "Space New Post": { - "2024-11-01T00:00:00+02:00": 901 - }, - "Space Membership Invite": { - "2024-11-01T00:00:00+02:00": 476 - }, - "Space Membership Invite Decline User": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Poll Updates": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Space Membership Request Decline User": { - "2024-11-01T00:00:00+02:00": 140 - }, - "Post Comment Mention": { - "2024-11-01T00:00:00+02:00": 159 - } - } - }, - "638a3301ed1c4c44d2a58839": { - "$overall": { - "2024-11-01T00:00:00+02:00": 212144 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 212144 - }, - "account-activation": { - "2024-11-01T00:00:00+02:00": 1363 - }, - "auth-code": { - "2024-11-01T00:00:00+02:00": 30 - }, - "AgOnline-ResetPassword": { - "2024-11-01T00:00:00+02:00": 1898 - }, - "appointments-next-day": { - "2024-11-01T00:00:00+02:00": 208853 - } - } - }, - "651add0cb03ff038cedc7448": { - "$overall": { - "2024-11-01T00:00:00+02:00": 357915 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 357915 - }, - "new-message": { - "2024-11-01T00:00:00+02:00": 357911 - } - } - }, - "66b35706aa4218d126bbbf49": { - "$overall": { - "2024-11-01T00:00:00+02:00": 481 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 481 - }, - "Assigned": { - "2024-11-01T00:00:00+02:00": 114 - }, - "Status Updates": { - "2024-11-01T00:00:00+02:00": 141 - }, - "Mentions": { - "2024-11-01T00:00:00+02:00": 221 - } - } - }, - "650b644a42707458fe431762": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1554 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1554 - }, - "challenge.invite.accept.inviter": { - "2024-11-01T00:00:00+02:00": 15 - }, - "user.psnPrivateProfile": { - "2024-11-01T00:00:00+02:00": 11 - }, - "user.steamStatsUpdated": { - "2024-11-01T00:00:00+02:00": 237 - }, - "challenge.created": { - "2024-11-01T00:00:00+02:00": 219 - }, - "Challenge Winner": { - "2024-11-01T00:00:00+02:00": 7 - }, - "user.psnStatsUpdated": { - "2024-11-01T00:00:00+02:00": 10 - }, - "challenge.user.join": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Challenge Started": { - "2024-11-01T00:00:00+02:00": 10 - }, - "challenge.complete.winner.winner": { - "2024-11-01T00:00:00+02:00": 25 - }, - "challenge.complete.winner.participants": { - "2024-11-01T00:00:00+02:00": 6 - }, - "challenge.donation": { - "2024-11-01T00:00:00+02:00": 21 - }, - "challenge.started": { - "2024-11-01T00:00:00+02:00": 24 - }, - "admin-broadcast-notification": { - "2024-11-01T00:00:00+02:00": 576 - }, - "Challenge User Join": { - "2024-11-01T00:00:00+02:00": 10 - }, - "challenge.invite.create": { - "2024-11-01T00:00:00+02:00": 79 - }, - "Challenge Created": { - "2024-11-01T00:00:00+02:00": 13 - }, - "user.steamPrivateProfile": { - "2024-11-01T00:00:00+02:00": 253 - } - } - }, - "668d398684227ca750502c57": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15658 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15658 - }, - "Torneo cancellato": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Torneo in scadenza": { - "2024-11-01T00:00:00+02:00": 3222 - }, - "Nuova transazione": { - "2024-11-01T00:00:00+02:00": 1087 - }, - "Torneo in partenza": { - "2024-11-01T00:00:00+02:00": 3075 - }, - "Tournament Unjoin": { - "2024-11-01T00:00:00+02:00": 46 - }, - "tournament-subscription-confirmed": { - "2024-11-01T00:00:00+02:00": 167 - }, - "Account affiliato approvato": { - "2024-11-01T00:00:00+02:00": 7 - }, - "KYC Status": { - "2024-11-01T00:00:00+02:00": 169 - }, - "tournament-unjoin": { - "2024-11-01T00:00:00+02:00": 54 - }, - "Tournament Subscription Confirmed": { - "2024-11-01T00:00:00+02:00": 180 - }, - "Welcome To Tralent": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Torneo iniziato": { - "2024-11-01T00:00:00+02:00": 6375 - }, - "Torneo terminato": { - "2024-11-01T00:00:00+02:00": 1226 - } - } - }, - "64011cb9841d0bacae01f6ff": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2260 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2260 - }, - "Contractor Entry/Exit": { - "2024-11-01T00:00:00+02:00": 126 - }, - "Data Exception": { - "2024-11-01T00:00:00+02:00": 169 - }, - "General Messages With Buttons": { - "2024-11-01T00:00:00+02:00": 1887 - }, - "SMS Only": { - "2024-11-01T00:00:00+02:00": 19 - }, - "General Messages": { - "2024-11-01T00:00:00+02:00": 54 - } - } - }, - "64db6d7084fbabb0eef2e7a0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14001 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14001 - }, - "New Issue": { - "2024-11-01T00:00:00+02:00": 6134 - }, - "Quota Reached": { - "2024-11-01T00:00:00+02:00": 2747 - }, - "Quota Nearly Reached": { - "2024-11-01T00:00:00+02:00": 5120 - } - } - }, - "657006a1d69593bcb426d80e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1639 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1639 - }, - "Logbook": { - "2024-11-01T00:00:00+02:00": 1627 - }, - "Shipyard": { - "2024-11-01T00:00:00+02:00": 12 - } - } - }, - "6437a1cdc3f9dd9ef6a22609": { - "$overall": { - "2024-11-01T00:00:00+02:00": 54 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 54 - }, - "[ Customer ] - Order Shipment Status": { - "2024-11-01T00:00:00+02:00": 7 - }, - "[ Store ] - Message Notification": { - "2024-11-01T00:00:00+02:00": 44 - } - } - }, - "6643b1e7fbadc9d325959e25": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2467 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2467 - }, - "Add Role": { - "2024-11-01T00:00:00+02:00": 168 - }, - "Change Status": { - "2024-11-01T00:00:00+02:00": 875 - }, - "Alert Appointment Missing Register": { - "2024-11-01T00:00:00+02:00": 502 - }, - "Mental Health Campaing": { - "2024-11-01T00:00:00+02:00": 31 - }, - "New Appointment": { - "2024-11-01T00:00:00+02:00": 272 - }, - "Add Sick Note": { - "2024-11-01T00:00:00+02:00": 101 - }, - "Add Prescription": { - "2024-11-01T00:00:00+02:00": 258 - }, - "Alert Old Open Appointment": { - "2024-11-01T00:00:00+02:00": 214 - }, - "Update Health Leader": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Implantação": { - "2024-11-01T00:00:00+02:00": 21 - } - } - }, - "64654f8125b1fb30f26b3ce3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 111276 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 111276 - }, - "Public Profile Activity": { - "2024-11-01T00:00:00+02:00": 8861 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 35 - }, - "RewardSettingsUpdated": { - "2024-11-01T00:00:00+02:00": 133 - }, - "Employer Reward Requested": { - "2024-11-01T00:00:00+02:00": 3734 - }, - "NewJobSatisfactionSurvey": { - "2024-11-01T00:00:00+02:00": 897 - }, - "EmployeeWeeklySmsFeedback": { - "2024-11-01T00:00:00+02:00": 58799 - }, - "EmployeeNewOnlineMentionV2": { - "2024-11-01T00:00:00+02:00": 33553 - }, - "Points Flex Reward Availability": { - "2024-11-01T00:00:00+02:00": 3298 - }, - "EmployeeProfileNewLead": { - "2024-11-01T00:00:00+02:00": 692 - }, - "NoPointsRewardEarned": { - "2024-11-01T00:00:00+02:00": 1170 - }, - "ProductReviewRequest": { - "2024-11-01T00:00:00+02:00": 104 - } - } - }, - "64135799799e3c974d3f6426": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3984868 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3984868 - }, - "New Clips": { - "2024-11-01T00:00:00+02:00": 870534 - }, - "New Follow": { - "2024-11-01T00:00:00+02:00": 5520 - }, - "New Match": { - "2024-11-01T00:00:00+02:00": 2948884 - }, - "Allstar Gaming": { - "2024-11-01T00:00:00+02:00": 5241 - }, - "New Squad Clip": { - "2024-11-01T00:00:00+02:00": 742 - }, - "New Comment": { - "2024-11-01T00:00:00+02:00": 51 - }, - "New Mobile Clips": { - "2024-11-01T00:00:00+02:00": 153896 - } - } - }, - "652d099361752f4c288defb9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 858 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 858 - }, - "Toppy | Return - Completed - Refunded Full": { - "2024-11-01T00:00:00+02:00": 143 - }, - "Toppy | Return - Processing - In repair": { - "2024-11-01T00:00:00+02:00": 23 - }, - "Stocky | Purchase | Overdue": { - "2024-11-01T00:00:00+02:00": 43 - }, - "Toppy | Return - Completed - Replaced": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Toppy | Return - Requested - Requested": { - "2024-11-01T00:00:00+02:00": 284 - }, - "Toppy | Return - Completed - Repaired": { - "2024-11-01T00:00:00+02:00": 49 - }, - "Toppy | Return - Approved - Label": { - "2024-11-01T00:00:00+02:00": 275 - }, - "Toppy | Return - Approved - Pallet Pickup": { - "2024-11-01T00:00:00+02:00": 21 - } - } - }, - "654fe30fc36c6d67b96de432": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4324 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4324 - }, - "Task Status change": { - "2024-11-01T00:00:00+02:00": 792 - }, - "User assigned to task": { - "2024-11-01T00:00:00+02:00": 338 - }, - "New Comment": { - "2024-11-01T00:00:00+02:00": 3194 - } - } - }, - "6329fc7ae2a2de81df4b10a6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5589 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5589 - }, - "workingCapitalEnabledLineAdvanceRequested": { - "2024-11-01T00:00:00+02:00": 552 - }, - "applicantRegistered": { - "2024-11-01T00:00:00+02:00": 111 - }, - "announce": { - "2024-11-01T00:00:00+02:00": 56 - }, - "alert": { - "2024-11-01T00:00:00+02:00": 80 - }, - "fxTransactionConfirmation": { - "2024-11-01T00:00:00+02:00": 181 - }, - "Colaboradores": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Nueva póliza contratada": { - "2024-11-01T00:00:00+02:00": 120 - }, - "Disbursement Paid Advance": { - "2024-11-01T00:00:00+02:00": 968 - }, - "On-boarding notification": { - "2024-11-01T00:00:00+02:00": 46 - }, - "workingCapitalPreEnableLineOpened": { - "2024-11-01T00:00:00+02:00": 12 - }, - "generalRegisterEmail": { - "2024-11-01T00:00:00+02:00": 403 - }, - "Deposit Received Email Notification": { - "2024-11-01T00:00:00+02:00": 691 - }, - "2FA": { - "2024-11-01T00:00:00+02:00": 2066 - }, - "Recuperar contraseña": { - "2024-11-01T00:00:00+02:00": 48 - }, - "fxmoneywastransferred": { - "2024-11-01T00:00:00+02:00": 174 - }, - "credit-bureau-authorization-validation": { - "2024-11-01T00:00:00+02:00": 61 - } - } - }, - "6670ed6e78b0832675c76f6a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1026 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1026 - }, - "prod-us-timesheet-not-completed": { - "2024-11-01T00:00:00+02:00": 1011 - }, - "staging-us-resource-requests-updates": { - "2024-11-01T00:00:00+02:00": 7 - } - } - }, - "64e4824819860000717aecb9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9299 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9299 - }, - "dispute_management": { - "2024-11-01T00:00:00+02:00": 1417 - }, - "payout_failed": { - "2024-11-01T00:00:00+02:00": 9 - }, - "buyer_qualification_declined": { - "2024-11-01T00:00:00+02:00": 34 - }, - "payout_initiated": { - "2024-11-01T00:00:00+02:00": 60 - }, - "charge_failed": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Merchant CSV report": { - "2024-11-01T00:00:00+02:00": 22 - }, - "terms_weekly_digest": { - "2024-11-01T00:00:00+02:00": 887 - }, - "payout_paid": { - "2024-11-01T00:00:00+02:00": 390 - }, - "sftp_sync_invoices_report": { - "2024-11-01T00:00:00+02:00": 42 - }, - "transaction_financed": { - "2024-11-01T00:00:00+02:00": 133 - }, - "transaction_charged": { - "2024-11-01T00:00:00+02:00": 380 - }, - "buyer_qualification_approved": { - "2024-11-01T00:00:00+02:00": 74 - }, - "terms_daily_digest": { - "2024-11-01T00:00:00+02:00": 5814 - } - } - }, - "6593fa76f58e905ecac67a12": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18014 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18014 - }, - "IN_APP_NEW_LEVEL": { - "2024-11-01T00:00:00+02:00": 18014 - } - } - }, - "67235ab730d1c099604bf849": { - "$overall": { - "2024-11-01T00:00:00+02:00": 343 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 343 - }, - "app-data-created": { - "2024-11-01T00:00:00+02:00": 6 - }, - "App Data Created": { - "2024-11-01T00:00:00+02:00": 213 - }, - "App Data Commented": { - "2024-11-01T00:00:00+02:00": 23 - }, - "App Data Updated": { - "2024-11-01T00:00:00+02:00": 97 - } - } - }, - "6523e5f01941f73be45e3ac3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 683 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 683 - }, - "Plaintiff Finding - Mass Arbitration - New Plaintiff's Reminder": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Plaintiff Finding - Running Campaign": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Plaintiff Finding - Characteristics Revised": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Insights - 24-Hour Review Reminder": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Plaintiff Finding - Plaintiff Status Change": { - "2024-11-01T00:00:00+02:00": 336 - }, - "New Case Assignment": { - "2024-11-01T00:00:00+02:00": 43 - }, - "Plaintiff Finding - Potential Plaintiff Reminder": { - "2024-11-01T00:00:00+02:00": 46 - }, - "Plaintiff Finding - Potential Plaintiff Identified": { - "2024-11-01T00:00:00+02:00": 94 - }, - "Plaintiff Characteristic Changes Submitted": { - "2024-11-01T00:00:00+02:00": 54 - }, - "Plaintiff Finding - Characteristics Suggested": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Plaintiff Finding - Mass Arbitration - Potential Plaintiff Identified": { - "2024-11-01T00:00:00+02:00": 7 - } - } - }, - "64c3f5e72df653eabdc06c32": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5434 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5434 - }, - "Generic_Notification": { - "2024-11-01T00:00:00+02:00": 5434 - } - } - }, - "65439145e3bcee0f76a5a368": { - "$overall": { - "2024-11-01T00:00:00+02:00": 38521 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 38521 - }, - "Neue Dateien hochgeladen": { - "2024-11-01T00:00:00+02:00": 38521 - } - } - }, - "6627ff494ad60adb146eca32": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2460 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2460 - }, - "Invitación Nuevo Asesor": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Bienvenida Asesor": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Nuevo lead": { - "2024-11-01T00:00:00+02:00": 243 - }, - "Nuevo inicio de sesión": { - "2024-11-01T00:00:00+02:00": 474 - }, - "Broker Asignado a Cliente": { - "2024-11-01T00:00:00+02:00": 239 - }, - "Visita solicitada": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Login": { - "2024-11-01T00:00:00+02:00": 516 - }, - "Edición de propiedad": { - "2024-11-01T00:00:00+02:00": 927 - } - } - }, - "662a58724b6cd9280bf5139d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 110 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 110 - }, - "post-status-update": { - "2024-11-01T00:00:00+02:00": 103 - } - } - }, - "64477125ac1c08f04edc14aa": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20520 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20520 - }, - "Comment Mention": { - "2024-11-01T00:00:00+02:00": 20520 - } - } - }, - "66437ce7b370e6b94e711d3c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 294 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 294 - }, - "app-order delivery status changed [Ready]": { - "2024-11-01T00:00:00+02:00": 14 - }, - "[Active] Order placed": { - "2024-11-01T00:00:00+02:00": 20 - }, - "[Active] app-order delivery status changed": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Your email has been changed": { - "2024-11-01T00:00:00+02:00": 202 - }, - "Order Placed [Ready]": { - "2024-11-01T00:00:00+02:00": 49 - } - } - }, - "6568b37faa67fd979c0b94d8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 776 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 776 - }, - "Elevator Price Alert": { - "2024-11-01T00:00:00+02:00": 776 - } - } - }, - "64d2121ee443560425c07189": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1981 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1981 - }, - "Snoozed has ended": { - "2024-11-01T00:00:00+02:00": 1981 - } - } - }, - "647e50e6720b54f89e06480e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 449 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 449 - }, - "008-1 Einladung Künstlerprofil für neue Nutzer": { - "2024-11-01T00:00:00+02:00": 10 - }, - "008-1 Invitation to Project New User": { - "2024-11-01T00:00:00+02:00": 106 - }, - "010-4 Invitation to Apply": { - "2024-11-01T00:00:00+02:00": 41 - }, - "000-1c Bestätigungslink Veranstalter Invite": { - "2024-11-01T00:00:00+02:00": 10 - }, - "008-2 Reminder Einladung Künstlerprofil": { - "2024-11-01T00:00:00+02:00": 6 - }, - "000-1a Bestätigungscode": { - "2024-11-01T00:00:00+02:00": 7 - }, - "009-1 Invitation Project for existing User": { - "2024-11-01T00:00:00+02:00": 86 - }, - "010-6-1 Offer to Organizer": { - "2024-11-01T00:00:00+02:00": 7 - }, - "008-3 Einladung Reminder mit Teaserinfo": { - "2024-11-01T00:00:00+02:00": 6 - }, - "010-2 Message Formation to Organizer": { - "2024-11-01T00:00:00+02:00": 8 - }, - "030-2 Participation Update for Musician": { - "2024-11-01T00:00:00+02:00": 35 - }, - "inbound mailing reply callback test": { - "2024-11-01T00:00:00+02:00": 6 - }, - "000-1b Bestätigungscode Veranstalter": { - "2024-11-01T00:00:00+02:00": 13 - }, - "030-1 Participation Insert for Musician": { - "2024-11-01T00:00:00+02:00": 36 - }, - "030-3 Participation Remove for Musician": { - "2024-11-01T00:00:00+02:00": 24 - }, - "010-7 Organizer rejects Formation": { - "2024-11-01T00:00:00+02:00": 7 - }, - "020-1 | New Package Booking": { - "2024-11-01T00:00:00+02:00": 7 - }, - "010-6-2 Reminder Organizer Offer Response": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "67463a802c32fe389fa61341": { - "$overall": { - "2024-11-01T00:00:00+02:00": 32 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 32 - }, - "alert-email-workflow": { - "2024-11-01T00:00:00+02:00": 31 - } - } - }, - "651c209f8816295152811079": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1360 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1360 - }, - "Step Assigned": { - "2024-11-01T00:00:00+02:00": 23 - }, - "Step Status Updated": { - "2024-11-01T00:00:00+02:00": 1129 - }, - "Comment Created": { - "2024-11-01T00:00:00+02:00": 199 - } - } - }, - "6630a51483064b959c801961": { - "$overall": { - "2024-11-01T00:00:00+02:00": 74498 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 74498 - }, - "pushNotification": { - "2024-11-01T00:00:00+02:00": 64865 - }, - "emailNotification": { - "2024-11-01T00:00:00+02:00": 9633 - } - } - }, - "648e433db5f1ae122b746d19": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3195 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3195 - }, - "general-notification": { - "2024-11-01T00:00:00+02:00": 3195 - } - } - }, - "64df0f4ea9172aa4b7052247": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27679 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27679 - }, - "primary-workflow": { - "2024-11-01T00:00:00+02:00": 19196 - }, - "task-summary": { - "2024-11-01T00:00:00+02:00": 1194 - }, - "secondary-workflow": { - "2024-11-01T00:00:00+02:00": 7289 - } - } - }, - "65fb16744fe3628e5e65fe2e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2246 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2246 - }, - "Document Signature Completion": { - "2024-11-01T00:00:00+02:00": 10 - }, - "ECDT NOTIF": { - "2024-11-01T00:00:00+02:00": 16 - }, - "coupon-reach-80": { - "2024-11-01T00:00:00+02:00": 7 - }, - "cfc-80-percent-in-app": { - "2024-11-01T00:00:00+02:00": 346 - }, - "Closed-coupon-InApp": { - "2024-11-01T00:00:00+02:00": 620 - }, - "Live-coupon-InApp": { - "2024-11-01T00:00:00+02:00": 719 - }, - "Live-coupon-email-InApp-notif": { - "2024-11-01T00:00:00+02:00": 194 - }, - "coupon-reach-100": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Closed-coupon-email-InApp-notif": { - "2024-11-01T00:00:00+02:00": 95 - }, - "SendEmail": { - "2024-11-01T00:00:00+02:00": 231 - } - } - }, - "646f08088b0b51ed17340c31": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14954 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14954 - }, - "New Admin Chat Message": { - "2024-11-01T00:00:00+02:00": 165 - }, - "Admin Notification": { - "2024-11-01T00:00:00+02:00": 504 - }, - "New task launched": { - "2024-11-01T00:00:00+02:00": 438 - }, - "ADHOC Notification Template": { - "2024-11-01T00:00:00+02:00": 13847 - } - } - }, - "6727412d456590b1d8992d83": { - "$overall": { - "2024-11-01T00:00:00+02:00": 303 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 303 - }, - "remind-missing-streak-workflow": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13 - }, - "test-workflow": { - "2024-11-01T00:00:00+02:00": 11 - }, - "send-otp-workflow": { - "2024-11-01T00:00:00+02:00": 11 - }, - "verify-email-workflow": { - "2024-11-01T00:00:00+02:00": 220 - }, - "remind-streak-workflow": { - "2024-11-01T00:00:00+02:00": 16 - } - } - }, - "6413051f44e9291a6455e3e7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "DashboardKPI Notifications": { - "2024-11-01T00:00:00+02:00": 14 - } - } - }, - "6423f39a2586c27b11d98d84": { - "$overall": { - "2024-11-01T00:00:00+02:00": 55963 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 55963 - }, - "Chat Digest": { - "2024-11-01T00:00:00+02:00": 6056 - }, - "RemovedFromRecord": { - "2024-11-01T00:00:00+02:00": 65 - }, - "Interaction Reminder": { - "2024-11-01T00:00:00+02:00": 11771 - }, - "ActivityAltered": { - "2024-11-01T00:00:00+02:00": 1866 - }, - "changeEmail": { - "2024-11-01T00:00:00+02:00": 28 - }, - "recordInvite": { - "2024-11-01T00:00:00+02:00": 2389 - }, - "questionnaireReminder": { - "2024-11-01T00:00:00+02:00": 2322 - }, - "passwordUpdated": { - "2024-11-01T00:00:00+02:00": 401 - }, - "signUpInvite": { - "2024-11-01T00:00:00+02:00": 9 - }, - "recordTransferred": { - "2024-11-01T00:00:00+02:00": 271 - }, - "interactionReminder": { - "2024-11-01T00:00:00+02:00": 356 - }, - "confirmIntake": { - "2024-11-01T00:00:00+02:00": 29 - }, - "affiliateAdded": { - "2024-11-01T00:00:00+02:00": 46 - }, - "emailUpdated": { - "2024-11-01T00:00:00+02:00": 27 - }, - "documentDigestPatient": { - "2024-11-01T00:00:00+02:00": 75 - }, - "loginCode": { - "2024-11-01T00:00:00+02:00": 7362 - }, - "Confirm an intake": { - "2024-11-01T00:00:00+02:00": 385 - }, - "changeEmailNotification": { - "2024-11-01T00:00:00+02:00": 28 - }, - "therapistDeleted": { - "2024-11-01T00:00:00+02:00": 64 - }, - "passwordReset": { - "2024-11-01T00:00:00+02:00": 486 - }, - "therapistAdded": { - "2024-11-01T00:00:00+02:00": 110 - }, - "dailyDigestTherapists": { - "2024-11-01T00:00:00+02:00": 92 - }, - "dailyDigestPatient": { - "2024-11-01T00:00:00+02:00": 484 - }, - "activityAltered": { - "2024-11-01T00:00:00+02:00": 44 - }, - "Daily Digest Patient": { - "2024-11-01T00:00:00+02:00": 15780 - }, - "enableTwoFactor": { - "2024-11-01T00:00:00+02:00": 20 - }, - "newOrganisation": { - "2024-11-01T00:00:00+02:00": 85 - }, - "Document Digest Patient": { - "2024-11-01T00:00:00+02:00": 1993 - }, - "chatDigest": { - "2024-11-01T00:00:00+02:00": 178 - }, - "documentDigestTherapist": { - "2024-11-01T00:00:00+02:00": 17 - }, - "Daily digest therapists": { - "2024-11-01T00:00:00+02:00": 2304 - }, - "Document Digest Therapist": { - "2024-11-01T00:00:00+02:00": 356 - }, - "EnableTwoFactor": { - "2024-11-01T00:00:00+02:00": 461 - } - } - }, - "64e32ac81e192345f283d627": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1638 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1638 - }, - "Semi-Open Campaign Rejected": { - "2024-11-01T00:00:00+02:00": 85 - }, - "Publisher Not Active": { - "2024-11-01T00:00:00+02:00": 339 - }, - "User Registered": { - "2024-11-01T00:00:00+02:00": 154 - }, - "Closed Campaign Approved (advertiser)": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Closed Campaign Approved (influencer)": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Publisher Activated": { - "2024-11-01T00:00:00+02:00": 119 - }, - "Campaign Deactivated": { - "2024-11-01T00:00:00+02:00": 125 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Publisher Channels Disconnected": { - "2024-11-01T00:00:00+02:00": 252 - }, - "Channel Force Disconnected": { - "2024-11-01T00:00:00+02:00": 439 - }, - "Task Acceptance Requested": { - "2024-11-01T00:00:00+02:00": 39 - }, - "Email Changed": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Closed Campaign Invitation Created": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Semi-Open Campaign Approved": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Password Changed": { - "2024-11-01T00:00:00+02:00": 8 - } - } - }, - "66688112d05b953ba10ab594": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4827 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4827 - }, - "rebalance_execution_run_production": { - "2024-11-01T00:00:00+02:00": 4827 - } - } - }, - "63215ba3a4ca4df9242c24c4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1032 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1032 - }, - "Schedule Project": { - "2024-11-01T00:00:00+02:00": 514 - }, - "Account Verification": { - "2024-11-01T00:00:00+02:00": 323 - }, - "incorrect-password": { - "2024-11-01T00:00:00+02:00": 16 - }, - "FILE_UPLOAD": { - "2024-11-01T00:00:00+02:00": 106 - }, - "User Welcome Email": { - "2024-11-01T00:00:00+02:00": 22 - }, - "TAG_ADDED": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Client UserAccount verification": { - "2024-11-01T00:00:00+02:00": 13 - } - } - }, - "65cb7ceb619fe4f9cf882165": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34517 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34517 - }, - "Push Notification": { - "2024-11-01T00:00:00+02:00": 34507 - }, - "referral confirmation": { - "2024-11-01T00:00:00+02:00": 7 - } - } - }, - "6501cc0935286a5ea69aa722": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1438 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1438 - }, - "Basic Message": { - "2024-11-01T00:00:00+02:00": 1438 - } - } - }, - "652efbf06c3964c5a2845118": { - "$overall": { - "2024-11-01T00:00:00+02:00": 754 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 754 - }, - "follow": { - "2024-11-01T00:00:00+02:00": 385 - }, - "In App Share": { - "2024-11-01T00:00:00+02:00": 217 - }, - "One time password": { - "2024-11-01T00:00:00+02:00": 152 - } - } - }, - "64f0638825339d16c5d2738a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 506 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 506 - }, - "Notes de frais": { - "2024-11-01T00:00:00+02:00": 26 - }, - "Transports": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Télétravail": { - "2024-11-01T00:00:00+02:00": 124 - }, - "Absences": { - "2024-11-01T00:00:00+02:00": 344 - } - } - }, - "64c1760e3ec3e6a351ea3ba1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 769 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 769 - }, - "seed calculated": { - "2024-11-01T00:00:00+02:00": 769 - } - } - }, - "65fa38148453b14f2f5aeea2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 276 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 276 - }, - "Project Editing Editor": { - "2024-11-01T00:00:00+02:00": 35 - }, - "Project Pending Client Review Admin": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Project Editing Client": { - "2024-11-01T00:00:00+02:00": 31 - }, - "Project Pending Admin Review Editor": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Project New Project Editor Request Editor": { - "2024-11-01T00:00:00+02:00": 39 - }, - "Project Pending Admin Review Admin": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Project Editing Admin": { - "2024-11-01T00:00:00+02:00": 35 - }, - "Project Completed Editor": { - "2024-11-01T00:00:00+02:00": 30 - }, - "Project Completed Client": { - "2024-11-01T00:00:00+02:00": 26 - }, - "Project Pending Admin Approval Admin": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Project Completed Admin": { - "2024-11-01T00:00:00+02:00": 30 - }, - "Project Pending Client Review Editor": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "63317d6327d50dea0b03d16e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1418 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1418 - }, - "contact us": { - "2024-11-01T00:00:00+02:00": 31 - }, - "system-messages": { - "2024-11-01T00:00:00+02:00": 1387 - } - } - }, - "63edbed95f1718af27dc2f2f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10428 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10428 - }, - "prod-batch-of-credentials-status-changed-notification-template": { - "2024-11-01T00:00:00+02:00": 1955 - }, - "prod-credentials-status-changed-notification-template": { - "2024-11-01T00:00:00+02:00": 8413 - }, - "Credentials Changed Notification Template": { - "2024-11-01T00:00:00+02:00": 60 - } - } - }, - "65af6ad4f58e905ecab29441": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2412649 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2412649 - }, - "Ohsogo Pegasus FCM": { - "2024-11-01T00:00:00+02:00": 2412649 - } - } - }, - "662f0d0e843a6a8496596159": { - "$overall": { - "2024-11-01T00:00:00+02:00": 74 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 74 - }, - "File uploaded to submitted task": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Task updated": { - "2024-11-01T00:00:00+02:00": 48 - } - } - }, - "6557f01a8c7cd7ff32f2d475": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58236 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58236 - }, - "Alert: Cleaning Time Short": { - "2024-11-01T00:00:00+02:00": 34240 - }, - "Alert: Unscheduled Visit": { - "2024-11-01T00:00:00+02:00": 1105 - }, - "Alert: High Traffic": { - "2024-11-01T00:00:00+02:00": 3018 - }, - "Alert: Beacon offline": { - "2024-11-01T00:00:00+02:00": 3000 - }, - "Alert: Cleaning Time Long": { - "2024-11-01T00:00:00+02:00": 1154 - }, - "Schedule Reports": { - "2024-11-01T00:00:00+02:00": 1354 - }, - "Alert: Basestation offline": { - "2024-11-01T00:00:00+02:00": 709 - }, - "Alert: Missed Shift": { - "2024-11-01T00:00:00+02:00": 11449 - }, - "Alert: Sensor Empty": { - "2024-11-01T00:00:00+02:00": 1694 - }, - "Alert: Overtime Worked": { - "2024-11-01T00:00:00+02:00": 500 - }, - "Org invites a user": { - "2024-11-01T00:00:00+02:00": 13 - } - } - }, - "6463ebef60f1803b3a6fbf6b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 106759 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 106759 - }, - "Adjustment Charges": { - "2024-11-01T00:00:00+02:00": 1828 - }, - "Pickups": { - "2024-11-01T00:00:00+02:00": 32346 - }, - "PRO Number Updates": { - "2024-11-01T00:00:00+02:00": 12194 - }, - "Deliveries": { - "2024-11-01T00:00:00+02:00": 31922 - }, - "Cancellations": { - "2024-11-01T00:00:00+02:00": 3478 - }, - "Reschedules": { - "2024-11-01T00:00:00+02:00": 24985 - }, - "Amazon Approved": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "64ca38d1a936a1d182441a27": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1613 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1613 - }, - "messaging": { - "2024-11-01T00:00:00+02:00": 1613 - } - } - }, - "63fa339af93b4fa85aac153d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1083 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1083 - }, - "On-boarding notification": { - "2024-11-01T00:00:00+02:00": 1083 - } - } - }, - "65799faaab5221590f7f1cc1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2555 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2555 - }, - "Customer Onboarding": { - "2024-11-01T00:00:00+02:00": 214 - }, - "Double Points": { - "2024-11-01T00:00:00+02:00": 2143 - }, - "Installer App": { - "2024-11-01T00:00:00+02:00": 138 - }, - "Beta Survey": { - "2024-11-01T00:00:00+02:00": 59 - } - } - }, - "65caa89e619fe4f9cf723907": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26284 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26284 - }, - "Saved Search Notification - 1": { - "2024-11-01T00:00:00+02:00": 26284 - } - } - }, - "652e5833fff93419480c951b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 231914 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 231914 - }, - "Notification Laravel Stocklear": { - "2024-11-01T00:00:00+02:00": 231914 - } - } - }, - "667abaa4218289a1c466b985": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1295 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1295 - }, - "ky": { - "2024-11-01T00:00:00+02:00": 1295 - } - } - }, - "650af582c016453d5bdfb209": { - "$overall": { - "2024-11-01T00:00:00+02:00": 35 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 35 - }, - "Nutzerverwaltung - Neue Rechte erhalten": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Nutzerverwaltung - Einladung angenomen": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Payments - Zustimmung muss bestätigt werden": { - "2024-11-01T00:00:00+02:00": 18 - } - } - }, - "651eff411df1b46454f4c05a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14711 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14711 - }, - "Order Confirmation Seller": { - "2024-11-01T00:00:00+02:00": 145 - }, - "Order Fulfilled Seller": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Community Notifications": { - "2024-11-01T00:00:00+02:00": 912 - }, - "Order Fulfilled Buyer": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Team Subscription Athlete Execution Request": { - "2024-11-01T00:00:00+02:00": 1139 - }, - "New Team Post": { - "2024-11-01T00:00:00+02:00": 1731 - }, - "Athlete Invitation": { - "2024-11-01T00:00:00+02:00": 5225 - }, - "Athlete New Review": { - "2024-11-01T00:00:00+02:00": 6 - }, - "New Eksperience to Followers": { - "2024-11-01T00:00:00+02:00": 427 - }, - "Order Confirmation Buyer": { - "2024-11-01T00:00:00+02:00": 145 - }, - "Athlete Order Expiring Reminder": { - "2024-11-01T00:00:00+02:00": 1269 - }, - "Fan Review Reminder": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Team Subscription Newsletter": { - "2024-11-01T00:00:00+02:00": 35 - }, - "Team Subscription Refund": { - "2024-11-01T00:00:00+02:00": 179 - }, - "Order Cancelled Buyer": { - "2024-11-01T00:00:00+02:00": 118 - }, - "Order Cancelled Seller": { - "2024-11-01T00:00:00+02:00": 118 - }, - "Athlete Order Count Reminder": { - "2024-11-01T00:00:00+02:00": 2805 - }, - "Team Subscription Athlete Payout": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Order Accepted": { - "2024-11-01T00:00:00+02:00": 31 - }, - "New Athletes to Followers": { - "2024-11-01T00:00:00+02:00": 102 - }, - "Team Subscription Renew Success": { - "2024-11-01T00:00:00+02:00": 186 - } - } - }, - "64747ec18b0b51ed1741923d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1005 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1005 - }, - "channelLikes-workflow": { - "2024-11-01T00:00:00+02:00": 58 - }, - "unregisteredChannel-workflow": { - "2024-11-01T00:00:00+02:00": 6 - }, - "unregisteredChannel-workflow-Russian": { - "2024-11-01T00:00:00+02:00": 32 - }, - "adminPanel-workflow": { - "2024-11-01T00:00:00+02:00": 33 - }, - "sharePage-workflow-Russian": { - "2024-11-01T00:00:00+02:00": 348 - }, - "sharePage-workflow": { - "2024-11-01T00:00:00+02:00": 238 - }, - "channelLikes-workflow-Russian": { - "2024-11-01T00:00:00+02:00": 286 - } - } - }, - "673b3b592f10dba8e8616a90": { - "$overall": { - "2024-11-01T00:00:00+02:00": 395 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 395 - }, - "org-user-digest": { - "2024-11-01T00:00:00+02:00": 331 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 64 - } - } - }, - "646f26388b0b51ed1734729b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17146 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17146 - }, - "Projects": { - "2024-11-01T00:00:00+02:00": 12328 - }, - "timesheets-submission-reminder": { - "2024-11-01T00:00:00+02:00": 203 - }, - "Timesheets": { - "2024-11-01T00:00:00+02:00": 3619 - }, - "Tasks": { - "2024-11-01T00:00:00+02:00": 996 - } - } - }, - "65113f461a7614493dc5a9f0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 765 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 765 - }, - "New Group Member": { - "2024-11-01T00:00:00+02:00": 351 - }, - "session_reminder": { - "2024-11-01T00:00:00+02:00": 46 - }, - "purchase_invoice": { - "2024-11-01T00:00:00+02:00": 34 - }, - "group_onboarding_submit": { - "2024-11-01T00:00:00+02:00": 49 - }, - "Group Post Created": { - "2024-11-01T00:00:00+02:00": 142 - }, - "Group Post Reply": { - "2024-11-01T00:00:00+02:00": 140 - } - } - }, - "65bbbfe9cadbf9deb57b546e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 804 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 804 - }, - "Surgical Surgery Create": { - "2024-11-01T00:00:00+02:00": 734 - }, - "surgeryApproval": { - "2024-11-01T00:00:00+02:00": 70 - } - } - }, - "65ce436d99b1dce753411d4a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 941 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 941 - }, - "Asset Notifications": { - "2024-11-01T00:00:00+02:00": 937 - } - } - }, - "66319137a95d2d5be0cffdd5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1163 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1163 - }, - "New Feature Launch": { - "2024-11-01T00:00:00+02:00": 1163 - } - } - }, - "6453755860f1803b3a3fba83": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "Bug was successfully submitted": { - "2024-11-01T00:00:00+02:00": 41 - }, - "Lead list generated": { - "2024-11-01T00:00:00+02:00": 356 - }, - "Message Generation Completed": { - "2024-11-01T00:00:00+02:00": 27 - }, - "Sample Email Generation Completed": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Unipile Account Disconnected": { - "2024-11-01T00:00:00+02:00": 25 - } - } - }, - "62f93267cd5afb6ad39b12b1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21984 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21984 - }, - "Ai Gen Notifications": { - "2024-11-01T00:00:00+02:00": 658 - }, - "popup-notifications": { - "2024-11-01T00:00:00+02:00": 21321 - } - } - }, - "653fbf348928fc83db032ef4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3850 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3850 - }, - "New message": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Email confirmed": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Password reset": { - "2024-11-01T00:00:00+02:00": 6 - }, - "On-boarding": { - "2024-11-01T00:00:00+02:00": 3793 - }, - "Contact Request": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Password reset request": { - "2024-11-01T00:00:00+02:00": 10 - } - } - }, - "642552b70136cef86a79373c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 469 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 469 - }, - "Receipt": { - "2024-11-01T00:00:00+02:00": 67 - }, - "Account Activation": { - "2024-11-01T00:00:00+02:00": 196 - }, - "Welcome": { - "2024-11-01T00:00:00+02:00": 197 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 9 - } - } - }, - "67063d37ba6a0580bfccc7e3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 399 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 399 - }, - "offstreet-stay-after-enter": { - "2024-11-01T00:00:00+02:00": 230 - }, - "payment-error": { - "2024-11-01T00:00:00+02:00": 19 - }, - "offstreet-stay-after-exit": { - "2024-11-01T00:00:00+02:00": 8 - }, - "payment-success": { - "2024-11-01T00:00:00+02:00": 72 - }, - "aparkplus-accepted": { - "2024-11-01T00:00:00+02:00": 33 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17 - }, - "aparkplus-refused": { - "2024-11-01T00:00:00+02:00": 20 - } - } - }, - "64f6ffa51bb9daae5164392a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6034 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6034 - }, - "Sales": { - "2024-11-01T00:00:00+02:00": 294 - }, - "Auctions / Bids": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Assets": { - "2024-11-01T00:00:00+02:00": 5709 - }, - "Offers": { - "2024-11-01T00:00:00+02:00": 21 - } - } - }, - "64092d0773a1721d0476baa9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1181 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1181 - }, - "Request To Check In Appointment": { - "2024-11-01T00:00:00+02:00": 17 - }, - "Twilio Communication - Appointment Reminder - Twillio to Patient - SMS": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Assigned as a negotiator": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Appointment Reminder to Patient Before 24h": { - "2024-11-01T00:00:00+02:00": 47 - }, - "Legal Case Ended": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Twilio Communication - Appointment Canceled - Twillio to Patient - SMS": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Send Ride Booking Information": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Appointment Is Checked In": { - "2024-11-01T00:00:00+02:00": 53 - }, - "Case Changed Notification": { - "2024-11-01T00:00:00+02:00": 56 - }, - "Appointment Reminder to Me": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Appointment Reminder by Email": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Appointment Is Confirmed": { - "2024-11-01T00:00:00+02:00": 51 - }, - "Reqeust To Update LegalCase Status": { - "2024-11-01T00:00:00+02:00": 82 - }, - "Appointment Reminder by SMS": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Request To Confirm Appointment": { - "2024-11-01T00:00:00+02:00": 46 - }, - "Legalcase_is_dropped": { - "2024-11-01T00:00:00+02:00": 53 - }, - "How Was Your Visit?": { - "2024-11-01T00:00:00+02:00": 38 - }, - "Authorization is approved": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Sign request for patient membership application": { - "2024-11-01T00:00:00+02:00": 85 - }, - "Referral That Need Scheduling": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Patient Request to See New Provider": { - "2024-11-01T00:00:00+02:00": 105 - }, - "Send Timer of 30 days prior to statute of limitation": { - "2024-11-01T00:00:00+02:00": 272 - }, - "A new Medical Record is available": { - "2024-11-01T00:00:00+02:00": 104 - } - } - }, - "64362dac4e5fea401a0f19af": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72213 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72213 - }, - "Partner - Appointment Reschedule": { - "2024-11-01T00:00:00+02:00": 2313 - }, - "Partner - Appointment Canceled": { - "2024-11-01T00:00:00+02:00": 3498 - }, - "Partner - Appointment": { - "2024-11-01T00:00:00+02:00": 59779 - }, - "Partner - Appointment Flex": { - "2024-11-01T00:00:00+02:00": 4241 - }, - "Partner - Paid Protocol": { - "2024-11-01T00:00:00+02:00": 2382 - } - } - }, - "630cb844fafbba9bf010f186": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72071 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72071 - }, - "New Maintenance Assigned": { - "2024-11-01T00:00:00+02:00": 64 - }, - "Maintenance Updated": { - "2024-11-01T00:00:00+02:00": 203 - }, - "Crash Detection Violations": { - "2024-11-01T00:00:00+02:00": 793 - }, - "Idling Alerts": { - "2024-11-01T00:00:00+02:00": 23450 - }, - "New Request Update": { - "2024-11-01T00:00:00+02:00": 74 - }, - "Upcoming maintenance alerts": { - "2024-11-01T00:00:00+02:00": 206 - }, - "New Ad-Hoc Request": { - "2024-11-01T00:00:00+02:00": 43 - }, - "Low Fuel Alerts (Tanks)": { - "2024-11-01T00:00:00+02:00": 1326 - }, - "Restricted Geofence Violation": { - "2024-11-01T00:00:00+02:00": 39944 - }, - "Equipment Document Expiry Alerts": { - "2024-11-01T00:00:00+02:00": 5965 - } - } - }, - "648c0658616db8f05a735ef4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2522 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2522 - }, - "canceled-place-internal-reservation-in-app": { - "2024-11-01T00:00:00+02:00": 314 - }, - "success-order": { - "2024-11-01T00:00:00+02:00": 33 - }, - "reservation-change-client-employee": { - "2024-11-01T00:00:00+02:00": 9 - }, - "place-new-order": { - "2024-11-01T00:00:00+02:00": 19 - }, - "canceled-place-external-reservation-in-app": { - "2024-11-01T00:00:00+02:00": 8 - }, - "internal-order": { - "2024-11-01T00:00:00+02:00": 84 - }, - "canceled-place-external-reservation-client-in-app": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Успешна поръчка на продукти": { - "2024-11-01T00:00:00+02:00": 18 - }, - "place-new-reservation": { - "2024-11-01T00:00:00+02:00": 160 - }, - "reminder-reservation": { - "2024-11-01T00:00:00+02:00": 99 - }, - "success-first-order-service": { - "2024-11-01T00:00:00+02:00": 124 - }, - "Untitled": { - "2024-11-01T00:00:00+02:00": 82 - }, - "internal-order-in-app": { - "2024-11-01T00:00:00+02:00": 1033 - }, - "canceled-place-internal-reservation": { - "2024-11-01T00:00:00+02:00": 10 - }, - "group-order": { - "2024-11-01T00:00:00+02:00": 9 - }, - "internal-change-reservation-place-in-app": { - "2024-11-01T00:00:00+02:00": 125 - }, - "canceled-place-external-reservation": { - "2024-11-01T00:00:00+02:00": 7 - }, - "reservation-change-client": { - "2024-11-01T00:00:00+02:00": 9 - }, - "internal-change-reservation-place": { - "2024-11-01T00:00:00+02:00": 99 - }, - "notice-cancellation-reserved-service-employee-in-app": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Нотификация при отказ на услуга": { - "2024-11-01T00:00:00+02:00": 22 - }, - "reservation-change-place-for-client-in-app": { - "2024-11-01T00:00:00+02:00": 6 - }, - "success-order-no-schedule-in-app": { - "2024-11-01T00:00:00+02:00": 15 - }, - "success-payment-product": { - "2024-11-01T00:00:00+02:00": 18 - }, - "rate": { - "2024-11-01T00:00:00+02:00": 161 - } - } - }, - "6421cf785876c8840c441642": { - "$overall": { - "2024-11-01T00:00:00+02:00": 472 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 472 - }, - "Verify email": { - "2024-11-01T00:00:00+02:00": 79 - }, - "distance-alert": { - "2024-11-01T00:00:00+02:00": 62 - }, - "price-alert": { - "2024-11-01T00:00:00+02:00": 262 - }, - "Email verified/Welcome": { - "2024-11-01T00:00:00+02:00": 68 - } - } - }, - "668708d194330132afefdfcc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6980 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6980 - }, - "conversation-notification-real-time": { - "2024-11-01T00:00:00+02:00": 6023 - }, - "digest-notification": { - "2024-11-01T00:00:00+02:00": 957 - } - } - }, - "63a3be9fe0b58885ea9a25b0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 322 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 322 - }, - "Form additional timekeeping": { - "2024-11-01T00:00:00+02:00": 31 - }, - "OTP_LOGIN": { - "2024-11-01T00:00:00+02:00": 97 - }, - "Form remote, unpaidleave, paidLeave": { - "2024-11-01T00:00:00+02:00": 194 - } - } - }, - "62b8aeda9bbe840018528c47": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1236 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1236 - }, - "Activity Need PEP": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Activity Baseline Create": { - "2024-11-01T00:00:00+02:00": 61 - }, - "Activity Update": { - "2024-11-01T00:00:00+02:00": 360 - }, - "New User": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Activity Baseline Update": { - "2024-11-01T00:00:00+02:00": 765 - }, - "Activity Create": { - "2024-11-01T00:00:00+02:00": 33 - } - } - }, - "65eb2863bd6a1b3de8913c21": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2401 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2401 - }, - "User Invited (Local and External)": { - "2024-11-01T00:00:00+02:00": 13 - }, - "The Community - Global In-app": { - "2024-11-01T00:00:00+02:00": 952 - }, - "The Community - Global Email": { - "2024-11-01T00:00:00+02:00": 1431 - } - } - }, - "62fe5f8f227ab843d4272a38": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2193 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2193 - }, - "Enrolled course member to DS Virgil": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Mentor session event batch rescheduled": { - "2024-11-01T00:00:00+02:00": 114 - }, - "Mentor session created to learner": { - "2024-11-01T00:00:00+02:00": 31 - }, - "msbr-expired-to-lx": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Mentor session created to mentor": { - "2024-11-01T00:00:00+02:00": 31 - }, - "mentor-session-created-to-lx": { - "2024-11-01T00:00:00+02:00": 123 - }, - "Mentor Session canceled": { - "2024-11-01T00:00:00+02:00": 44 - }, - "User account activation": { - "2024-11-01T00:00:00+02:00": 30 - }, - "Expired The Mentor Session Event Reschedule Request": { - "2024-11-01T00:00:00+02:00": 22 - }, - "Mentor Session Booking Request Accepted": { - "2024-11-01T00:00:00+02:00": 85 - }, - "Accepted reschedule request of the mentor session event": { - "2024-11-01T00:00:00+02:00": 370 - }, - "Mentor Session Booking Request created": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Created reschedule request of the mentor session event": { - "2024-11-01T00:00:00+02:00": 211 - }, - "MSBR expired": { - "2024-11-01T00:00:00+02:00": 22 - }, - "mentor-session-event-canceled": { - "2024-11-01T00:00:00+02:00": 82 - }, - "Reschedule cancelled event 2nd reminder": { - "2024-11-01T00:00:00+02:00": 114 - }, - "mentor-session-event-rescheduled": { - "2024-11-01T00:00:00+02:00": 610 - }, - "User email verification": { - "2024-11-01T00:00:00+02:00": 47 - }, - "Reschedule cancelled event 1st reminder": { - "2024-11-01T00:00:00+02:00": 176 - } - } - }, - "6687b6fe3069ddef14178411": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45390 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45390 - }, - "gbcdelay": { - "2024-11-01T00:00:00+02:00": 8610 - }, - "gbc": { - "2024-11-01T00:00:00+02:00": 36780 - } - } - }, - "64c03a19bab542bccfebc4c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14738 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14738 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 22 - }, - "Daily Shop Batch Notification": { - "2024-11-01T00:00:00+02:00": 66 - }, - "Locations CSV (RBG)": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Password Setup New User": { - "2024-11-01T00:00:00+02:00": 36 - }, - "Shop Notification Daily": { - "2024-11-01T00:00:00+02:00": 14594 - } - } - }, - "63d548c1a9b6cc61d4c3beb3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9553 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9553 - }, - "Work Ended": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Work Cancelled": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Work Started": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Reminder Email": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Low Food": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Start Work Soon": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Expensive Skill": { - "2024-11-01T00:00:00+02:00": 4337 - }, - "Start Work Reminder": { - "2024-11-01T00:00:00+02:00": 34 - }, - "Actions": { - "2024-11-01T00:00:00+02:00": 897 - }, - "Duel Invited": { - "2024-11-01T00:00:00+02:00": 4140 - } - } - }, - "648079c03a4ec8a5999d3eb1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 580 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 580 - }, - "New Record Notification": { - "2024-11-01T00:00:00+02:00": 580 - } - } - }, - "64197347da8256b93fd7bbb8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 619 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 619 - }, - "Return completed": { - "2024-11-01T00:00:00+02:00": 243 - }, - "Account Activation": { - "2024-11-01T00:00:00+02:00": 115 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Return station full": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Return station emptied": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Borrow started": { - "2024-11-01T00:00:00+02:00": 229 - } - } - }, - "63c8f9dd69a571f23a1f87d0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 195 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 195 - }, - "Paper Trade Placed": { - "2024-11-01T00:00:00+02:00": 186 - }, - "Strategy Shutdown": { - "2024-11-01T00:00:00+02:00": 8 - } - } - }, - "6554c9199139d6b01f88625d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 535 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 535 - }, - "Offer Update Created": { - "2024-11-01T00:00:00+02:00": 190 - }, - "Order Placed": { - "2024-11-01T00:00:00+02:00": 57 - }, - "Order Canceled": { - "2024-11-01T00:00:00+02:00": 8 - }, - "User verified": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Channel Message Created": { - "2024-11-01T00:00:00+02:00": 134 - }, - "Order Placed - Admin": { - "2024-11-01T00:00:00+02:00": 57 - }, - "Order Shipment Created": { - "2024-11-01T00:00:00+02:00": 42 - }, - "Customer Password Reset": { - "2024-11-01T00:00:00+02:00": 37 - } - } - }, - "651fa9f835fbd6284965127c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12216 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12216 - }, - "New report": { - "2024-11-01T00:00:00+02:00": 11246 - }, - "Resolved Vulnerability": { - "2024-11-01T00:00:00+02:00": 52 - }, - "New Vulnerability": { - "2024-11-01T00:00:00+02:00": 918 - } - } - }, - "654eb4b8d71fd8620c6d174e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28378 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28378 - }, - "Outbound Order Appt Booked": { - "2024-11-01T00:00:00+02:00": 1053 - }, - "Transport Order Delivered": { - "2024-11-01T00:00:00+02:00": 1223 - }, - "Outbound Order Created": { - "2024-11-01T00:00:00+02:00": 6465 - }, - "Transport Order Out For Delivery": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Special Order Out For Delivery": { - "2024-11-01T00:00:00+02:00": 691 - }, - "Transport Order At Warehouse": { - "2024-11-01T00:00:00+02:00": 1079 - }, - "Inbound Order Appt Booked": { - "2024-11-01T00:00:00+02:00": 102 - }, - "Outbound Order EDI Error": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Transport Order Scheduled": { - "2024-11-01T00:00:00+02:00": 512 - }, - "Inbound Order Appt Late": { - "2024-11-01T00:00:00+02:00": 455 - }, - "Special Order Delivered": { - "2024-11-01T00:00:00+02:00": 1203 - }, - "Outbound Order Ship Qty Discrepancy": { - "2024-11-01T00:00:00+02:00": 171 - }, - "Outbound Order Appt Late": { - "2024-11-01T00:00:00+02:00": 1095 - }, - "Special Order Created": { - "2024-11-01T00:00:00+02:00": 3351 - }, - "Transport Order Canceled": { - "2024-11-01T00:00:00+02:00": 47 - }, - "Outbound Order Staged": { - "2024-11-01T00:00:00+02:00": 4762 - }, - "Special Order At Warehouse": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Inbound Order Created": { - "2024-11-01T00:00:00+02:00": 2474 - }, - "Outbound Order Ship Date Passed": { - "2024-11-01T00:00:00+02:00": 3661 - } - } - }, - "64ee088296eacf2243b8b25b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3656 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3656 - }, - "Task Assigned": { - "2024-11-01T00:00:00+02:00": 561 - }, - "Ticket Deleted": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Task Assigned To Be Claimed": { - "2024-11-01T00:00:00+02:00": 30 - }, - "Message Notification": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Due Date Reminder": { - "2024-11-01T00:00:00+02:00": 1681 - }, - "Task Claimed": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Core Field Changed": { - "2024-11-01T00:00:00+02:00": 159 - }, - "Daily Summary": { - "2024-11-01T00:00:00+02:00": 653 - }, - "Task Pending": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Comment Added": { - "2024-11-01T00:00:00+02:00": 473 - }, - "Ticket Created": { - "2024-11-01T00:00:00+02:00": 35 - } - } - }, - "66621bc53a586fac83886829": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13969 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13969 - }, - "Alertas Incidentes Críticos": { - "2024-11-01T00:00:00+02:00": 13969 - } - } - }, - "64480a48771e7bed3dc3600e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6503 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6503 - }, - "Default - Censeo Referral": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Invitation to complete Censeo assessment": { - "2024-11-01T00:00:00+02:00": 6415 - }, - "send-report-email": { - "2024-11-01T00:00:00+02:00": 75 - } - } - }, - "659b604dbfebd8d8d51299ca": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3481 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3481 - }, - "pushnotificationdev": { - "2024-11-01T00:00:00+02:00": 560 - }, - "pushnotificationprod": { - "2024-11-01T00:00:00+02:00": 2673 - }, - "pushnotificationstaging": { - "2024-11-01T00:00:00+02:00": 235 - }, - "Data auto-synced to UploadTask": { - "2024-11-01T00:00:00+02:00": 13 - } - } - }, - "653ba5e0583a1ec8f82b3589": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1774 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1774 - }, - "New email": { - "2024-11-01T00:00:00+02:00": 25 - }, - "New message": { - "2024-11-01T00:00:00+02:00": 1424 - }, - "Missed call": { - "2024-11-01T00:00:00+02:00": 94 - }, - "Candidate comment mention": { - "2024-11-01T00:00:00+02:00": 231 - } - } - }, - "63ed36d0f38aed64140c6720": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "Pago aprobado": { - "2024-11-01T00:00:00+02:00": 27 - }, - "Estudiante inscripto": { - "2024-11-01T00:00:00+02:00": 407 - }, - "Suscripción abandonada": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Procesando pago": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Bienvenida": { - "2024-11-01T00:00:00+02:00": 172 - }, - "Certificado emitido": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Recuperación de contraseña (Código)": { - "2024-11-01T00:00:00+02:00": 102 - }, - "Entrega corregida": { - "2024-11-01T00:00:00+02:00": 119 - } - } - }, - "63cf21de42cfbce360219228": { - "$overall": { - "2024-11-01T00:00:00+02:00": 754 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 754 - }, - "Message notification": { - "2024-11-01T00:00:00+02:00": 685 - }, - "Order notification": { - "2024-11-01T00:00:00+02:00": 69 - } - } - }, - "64c78706e994a8dc20cdb2e1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 226 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 226 - }, - "Account Verification": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Reset Password": { - "2024-11-01T00:00:00+02:00": 201 - } - } - }, - "65af718b8e557ef0af46f7c0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3223 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3223 - }, - "Order Create": { - "2024-11-01T00:00:00+02:00": 2014 - }, - "Approval Request Status": { - "2024-11-01T00:00:00+02:00": 17 - }, - "Order Packed": { - "2024-11-01T00:00:00+02:00": 35 - }, - "account": { - "2024-11-01T00:00:00+02:00": 144 - }, - "Notify Merchant With Request Create": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Order Placed": { - "2024-11-01T00:00:00+02:00": 165 - }, - "Set Password": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Return Order status Update": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Order Update": { - "2024-11-01T00:00:00+02:00": 49 - }, - "Return Order": { - "2024-11-01T00:00:00+02:00": 62 - }, - "payment": { - "2024-11-01T00:00:00+02:00": 124 - }, - "Order Canceled": { - "2024-11-01T00:00:00+02:00": 200 - }, - "Request Create": { - "2024-11-01T00:00:00+02:00": 346 - } - } - }, - "667b514853d09da0827f2c20": { - "$overall": { - "2024-11-01T00:00:00+02:00": 658 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 658 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 16 - }, - "account-verification-code-sms": { - "2024-11-01T00:00:00+02:00": 162 - }, - "account-verification-code": { - "2024-11-01T00:00:00+02:00": 480 - } - } - }, - "671bcf830ab03d9467221e9b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 714 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 714 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 27 - }, - "in-app-notification": { - "2024-11-01T00:00:00+02:00": 566 - }, - "new-comment-workflow": { - "2024-11-01T00:00:00+02:00": 121 - } - } - }, - "634d5b1a27d50dea0bbfa3bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14947 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14947 - }, - "File added to ticket": { - "2024-11-01T00:00:00+02:00": 848 - }, - "Ticket assigned changed": { - "2024-11-01T00:00:00+02:00": 1313 - }, - "Ticket state changed": { - "2024-11-01T00:00:00+02:00": 3281 - }, - "Ticket commenté": { - "2024-11-01T00:00:00+02:00": 9505 - } - } - }, - "644c1877631887e5f006a54f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1252 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1252 - }, - "Bergsify - MAS": { - "2024-11-01T00:00:00+02:00": 1252 - } - } - }, - "65537ecc00c55a508c06f6ce": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5425 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5425 - }, - "New order notification": { - "2024-11-01T00:00:00+02:00": 5425 - } - } - }, - "644a988e631887e5f000dae6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7340 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7340 - }, - "failed-outreach": { - "2024-11-01T00:00:00+02:00": 5787 - }, - "Product Created": { - "2024-11-01T00:00:00+02:00": 1553 - } - } - }, - "63cfe876ab8d9270851c178d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1928 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1928 - }, - "Application CV": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Application Confirmation": { - "2024-11-01T00:00:00+02:00": 126 - }, - "Liked company opportunity or event notification": { - "2024-11-01T00:00:00+02:00": 1744 - }, - "applicationDigest": { - "2024-11-01T00:00:00+02:00": 27 - }, - "CVExport": { - "2024-11-01T00:00:00+02:00": 20 - } - } - }, - "647817a98b0b51ed174db1a8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20511 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20511 - }, - "ambassador-app-notifications": { - "2024-11-01T00:00:00+02:00": 227 - }, - "angel-app-notifications": { - "2024-11-01T00:00:00+02:00": 3985 - }, - "angel-app-notifications-inapp": { - "2024-11-01T00:00:00+02:00": 16299 - } - } - }, - "62fa8155227ab843d407b3f5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10287 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10287 - }, - "Ticket Due": { - "2024-11-01T00:00:00+02:00": 1565 - }, - "Finished Export": { - "2024-11-01T00:00:00+02:00": 898 - }, - "Atualizações em um Ticket": { - "2024-11-01T00:00:00+02:00": 3735 - }, - "Nova menção em um ticket": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Summary Email": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Finished Import": { - "2024-11-01T00:00:00+02:00": 499 - }, - "Novo Ticket Atribuído": { - "2024-11-01T00:00:00+02:00": 3555 - } - } - }, - "66032532f43359bff28c011f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 585438 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 585438 - }, - "noteReminder": { - "2024-11-01T00:00:00+02:00": 177 - }, - "basepricenudge": { - "2024-11-01T00:00:00+02:00": 102891 - }, - "minpricenudge": { - "2024-11-01T00:00:00+02:00": 418997 - }, - "inqdequateminbaseprice": { - "2024-11-01T00:00:00+02:00": 4921 - }, - "AIRBNB CONNECTION": { - "2024-11-01T00:00:00+02:00": 76 - }, - "onetimenotification": { - "2024-11-01T00:00:00+02:00": 8 - }, - "NON HLP SMALL USERS LESS THAN 10 LISTINGS": { - "2024-11-01T00:00:00+02:00": 58368 - } - } - }, - "63ad63d5a3d6d6f6e46334a0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5487 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5487 - }, - "Calendar failed to refresh": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Meeting analysis": { - "2024-11-01T00:00:00+02:00": 4336 - }, - "Meeting analysis team - Slack": { - "2024-11-01T00:00:00+02:00": 1136 - } - } - }, - "65f086bfeb4977909f034ec2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1098 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1098 - }, - "Candidate Submission Status -> Offer": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Multiple Candidate Submission": { - "2024-11-01T00:00:00+02:00": 22 - }, - "Candidate Viewed": { - "2024-11-01T00:00:00+02:00": 591 - }, - "Candidate Submission Status -> Interview": { - "2024-11-01T00:00:00+02:00": 159 - }, - "Candidate Submission": { - "2024-11-01T00:00:00+02:00": 250 - }, - "Candidate Submission Status -> Rejected": { - "2024-11-01T00:00:00+02:00": 42 - }, - "Create Note": { - "2024-11-01T00:00:00+02:00": 10 - } - } - }, - "63b3f614749085d8f285703a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15351 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15351 - }, - "Activity Comment Reply": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Activity Comment": { - "2024-11-01T00:00:00+02:00": 66 - }, - "Activity Reaction": { - "2024-11-01T00:00:00+02:00": 769 - }, - "Activity Created On Behalf Of": { - "2024-11-01T00:00:00+02:00": 234 - }, - "Referral Signup": { - "2024-11-01T00:00:00+02:00": 58 - }, - "Connection Accepted": { - "2024-11-01T00:00:00+02:00": 240 - }, - "Activity Created By Player": { - "2024-11-01T00:00:00+02:00": 13684 - }, - "Connection Request": { - "2024-11-01T00:00:00+02:00": 291 - } - } - }, - "6635236c843a6a8496d4d38e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 328 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 328 - }, - "Reconciliation out of balance": { - "2024-11-01T00:00:00+02:00": 48 - }, - "Status Change": { - "2024-11-01T00:00:00+02:00": 280 - } - } - }, - "63a32b86bee1d5aed72d7f15": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7852 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7852 - }, - "Reminders": { - "2024-11-01T00:00:00+02:00": 5354 - }, - "Job sendouts": { - "2024-11-01T00:00:00+02:00": 2498 - } - } - }, - "655cccfb8c7cd7ff32031773": { - "$overall": { - "2024-11-01T00:00:00+02:00": 110 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 110 - }, - "AccesLog Notification": { - "2024-11-01T00:00:00+02:00": 108 - } - } - }, - "6502ec79f39b9230da7cc89f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4019 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4019 - }, - "Entity onboarding reminder": { - "2024-11-01T00:00:00+02:00": 42 - }, - "Platform user invitation": { - "2024-11-01T00:00:00+02:00": 49 - }, - "Doc Processing - Complete": { - "2024-11-01T00:00:00+02:00": 228 - }, - "Entity access invitation": { - "2024-11-01T00:00:00+02:00": 3116 - }, - "Onboarding completed": { - "2024-11-01T00:00:00+02:00": 60 - }, - "Business field updated": { - "2024-11-01T00:00:00+02:00": 363 - }, - "Team Support Request": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Bundle verification reminder": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Business entity requested": { - "2024-11-01T00:00:00+02:00": 86 - }, - "Doc Processing - Failed": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Platform invite reminder": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Publish roadmap": { - "2024-11-01T00:00:00+02:00": 12 - } - } - }, - "66362cc66c5885a3257940bb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2474 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2474 - }, - "Booking Notifications": { - "2024-11-01T00:00:00+02:00": 2458 - }, - "New Registration": { - "2024-11-01T00:00:00+02:00": 8 - } - } - }, - "663d16aa34ea4ddc9b9f2f3d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 887 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 887 - }, - "ChatGPT Deactivation Notification": { - "2024-11-01T00:00:00+02:00": 56 - }, - "Run Daily Checklist Update Task": { - "2024-11-01T00:00:00+02:00": 39 - }, - "Benvida Workorder Week Batch": { - "2024-11-01T00:00:00+02:00": 94 - }, - "Propertybook Checklist Update": { - "2024-11-01T00:00:00+02:00": 24 - }, - "benvida checklist weekly batch": { - "2024-11-01T00:00:00+02:00": 19 - }, - "PropertyBook Assigned Workorder Notification": { - "2024-11-01T00:00:00+02:00": 380 - }, - "Send Altitude Link": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Propertybook Workorder Update Notification": { - "2024-11-01T00:00:00+02:00": 218 - }, - "ChatGPT License Deactivation Complete": { - "2024-11-01T00:00:00+02:00": 47 - } - } - }, - "65f440088edf3eee31cf371b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1160 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1160 - }, - "Pagamentos": { - "2024-11-01T00:00:00+02:00": 1160 - } - } - }, - "64e46fc009b229a7c5c1735c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34359 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34359 - }, - "Simple_Email": { - "2024-11-01T00:00:00+02:00": 18915 - }, - "Simple_In_App": { - "2024-11-01T00:00:00+02:00": 15444 - } - } - }, - "6335791aee1316a5c89b6d93": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10447 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10447 - }, - "Offer/Order: Generic Message": { - "2024-11-01T00:00:00+02:00": 2426 - }, - "new_task": { - "2024-11-01T00:00:00+02:00": 137 - }, - "Tasks: Generic Message": { - "2024-11-01T00:00:00+02:00": 22 - }, - "Subcontractor Assignment Generic Message": { - "2024-11-01T00:00:00+02:00": 7054 - }, - "Subcontractor Assignment Decision": { - "2024-11-01T00:00:00+02:00": 570 - }, - "offer_accepted": { - "2024-11-01T00:00:00+02:00": 238 - } - } - }, - "64d37f84045bf0282da7b498": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4098 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4098 - }, - "Webinar: Created Mentor": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Webinar: Daily Analytics for Mentor": { - "2024-11-01T00:00:00+02:00": 108 - }, - "Auth: User Verification": { - "2024-11-01T00:00:00+02:00": 2982 - }, - "One-Off Meeting: Payment link Mentee": { - "2024-11-01T00:00:00+02:00": 641 - }, - "Notifications: upvote": { - "2024-11-01T00:00:00+02:00": 8 - }, - "One off meeting cancelled": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Package Bought Mentee": { - "2024-11-01T00:00:00+02:00": 159 - }, - "Package Bought Mentor": { - "2024-11-01T00:00:00+02:00": 160 - } - } - }, - "656dbe9f27f644ad0ecba9ae": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1066 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1066 - }, - "qlan-push": { - "2024-11-01T00:00:00+02:00": 1066 - } - } - }, - "6580bfe12c7e267bc3af8dc2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8496 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8496 - }, - "Offer Accepted": { - "2024-11-01T00:00:00+02:00": 123 - }, - "New Higher Bid": { - "2024-11-01T00:00:00+02:00": 81 - }, - "New offer received": { - "2024-11-01T00:00:00+02:00": 2429 - }, - "KYC Ok": { - "2024-11-01T00:00:00+02:00": 26 - }, - "Bid Expired": { - "2024-11-01T00:00:00+02:00": 53 - }, - "Monthly Fee Payed": { - "2024-11-01T00:00:00+02:00": 239 - }, - "KYC Error": { - "2024-11-01T00:00:00+02:00": 38 - }, - "New Lower Ask": { - "2024-11-01T00:00:00+02:00": 4751 - }, - "New Offer On Watched Item": { - "2024-11-01T00:00:00+02:00": 572 - }, - "Ask Matched": { - "2024-11-01T00:00:00+02:00": 123 - }, - "Ask Expired": { - "2024-11-01T00:00:00+02:00": 60 - } - } - }, - "666c096bb3464b7775094768": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21 - }, - "task-updates": { - "2024-11-01T00:00:00+02:00": 10 - }, - "initiative-updates": { - "2024-11-01T00:00:00+02:00": 9 - } - } - }, - "656f1ea74663d4c5f711bce4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 337 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 337 - }, - "Lunar Cyber Notifications": { - "2024-11-01T00:00:00+02:00": 331 - } - } - }, - "66b997fe9c11077f0257d94e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 461 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 461 - }, - "inbox": { - "2024-11-01T00:00:00+02:00": 200 - }, - "general": { - "2024-11-01T00:00:00+02:00": 260 - } - } - }, - "646d9f170b49196df3ab5f80": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17397 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17397 - }, - "Device_Offline_Alerts": { - "2024-11-01T00:00:00+02:00": 12471 - }, - "Leakage_Voltage_Alert": { - "2024-11-01T00:00:00+02:00": 4926 - } - } - }, - "66b3c633abc563f5ee1c4ffa": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5990 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5990 - }, - "notifyInMobile": { - "2024-11-01T00:00:00+02:00": 3290 - }, - "notifyInApp": { - "2024-11-01T00:00:00+02:00": 2686 - }, - "notifyOnEmail": { - "2024-11-01T00:00:00+02:00": 12 - } - } - }, - "638241fa15685362a30e0365": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "assignor-erp-integration-failure": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Notify ccb operation status": { - "2024-11-01T00:00:00+02:00": 200 - }, - "operational-pending-issues": { - "2024-11-01T00:00:00+02:00": 159 - }, - "assignor-erp-integration-success": { - "2024-11-01T00:00:00+02:00": 112 - } - } - }, - "6605a26d8b3193b7f042cff3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 158 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 158 - }, - "[GFI Research] Kích hoạt tài khoản của bạn": { - "2024-11-01T00:00:00+02:00": 29 - }, - "[GFI Research] Thay đổi mật khẩu thành công": { - "2024-11-01T00:00:00+02:00": 6 - }, - "[NEDX] Verify Account Activation": { - "2024-11-01T00:00:00+02:00": 17 - }, - "[GFI Research] Xác minh đăng nhập": { - "2024-11-01T00:00:00+02:00": 49 - }, - "[GFI Research] Xác minh thay đổi Email": { - "2024-11-01T00:00:00+02:00": 12 - }, - "[GFI Research] Thông báo bài viết mới": { - "2024-11-01T00:00:00+02:00": 28 - } - } - }, - "66ea0719cf609b1343a50a19": { - "$overall": { - "2024-11-01T00:00:00+02:00": 552 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 552 - }, - "new_enquiry_message": { - "2024-11-01T00:00:00+02:00": 11 - }, - "awaiting_sign_offs": { - "2024-11-01T00:00:00+02:00": 19 - }, - "new_tenancy_request_property_manager_variant": { - "2024-11-01T00:00:00+02:00": 12 - }, - "send_request_to_supplier": { - "2024-11-01T00:00:00+02:00": 6 - }, - "account_summary": { - "2024-11-01T00:00:00+02:00": 78 - }, - "payment_remittance": { - "2024-11-01T00:00:00+02:00": 6 - }, - "rental_application_unsuccessful": { - "2024-11-01T00:00:00+02:00": 36 - }, - "time_confirmed": { - "2024-11-01T00:00:00+02:00": 30 - }, - "private_viewing_reminder": { - "2024-11-01T00:00:00+02:00": 149 - }, - "rental_application_accepted": { - "2024-11-01T00:00:00+02:00": 9 - }, - "rental_application_shortlisted": { - "2024-11-01T00:00:00+02:00": 17 - }, - "open_home_reminder": { - "2024-11-01T00:00:00+02:00": 150 - } - } - }, - "63bb02b5063f6d94cdf18ac9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5265 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5265 - }, - "Community Notifications": { - "2024-11-01T00:00:00+02:00": 16 - }, - "resetPassword": { - "2024-11-01T00:00:00+02:00": 12 - }, - "PM Status Change": { - "2024-11-01T00:00:00+02:00": 1852 - }, - "welcome": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Basic Certification Reminder": { - "2024-11-01T00:00:00+02:00": 954 - }, - "Admin Reseting Password": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Project Assignment": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Cert Expire Digest": { - "2024-11-01T00:00:00+02:00": 24 - }, - "On Site Time Completion": { - "2024-11-01T00:00:00+02:00": 1174 - }, - "visitSummary": { - "2024-11-01T00:00:00+02:00": 416 - }, - "Visit Assigned Bulk Mail": { - "2024-11-01T00:00:00+02:00": 150 - }, - "certification_expire": { - "2024-11-01T00:00:00+02:00": 617 - } - } - }, - "646e25734c1d7d4ec22acfa5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5408 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5408 - }, - "survey-started-to-recipient": { - "2024-11-01T00:00:00+02:00": 19 - }, - "campaign-task-rejected": { - "2024-11-01T00:00:00+02:00": 23 - }, - "campaign-task-summary-to-assignee": { - "2024-11-01T00:00:00+02:00": 2665 - }, - "campaign-task-assigned-to-assignee": { - "2024-11-01T00:00:00+02:00": 1120 - }, - "campaign-task-validation-summary-to-validator": { - "2024-11-01T00:00:00+02:00": 161 - }, - "invite-to-existing-user": { - "2024-11-01T00:00:00+02:00": 157 - }, - "campaign-task-comment-added": { - "2024-11-01T00:00:00+02:00": 14 - }, - "survey-reminder-to-recipient": { - "2024-11-01T00:00:00+02:00": 65 - }, - "campaign-ended-to-creator": { - "2024-11-01T00:00:00+02:00": 32 - }, - "campaign-launched-to-creator": { - "2024-11-01T00:00:00+02:00": 39 - }, - "invite-with-pass-to-new-user": { - "2024-11-01T00:00:00+02:00": 140 - }, - "invite-with-sso-to-new-user": { - "2024-11-01T00:00:00+02:00": 33 - }, - "campaign-summary-to-creator": { - "2024-11-01T00:00:00+02:00": 925 - }, - "reminder-with-pass-to-new-user": { - "2024-11-01T00:00:00+02:00": 11 - } - } - }, - "6481d805720b54f89e143404": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1376 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1376 - }, - "LQI-score-change": { - "2024-11-01T00:00:00+02:00": 1376 - } - } - }, - "64dbea7b28a0b10b3b77239e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3653 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3653 - }, - "New Task Notification to All Admins": { - "2024-11-01T00:00:00+02:00": 1820 - }, - "Task Due": { - "2024-11-01T00:00:00+02:00": 1833 - } - } - }, - "6572fd669788e6811d7b4d64": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7726 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7726 - }, - "Selection Notify": { - "2024-11-01T00:00:00+02:00": 1238 - }, - "Review Received": { - "2024-11-01T00:00:00+02:00": 205 - }, - "Gallery Download": { - "2024-11-01T00:00:00+02:00": 5626 - }, - "Favorite Photo Comment": { - "2024-11-01T00:00:00+02:00": 657 - } - } - }, - "6516702d73891288fc1ca032": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14821 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14821 - }, - "Dati di Sintesi": { - "2024-11-01T00:00:00+02:00": 14821 - } - } - }, - "63f586fd589ed09e95f0010f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 549 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 549 - }, - "Notificaciones Sistema Abre.cloud": { - "2024-11-01T00:00:00+02:00": 549 - } - } - }, - "66cf1c1bcf609b134337b496": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7161 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7161 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1625 - }, - "notion-mention-notification": { - "2024-11-01T00:00:00+02:00": 1793 - }, - "notion-comment-notification": { - "2024-11-01T00:00:00+02:00": 1900 - }, - "notion-invite-notification": { - "2024-11-01T00:00:00+02:00": 1842 - } - } - }, - "6447d7ccf2e1143129042903": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5620 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5620 - }, - "payment-reminder": { - "2024-11-01T00:00:00+02:00": 258 - }, - "invite-agent": { - "2024-11-01T00:00:00+02:00": 6 - }, - "email-update-otp": { - "2024-11-01T00:00:00+02:00": 21 - }, - "sms-workflow": { - "2024-11-01T00:00:00+02:00": 1068 - }, - "invite-contact": { - "2024-11-01T00:00:00+02:00": 93 - }, - "iapp-push-notification": { - "2024-11-01T00:00:00+02:00": 2067 - }, - "payment-reminder-past": { - "2024-11-01T00:00:00+02:00": 252 - }, - "push-email-notification": { - "2024-11-01T00:00:00+02:00": 1843 - } - } - }, - "62a0b9433de29f001cb6626f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4217 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4217 - }, - "persistent HQ email + sms": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Post Peer Support - Alliance and CSAT": { - "2024-11-01T00:00:00+02:00": 36 - }, - "PS Session no show - reschedule confirmation & assist": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Overutilization Paperwork Needed": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Samples Request - Triggered via Awell": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Resupply EOY Push 2024 Communications": { - "2024-11-01T00:00:00+02:00": 565 - }, - "ABN (Advance Beneficiary Notice) Needed": { - "2024-11-01T00:00:00+02:00": 34 - }, - "hq-initial-email-betterconcierge": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Medical Records Approved": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Wound Care Evaluation Needed": { - "2024-11-01T00:00:00+02:00": 7 - }, - "1st Email (All except E-commerce Transaction)": { - "2024-11-01T00:00:00+02:00": 337 - }, - "Follow-up-HQ-initial": { - "2024-11-01T00:00:00+02:00": 647 - }, - "Verbal Confirmation Received": { - "2024-11-01T00:00:00+02:00": 19 - }, - "HQ initial email": { - "2024-11-01T00:00:00+02:00": 10 - }, - "initial HQ reminder sms": { - "2024-11-01T00:00:00+02:00": 689 - }, - "Day3 HQ reminder - email": { - "2024-11-01T00:00:00+02:00": 755 - }, - "NPS detractor-passive notification": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Home Health Discharge Verbal Confirmation Needed": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Post Peer Support Session feedback - reminder": { - "2024-11-01T00:00:00+02:00": 23 - }, - "Place 1st Order": { - "2024-11-01T00:00:00+02:00": 44 - }, - "Resupply V2 Reminder Email (-1 Days)": { - "2024-11-01T00:00:00+02:00": 47 - }, - "5th-day-HQ-reminder": { - "2024-11-01T00:00:00+02:00": 699 - }, - "Resupply Order Request Confirmation": { - "2024-11-01T00:00:00+02:00": 183 - } - } - }, - "63ecb58fd38e757796a68c1c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7242858 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7242858 - }, - "(FDF) Second payment reminder": { - "2024-11-01T00:00:00+02:00": 1091 - }, - "Achievement - Top Clicked Listing": { - "2024-11-01T00:00:00+02:00": 372 - }, - "(FDF) First payment reminder": { - "2024-11-01T00:00:00+02:00": 2612 - }, - "Achievement - Top Selling Broker": { - "2024-11-01T00:00:00+02:00": 52 - }, - "newlistings": { - "2024-11-01T00:00:00+02:00": 6829195 - }, - "myhomevaluationupdate": { - "2024-11-01T00:00:00+02:00": 168811 - }, - "bidding_started": { - "2024-11-01T00:00:00+02:00": 173865 - }, - "firsttimeforsale": { - "2024-11-01T00:00:00+02:00": 23801 - }, - "Magic Link": { - "2024-11-01T00:00:00+02:00": 43059 - } - } - }, - "66ab0c482a0b42870f2dadef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7163 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7163 - }, - "unlock-reward": { - "2024-11-01T00:00:00+02:00": 2066 - }, - "announcement-sms": { - "2024-11-01T00:00:00+02:00": 1950 - }, - "welcome-member": { - "2024-11-01T00:00:00+02:00": 2200 - }, - "reward-summary": { - "2024-11-01T00:00:00+02:00": 920 - }, - "reward-summary-sms": { - "2024-11-01T00:00:00+02:00": 26 - } - } - }, - "64aa3f5d5f8a9af8437ea498": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6158 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6158 - }, - "Invitation to Pikul Admin": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Verify moblie number by AIS": { - "2024-11-01T00:00:00+02:00": 501 - }, - "Upgrade tier": { - "2024-11-01T00:00:00+02:00": 314 - }, - "E-wallet top-up": { - "2024-11-01T00:00:00+02:00": 440 - }, - "Property admin change to pause selling": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Promotion is waiting for your approval AWC Admin": { - "2024-11-01T00:00:00+02:00": 622 - }, - "email-verification": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Invite users to register for e-wallet": { - "2024-11-01T00:00:00+02:00": 19 - }, - "successful-coupon-claim": { - "2024-11-01T00:00:00+02:00": 82 - }, - "Pikul point received": { - "2024-11-01T00:00:00+02:00": 55 - }, - "Welcome to Pikul": { - "2024-11-01T00:00:00+02:00": 311 - }, - "User gets a gift coupon (Giveaway coupon)": { - "2024-11-01T00:00:00+02:00": 92 - }, - "Verify Mobile Phone Number": { - "2024-11-01T00:00:00+02:00": 102 - }, - "Upcoming Coupon expiry": { - "2024-11-01T00:00:00+02:00": 2811 - }, - "Complete Profile": { - "2024-11-01T00:00:00+02:00": 307 - }, - "Reset Password OTP": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Sender friend is joining pikul": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Promotion rejected Property Admin": { - "2024-11-01T00:00:00+02:00": 125 - }, - "User gets a membership as a gift (B2B gift)": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Promotion approved to Property Admin": { - "2024-11-01T00:00:00+02:00": 172 - }, - "E-wallet registration": { - "2024-11-01T00:00:00+02:00": 10 - }, - "transfer-coupon-successful": { - "2024-11-01T00:00:00+02:00": 81 - } - } - }, - "64c7be962df653eabd0a53dd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 983 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 983 - }, - "Build Completed": { - "2024-11-01T00:00:00+02:00": 938 - }, - "Technical Debt Alert": { - "2024-11-01T00:00:00+02:00": 45 - } - } - }, - "66b13ca4238f8cf6c4a2478e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 538 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 538 - }, - "welcome-onboarding-2": { - "2024-11-01T00:00:00+02:00": 29 - }, - "Sdjaslkdjsalkdjsakljdaklsjdklsajdkljdklsjdklasjdklsajdklasjdkla": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Untitled": { - "2024-11-01T00:00:00+02:00": 135 - }, - "Daily Mentions": { - "2024-11-01T00:00:00+02:00": 314 - }, - "Weekly Comments": { - "2024-11-01T00:00:00+02:00": 8 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Preview Workflow": { - "2024-11-01T00:00:00+02:00": 21 - } - } - }, - "65718e1d37b5f612059c62ef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17763 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17763 - }, - "Phishing Report Closure": { - "2024-11-01T00:00:00+02:00": 157 - }, - "Phishing Report Receipt": { - "2024-11-01T00:00:00+02:00": 220 - }, - "Clarity Triage Comms": { - "2024-11-01T00:00:00+02:00": 17378 - }, - "Secret Expiry Report": { - "2024-11-01T00:00:00+02:00": 8 - } - } - }, - "65e0b87e3a2387ff89a82beb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 758 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 758 - }, - "Sign In": { - "2024-11-01T00:00:00+02:00": 501 - }, - "trigger-in-app": { - "2024-11-01T00:00:00+02:00": 257 - } - } - }, - "6408f2f0dd5f589fe2ca61b4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2364 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2364 - }, - "Fluxo notificacao novo Lead in App Gestor": { - "2024-11-01T00:00:00+02:00": 681 - }, - "Notifica médico - Assinatura auditoria concluída": { - "2024-11-01T00:00:00+02:00": 8 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Fluxo notifica 3 horas antes vencimento tarefa": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Email novo lead adicionado": { - "2024-11-01T00:00:00+02:00": 828 - }, - "A sua jornada começa agora": { - "2024-11-01T00:00:00+02:00": 9 - }, - "O2T8 Código de Acesso - Aurora": { - "2024-11-01T00:00:00+02:00": 460 - }, - "somente teste": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Notifica lista de leads importados": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Assinar Contrato - Aurora": { - "2024-11-01T00:00:00+02:00": 9 - }, - "O1T1 Cadastro de colaboradores - Aurora": { - "2024-11-01T00:00:00+02:00": 131 - }, - "O3T2 Enviar Documentação - Aurora": { - "2024-11-01T00:00:00+02:00": 96 - }, - "Teste Workflow 24h": { - "2024-11-01T00:00:00+02:00": 44 - }, - "Notificação proposta unique gerada": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Boas vindas - Criação de conta": { - "2024-11-01T00:00:00+02:00": 14 - }, - "CARUARU - Email de Boas Vindas": { - "2024-11-01T00:00:00+02:00": 9 - } - } - }, - "6593f529f58e905ecac5cf4b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22777 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22777 - }, - "Add Beneficiary": { - "2024-11-01T00:00:00+02:00": 131 - }, - "Outbound Notification": { - "2024-11-01T00:00:00+02:00": 4535 - }, - "Exchange Completed": { - "2024-11-01T00:00:00+02:00": 108 - }, - "Service Provider Reminder": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Welcome Email After KYC": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Bulk Payment Request": { - "2024-11-01T00:00:00+02:00": 506 - }, - "Bulk Payment Request Approval": { - "2024-11-01T00:00:00+02:00": 62 - }, - "Payment Rejected": { - "2024-11-01T00:00:00+02:00": 482 - }, - "Welcome Email": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Send Email Credentials": { - "2024-11-01T00:00:00+02:00": 170 - }, - "Daily Balance": { - "2024-11-01T00:00:00+02:00": 6672 - }, - "Payment Request": { - "2024-11-01T00:00:00+02:00": 1796 - }, - "Account Closure": { - "2024-11-01T00:00:00+02:00": 72 - }, - "Access Persona Granted": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Payment Request Status": { - "2024-11-01T00:00:00+02:00": 302 - }, - "Update Beneficiary": { - "2024-11-01T00:00:00+02:00": 40 - }, - "Daily Balance Summary": { - "2024-11-01T00:00:00+02:00": 2015 - }, - "Individual Profile Update": { - "2024-11-01T00:00:00+02:00": 7 - }, - "verification-code": { - "2024-11-01T00:00:00+02:00": 75 - }, - "Exchange Pending": { - "2024-11-01T00:00:00+02:00": 39 - }, - "Inbound Notification": { - "2024-11-01T00:00:00+02:00": 5694 - } - } - }, - "65f9e3b139829e6c76826cb5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 721482 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 721482 - }, - "Late Clock Out - Visitor": { - "2024-11-01T00:00:00+02:00": 1352 - }, - "Late Clock In - Office": { - "2024-11-01T00:00:00+02:00": 681659 - }, - "Visit starting": { - "2024-11-01T00:00:00+02:00": 22338 - }, - "Late Clock In - Visitor": { - "2024-11-01T00:00:00+02:00": 16132 - } - } - }, - "6540cb89c086274eec8fb0b1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22009 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22009 - }, - "Transaction": { - "2024-11-01T00:00:00+02:00": 5097 - }, - "Match": { - "2024-11-01T00:00:00+02:00": 29 - }, - "Transactions": { - "2024-11-01T00:00:00+02:00": 16512 - }, - "Invoice Paid": { - "2024-11-01T00:00:00+02:00": 37 - }, - "Invoice Overdue": { - "2024-11-01T00:00:00+02:00": 130 - }, - "Inbox Match": { - "2024-11-01T00:00:00+02:00": 204 - } - } - }, - "643e8d58b6a53d8ae70721c2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30991 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30991 - }, - "On-boarding notification": { - "2024-11-01T00:00:00+02:00": 30991 - } - } - }, - "6543a644e3126f05f0cad775": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2347 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2347 - }, - "Esign Invitation": { - "2024-11-01T00:00:00+02:00": 2318 - }, - "Notification": { - "2024-11-01T00:00:00+02:00": 29 - } - } - }, - "670d176b8b5274f547d231c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1174 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1174 - }, - "after-buy-weelet": { - "2024-11-01T00:00:00+02:00": 636 - }, - "dukaty-purchase": { - "2024-11-01T00:00:00+02:00": 54 - }, - "after-buy-products-workflow": { - "2024-11-01T00:00:00+02:00": 17 - }, - "sticker-send-info": { - "2024-11-01T00:00:00+02:00": 49 - }, - "after-choosing-npu-lottery": { - "2024-11-01T00:00:00+02:00": 18 - }, - "sticker-send-package-with-sticker-info": { - "2024-11-01T00:00:00+02:00": 8 - }, - "sticker-pickup": { - "2024-11-01T00:00:00+02:00": 359 - }, - "dukaty-topup-workflow": { - "2024-11-01T00:00:00+02:00": 33 - } - } - }, - "65d368c9a1dfc9ae299cbd1e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1988 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1988 - }, - "TAP clinical observations": { - "2024-11-01T00:00:00+02:00": 1864 - }, - "Accession Rollback": { - "2024-11-01T00:00:00+02:00": 72 - }, - "Priority order": { - "2024-11-01T00:00:00+02:00": 35 - }, - "QC Bleed Notification": { - "2024-11-01T00:00:00+02:00": 12 - } - } - }, - "6627ad47fe81f5c852ec1b6a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6562 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6562 - }, - "Community Post Comment Created": { - "2024-11-01T00:00:00+02:00": 121 - }, - "Community Updated": { - "2024-11-01T00:00:00+02:00": 25 - }, - "user_welcome": { - "2024-11-01T00:00:00+02:00": 63 - }, - "Kyc Success": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Community Post Reaction Created": { - "2024-11-01T00:00:00+02:00": 215 - }, - "Community Member Invited": { - "2024-11-01T00:00:00+02:00": 17 - }, - "First Receive": { - "2024-11-01T00:00:00+02:00": 43 - }, - "First Transfer": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Friend Signup": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Community Member Invite Accepted": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Topup Notification": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Toco Receive Notification": { - "2024-11-01T00:00:00+02:00": 400 - }, - "Community Post Created": { - "2024-11-01T00:00:00+02:00": 5597 - } - } - }, - "6600f0d38453b14f2ff41c7d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 597 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 597 - }, - "Transform Finished in App": { - "2024-11-01T00:00:00+02:00": 296 - }, - "Job Needs Attention": { - "2024-11-01T00:00:00+02:00": 300 - } - } - }, - "64e3554548249e7e76aeffc3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15165 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15165 - }, - "A new meeting has been scheduled": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Deleting Empty List": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Bulk Email Sender Re-Connect": { - "2024-11-01T00:00:00+02:00": 263 - }, - "Pending Email Approvals for 5 days": { - "2024-11-01T00:00:00+02:00": 187 - }, - "Bulk Email Sender Upload Complete": { - "2024-11-01T00:00:00+02:00": 39 - }, - "Email Sender has error": { - "2024-11-01T00:00:00+02:00": 1459 - }, - "Link in Email Clicked": { - "2024-11-01T00:00:00+02:00": 12179 - }, - "Scheduled Sequence all Emails Sent & Tasks Complete": { - "2024-11-01T00:00:00+02:00": 107 - }, - "Email List Verification is Complete": { - "2024-11-01T00:00:00+02:00": 33 - }, - "On-boarding notification": { - "2024-11-01T00:00:00+02:00": 373 - }, - "Scheduled Sequence is Started": { - "2024-11-01T00:00:00+02:00": 393 - }, - "Email Approvals Pending": { - "2024-11-01T00:00:00+02:00": 111 - } - } - }, - "66cbf5decf609b134349ac56": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1285 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1285 - }, - "BRAND_SPONSORSHIP_INCREASE": { - "2024-11-01T00:00:00+02:00": 463 - }, - "BRAND_SPEND_INCREASE": { - "2024-11-01T00:00:00+02:00": 467 - }, - "CATEGORY_SPONSORSHIP_TOTAL": { - "2024-11-01T00:00:00+02:00": 355 - } - } - }, - "65f2f98b79ffb10acbce98c2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1147 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1147 - }, - "airTempAlarm": { - "2024-11-01T00:00:00+02:00": 668 - }, - "addedTo": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Sign up": { - "2024-11-01T00:00:00+02:00": 16 - }, - "noDataAlarm": { - "2024-11-01T00:00:00+02:00": 130 - }, - "co2Alarm": { - "2024-11-01T00:00:00+02:00": 71 - }, - "Batch Report": { - "2024-11-01T00:00:00+02:00": 243 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 10 - } - } - }, - "6671df91f4a238f107fe9f56": { - "$overall": { - "2024-11-01T00:00:00+02:00": 719 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 719 - }, - "Document Requests": { - "2024-11-01T00:00:00+02:00": 104 - }, - "In-App Notifications": { - "2024-11-01T00:00:00+02:00": 376 - }, - "Authentication Magic Links": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Authentication - Combined (code + link)": { - "2024-11-01T00:00:00+02:00": 232 - } - } - }, - "63b86f5db775d8ef0ed8f08f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 31643 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 31643 - }, - "SUPO In-App notification": { - "2024-11-01T00:00:00+02:00": 31643 - } - } - }, - "6571c58bfd6a606fd6c8f3f0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 478 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 478 - }, - "Invite employee": { - "2024-11-01T00:00:00+02:00": 478 - } - } - }, - "669ba0033c94be87b123b8c5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 52671 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 52671 - }, - "trial-request": { - "2024-11-01T00:00:00+02:00": 22799 - }, - "paid-request": { - "2024-11-01T00:00:00+02:00": 29872 - } - } - }, - "66cde6ffcf609b13433bff6b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18302 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18302 - }, - "welcome-to-book": { - "2024-11-01T00:00:00+02:00": 912 - }, - "welcome-to-course": { - "2024-11-01T00:00:00+02:00": 3170 - }, - "general-announcement": { - "2024-11-01T00:00:00+02:00": 112 - }, - "course-announcement": { - "2024-11-01T00:00:00+02:00": 126 - }, - "welcome-to-plan": { - "2024-11-01T00:00:00+02:00": 118 - }, - "general-email-announcement": { - "2024-11-01T00:00:00+02:00": 13864 - } - } - }, - "66432c55c4df36a964927b2c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 77131 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 77131 - }, - "cp-mediashuttle-1883004-main-deliver-one": { - "2024-11-01T00:00:00+02:00": 8 - }, - "cp-jet-one-to-many-344001-nc2427-error": { - "2024-11-01T00:00:00+02:00": 1699 - }, - "cp-mediashuttle-344001-demo2024-deliver-one": { - "2024-11-01T00:00:00+02:00": 24 - }, - "cp-mediashuttle-344001-nc2427-deliver-weekly-freq1": { - "2024-11-01T00:00:00+02:00": 8 - }, - "cp-jet-344001-nc2427-error": { - "2024-11-01T00:00:00+02:00": 17 - }, - "cp-jet-344001-nc2427-deliver-daily-freq2": { - "2024-11-01T00:00:00+02:00": 8 - }, - "cp-mediashuttle-344001-euro2024-deliver-one": { - "2024-11-01T00:00:00+02:00": 22 - }, - "cp-jet-344001-nc2427-deliver-weekly-freq1": { - "2024-11-01T00:00:00+02:00": 8 - }, - "cp-mediashuttle-344001-nc2427-deliver-daily-freq1": { - "2024-11-01T00:00:00+02:00": 6 - }, - "cp-mediashuttle-344001-nc2427-deliver-one": { - "2024-11-01T00:00:00+02:00": 9593 - }, - "cp-mediashuttle-3099-default-deliver-one": { - "2024-11-01T00:00:00+02:00": 68 - }, - "cp-jet-344001-euro2024-deliver-one": { - "2024-11-01T00:00:00+02:00": 14 - }, - "delivery-ftp-3099-default-deliver-one": { - "2024-11-01T00:00:00+02:00": 114 - }, - "cp-jet-one-to-many-344001-nc2427-deliver-one": { - "2024-11-01T00:00:00+02:00": 64669 - }, - "cp-jet-344001-nc2427-deliver-one": { - "2024-11-01T00:00:00+02:00": 771 - }, - "delivery-s3-1883004-main-deliver-one": { - "2024-11-01T00:00:00+02:00": 76 - }, - "cp-jet-one-to-many-1883004-main-deliver-one": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "632cae5927d50dea0bf3898b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1184 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1184 - }, - "Add project participants": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Installment Renewal In Five Days": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Task Due Date Is Today": { - "2024-11-01T00:00:00+02:00": 229 - }, - "Responsible For Task To Follower": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Project starts today": { - "2024-11-01T00:00:00+02:00": 49 - }, - "Add Follower To Task": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Task Is Late": { - "2024-11-01T00:00:00+02:00": 592 - }, - "Project changed status": { - "2024-11-01T00:00:00+02:00": 53 - }, - "Project Due Date Is Today": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Task Start Date Is Today": { - "2024-11-01T00:00:00+02:00": 160 - }, - "Task Status Changed": { - "2024-11-01T00:00:00+02:00": 23 - } - } - }, - "651fca9cb03ff038cef1c54f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3820 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3820 - }, - "Triggered - Pipeline Not Running": { - "2024-11-01T00:00:00+02:00": 369 - }, - "Pipeline Actions": { - "2024-11-01T00:00:00+02:00": 310 - }, - "Triggered - High Lag": { - "2024-11-01T00:00:00+02:00": 77 - }, - "Triggered - Pipeline Latency greater than 10 minutes": { - "2024-11-01T00:00:00+02:00": 73 - }, - "Recovery - Data in 30 Minutes": { - "2024-11-01T00:00:00+02:00": 995 - }, - "Recovery - Pipeline Latency less than 10 minutes": { - "2024-11-01T00:00:00+02:00": 76 - }, - "Destination Actions": { - "2024-11-01T00:00:00+02:00": 226 - }, - "Recovery - Pipeline Is Running": { - "2024-11-01T00:00:00+02:00": 376 - }, - "Triggered - No Data in 30 Minutes": { - "2024-11-01T00:00:00+02:00": 995 - }, - "Source Actions": { - "2024-11-01T00:00:00+02:00": 247 - }, - "Recovery- High Lag": { - "2024-11-01T00:00:00+02:00": 76 - } - } - }, - "6361ae479e04bb11b51b9401": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4024 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4024 - }, - "send-pdf": { - "2024-11-01T00:00:00+02:00": 169 - }, - "Organisation admin to complete": { - "2024-11-01T00:00:00+02:00": 3072 - }, - "Referral update": { - "2024-11-01T00:00:00+02:00": 261 - }, - "Patient Reminder": { - "2024-11-01T00:00:00+02:00": 267 - }, - "Practitioner to complete stage": { - "2024-11-01T00:00:00+02:00": 87 - }, - "Patient Invite": { - "2024-11-01T00:00:00+02:00": 168 - } - } - }, - "66a5008b076eb7c94c1adb92": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "contracts-update": { - "2024-11-01T00:00:00+02:00": 36 - } - } - }, - "671bba5a0ab03d946718eb3b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 232 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 232 - }, - "today-callback-notification": { - "2024-11-01T00:00:00+02:00": 19 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6 - }, - "UPCOMING_CALLBACK_NOTIFICATION": { - "2024-11-01T00:00:00+02:00": 37 - }, - "TODAY_CALLBACK_NOTIFICATION": { - "2024-11-01T00:00:00+02:00": 63 - }, - "Announcement Notification": { - "2024-11-01T00:00:00+02:00": 65 - }, - "VERIFY_CALLBACK_NOTIFICATION": { - "2024-11-01T00:00:00+02:00": 15 - } - } - }, - "658c15eae2d5aed98bef8f80": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13703 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13703 - }, - "custom-daily-report-workflow-with-push-notification": { - "2024-11-01T00:00:00+02:00": 4243 - }, - "custom-daily-report-notification-response": { - "2024-11-01T00:00:00+02:00": 886 - }, - "Visio Analytics - Notificação de interesse": { - "2024-11-01T00:00:00+02:00": 3422 - }, - "Visio Daily Report - Notificação de liberação": { - "2024-11-01T00:00:00+02:00": 270 - }, - "Visio Analytics - Notificação de indicadores-chave": { - "2024-11-01T00:00:00+02:00": 4882 - } - } - }, - "66f19c98cf609b134304a0f6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1029 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1029 - }, - "comments-workflow": { - "2024-11-01T00:00:00+02:00": 549 - }, - "work-order-status-change": { - "2024-11-01T00:00:00+02:00": 429 - }, - "payroll-workflow": { - "2024-11-01T00:00:00+02:00": 51 - } - } - }, - "67475e932c32fe389fa51052": { - "$overall": { - "2024-11-01T00:00:00+02:00": 455 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 455 - }, - "in-app-only": { - "2024-11-01T00:00:00+02:00": 450 - } - } - }, - "672e25d0a1974766693e1703": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36 - }, - "task-assignment": { - "2024-11-01T00:00:00+02:00": 36 - } - } - }, - "670e0dc18b5274f5475e4b73": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5300 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5300 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8 - }, - "gbcdelay": { - "2024-11-01T00:00:00+02:00": 3615 - }, - "gbc": { - "2024-11-01T00:00:00+02:00": 1671 - } - } - }, - "6507114e90b85787fd58b6d2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23633 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23633 - }, - "import-shipment-deposited": { - "2024-11-01T00:00:00+02:00": 123 - }, - "import-shipment-commented": { - "2024-11-01T00:00:00+02:00": 4673 - }, - "import-shipment-attached": { - "2024-11-01T00:00:00+02:00": 13181 - }, - "import-shipment-received": { - "2024-11-01T00:00:00+02:00": 127 - }, - "import-shipment-deposit-required": { - "2024-11-01T00:00:00+02:00": 319 - }, - "account-invitation-token": { - "2024-11-01T00:00:00+02:00": 39 - }, - "import-shipment-arrived": { - "2024-11-01T00:00:00+02:00": 937 - }, - "import-shipment-shipped": { - "2024-11-01T00:00:00+02:00": 958 - }, - "import-shipment-waiting": { - "2024-11-01T00:00:00+02:00": 130 - }, - "phone-identification-otp": { - "2024-11-01T00:00:00+02:00": 1756 - }, - "wallet-transfer": { - "2024-11-01T00:00:00+02:00": 1390 - } - } - }, - "671faf6b285bc655d85f6e65": { - "$overall": { - "2024-11-01T00:00:00+02:00": 100 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 100 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 99 - } - } - }, - "674586592c32fe389f95879e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 208 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 208 - }, - "CampaignProductsStopped": { - "2024-11-01T00:00:00+02:00": 134 - }, - "CampaignKeywordsBelowMinBid": { - "2024-11-01T00:00:00+02:00": 11 - }, - "AdvertiserBalanceLow": { - "2024-11-01T00:00:00+02:00": 63 - } - } - }, - "64ecc8ef96eacf2243a91769": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10904 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10904 - }, - "Inbox reply hardcore": { - "2024-11-01T00:00:00+02:00": 1996 - }, - "Chatbot weekly knowledge base update": { - "2024-11-01T00:00:00+02:00": 76 - }, - "Video rejected": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Video in approval": { - "2024-11-01T00:00:00+02:00": 7757 - }, - "Video or caption failed to upload (unknown story)": { - "2024-11-01T00:00:00+02:00": 30 - }, - "Team invite": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Approve contact limits": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Send Postcard Preview": { - "2024-11-01T00:00:00+02:00": 27 - }, - "Inbox reply scheduled": { - "2024-11-01T00:00:00+02:00": 334 - }, - "Inbox access granted": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Task reminder": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Chatbot daily knowledge base update": { - "2024-11-01T00:00:00+02:00": 48 - }, - "Welcome admin": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Campaign Live": { - "2024-11-01T00:00:00+02:00": 304 - }, - "Download video": { - "2024-11-01T00:00:00+02:00": 31 - }, - "Task assignment": { - "2024-11-01T00:00:00+02:00": 215 - } - } - }, - "6400caeef591ea2e090f6040": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1738053 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1738053 - }, - "delivered for subscriber 165": { - "2024-11-01T00:00:00+02:00": 4616 - }, - "firstTimeNewPrescription for subscriber 263": { - "2024-11-01T00:00:00+02:00": 12 - }, - "orderReceipt for subscriber 275": { - "2024-11-01T00:00:00+02:00": 64 - }, - "orderReceipt for subscriber 523": { - "2024-11-01T00:00:00+02:00": 22 - }, - "prescriptionChanged for subscriber 255": { - "2024-11-01T00:00:00+02:00": 201 - }, - "paymentError for subscriber 143": { - "2024-11-01T00:00:00+02:00": 2111 - }, - "firstTimeNewPrescription for subscriber 161": { - "2024-11-01T00:00:00+02:00": 1201 - }, - "patientWelcome for subscriber 530": { - "2024-11-01T00:00:00+02:00": 185 - }, - "Delivered": { - "2024-11-01T00:00:00+02:00": 102 - }, - "orderReceipt for subscriber 530": { - "2024-11-01T00:00:00+02:00": 19 - }, - "firstTimeShippingConfirmation for subscriber 329": { - "2024-11-01T00:00:00+02:00": 67 - }, - "doctorMessage for subscriber 542": { - "2024-11-01T00:00:00+02:00": 266 - }, - "Patient Magic Link": { - "2024-11-01T00:00:00+02:00": 688 - }, - "firstTimeOrderConfirmation for subscriber 542": { - "2024-11-01T00:00:00+02:00": 42 - }, - "outForDelivery for subscriber 13": { - "2024-11-01T00:00:00+02:00": 6 - }, - "firstTimeNewPrescription for subscriber 364": { - "2024-11-01T00:00:00+02:00": 45 - }, - "orderCanceled for subscriber 329": { - "2024-11-01T00:00:00+02:00": 7 - }, - "treatmentActive for subscriber 63": { - "2024-11-01T00:00:00+02:00": 375 - }, - "New Prescription for subscriber 165": { - "2024-11-01T00:00:00+02:00": 2183 - }, - "supportMessage for subscriber 364": { - "2024-11-01T00:00:00+02:00": 100 - }, - "supportMessage for subscriber 465": { - "2024-11-01T00:00:00+02:00": 10 - }, - "firstTimeOrderConfirmation for subscriber 256": { - "2024-11-01T00:00:00+02:00": 131 - }, - "doctorMessage for subscriber 428": { - "2024-11-01T00:00:00+02:00": 16 - }, - "patientMagicLink for subscriber 77": { - "2024-11-01T00:00:00+02:00": 50 - }, - "Admin New Patient": { - "2024-11-01T00:00:00+02:00": 80733 - }, - "orderCanceled for subscriber 255": { - "2024-11-01T00:00:00+02:00": 40 - }, - "abandonedCheckout for subscriber 111": { - "2024-11-01T00:00:00+02:00": 20 - }, - "firstTimeNewPrescription for subscriber 441": { - "2024-11-01T00:00:00+02:00": 15 - }, - "outForDelivery for subscriber 165": { - "2024-11-01T00:00:00+02:00": 3713 - }, - "followUpDue for subscriber 84": { - "2024-11-01T00:00:00+02:00": 1186 - }, - "firstTimeShippingConfirmation for subscriber 217": { - "2024-11-01T00:00:00+02:00": 7 - }, - "delivered for subscriber 378": { - "2024-11-01T00:00:00+02:00": 34 - }, - "doctorMessage for subscriber 78": { - "2024-11-01T00:00:00+02:00": 11 - }, - "shippingConfirmation for subscriber 77": { - "2024-11-01T00:00:00+02:00": 330 - }, - "supportMessage for subscriber 523": { - "2024-11-01T00:00:00+02:00": 10 - }, - "firstTimeShippingConfirmation for subscriber 530": { - "2024-11-01T00:00:00+02:00": 22 - }, - "outForDelivery for subscriber 384": { - "2024-11-01T00:00:00+02:00": 12 - }, - "orderCanceled for subscriber 38": { - "2024-11-01T00:00:00+02:00": 41 - }, - "First Time Shipping Confirmation for subscriber 350": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Follow Up Due": { - "2024-11-01T00:00:00+02:00": 40 - }, - "passwordReset for subscriber 84": { - "2024-11-01T00:00:00+02:00": 182 - }, - "patientWelcome for subscriber 190": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Order Confirmation for subscriber 320": { - "2024-11-01T00:00:00+02:00": 18 - }, - "First Time New Prescription for subscriber 551": { - "2024-11-01T00:00:00+02:00": 8 - }, - "newPrescription for subscriber 256": { - "2024-11-01T00:00:00+02:00": 85 - }, - "orderConfirmation for subscriber 238": { - "2024-11-01T00:00:00+02:00": 13 - }, - "newRefill for subscriber 35": { - "2024-11-01T00:00:00+02:00": 9 - }, - "firstTimeOrderConfirmation for subscriber 614": { - "2024-11-01T00:00:00+02:00": 15 - }, - "doctorMessage for subscriber 9": { - "2024-11-01T00:00:00+02:00": 32 - }, - "firstTimeOrderConfirmation for subscriber 84": { - "2024-11-01T00:00:00+02:00": 651 - }, - "shippingConfirmation for subscriber 143": { - "2024-11-01T00:00:00+02:00": 21098 - }, - "orderReceipt for subscriber 111": { - "2024-11-01T00:00:00+02:00": 22 - }, - "patientMagicLink for subscriber 614": { - "2024-11-01T00:00:00+02:00": 14 - }, - "Shipping Update": { - "2024-11-01T00:00:00+02:00": 15259 - }, - "Admin Patient Payment Failed": { - "2024-11-01T00:00:00+02:00": 3148 - }, - "newPrescription for subscriber 84": { - "2024-11-01T00:00:00+02:00": 448 - }, - "abandonedCheckout for subscriber 384": { - "2024-11-01T00:00:00+02:00": 24 - }, - "patientMagicLink for subscriber 4": { - "2024-11-01T00:00:00+02:00": 620 - }, - "orderReceipt for subscriber 378": { - "2024-11-01T00:00:00+02:00": 45 - }, - "shippingUpdate for subscriber 428": { - "2024-11-01T00:00:00+02:00": 47 - }, - "newRefill for subscriber 406": { - "2024-11-01T00:00:00+02:00": 37 - }, - "Shipping Update for subscriber 350": { - "2024-11-01T00:00:00+02:00": 33 - }, - "firstTimeShippingConfirmation for subscriber 406": { - "2024-11-01T00:00:00+02:00": 76 - }, - "Admin Pharmacy Delay": { - "2024-11-01T00:00:00+02:00": 843 - }, - "supportMessage for subscriber 84": { - "2024-11-01T00:00:00+02:00": 809 - }, - "patientWelcome for subscriber 364": { - "2024-11-01T00:00:00+02:00": 364 - }, - "delivered for subscriber 238": { - "2024-11-01T00:00:00+02:00": 19 - }, - "firstTimeShippingConfirmation for subscriber 465": { - "2024-11-01T00:00:00+02:00": 11 - }, - "prescriptionChanged for subscriber 329": { - "2024-11-01T00:00:00+02:00": 42 - }, - "patientMagicLink for subscriber 549": { - "2024-11-01T00:00:00+02:00": 6 - }, - "newRefill for subscriber 274": { - "2024-11-01T00:00:00+02:00": 6 - }, - "passwordReset for subscriber 4": { - "2024-11-01T00:00:00+02:00": 532 - }, - "doctorMessage for subscriber 275": { - "2024-11-01T00:00:00+02:00": 147 - }, - "shippingUpdate for subscriber 604": { - "2024-11-01T00:00:00+02:00": 87 - }, - "orderCanceled for subscriber 406": { - "2024-11-01T00:00:00+02:00": 14 - }, - "shippingUpdate for subscriber 73": { - "2024-11-01T00:00:00+02:00": 132 - }, - "patientWelcome for subscriber 349": { - "2024-11-01T00:00:00+02:00": 147 - }, - "labReceived for subscriber 441": { - "2024-11-01T00:00:00+02:00": 11 - }, - "abandonedCheckout for subscriber 35": { - "2024-11-01T00:00:00+02:00": 6 - }, - "followUpPastDue for subscriber 542": { - "2024-11-01T00:00:00+02:00": 53 - }, - "delivered for subscriber 349": { - "2024-11-01T00:00:00+02:00": 34 - }, - "orderConfirmation for subscriber 150": { - "2024-11-01T00:00:00+02:00": 8 - }, - "shippingUpdate for subscriber 441": { - "2024-11-01T00:00:00+02:00": 468 - }, - "orderReceipt for subscriber 329": { - "2024-11-01T00:00:00+02:00": 43 - }, - "patientMagicLink for subscriber 9": { - "2024-11-01T00:00:00+02:00": 7 - }, - "abandonedCheckout for subscriber 77": { - "2024-11-01T00:00:00+02:00": 777 - }, - "Admin Payment Failed": { - "2024-11-01T00:00:00+02:00": 68 - }, - "newRefill for subscriber 84": { - "2024-11-01T00:00:00+02:00": 57 - }, - "followUpDue for subscriber 68": { - "2024-11-01T00:00:00+02:00": 24 - }, - "delivered for subscriber 143": { - "2024-11-01T00:00:00+02:00": 17788 - }, - "prescriptionChanged for subscriber 77": { - "2024-11-01T00:00:00+02:00": 225 - }, - "Abandoned Checkout": { - "2024-11-01T00:00:00+02:00": 97 - }, - "passwordReset for subscriber 77": { - "2024-11-01T00:00:00+02:00": 58 - }, - "paymentError for subscriber 441": { - "2024-11-01T00:00:00+02:00": 7 - }, - "newRefill for subscriber 4": { - "2024-11-01T00:00:00+02:00": 228 - }, - "firstTimeOrderConfirmation for subscriber 217": { - "2024-11-01T00:00:00+02:00": 8 - }, - "orderConfirmation for subscriber 111": { - "2024-11-01T00:00:00+02:00": 16 - }, - "followUpPastDue for subscriber 255": { - "2024-11-01T00:00:00+02:00": 285 - }, - "followUpPastDue for subscriber 161": { - "2024-11-01T00:00:00+02:00": 3843 - }, - "shippingUpdate for subscriber 200": { - "2024-11-01T00:00:00+02:00": 5892 - }, - "abandonedCheckout for subscriber 161": { - "2024-11-01T00:00:00+02:00": 9652 - }, - "firstTimeOrderConfirmation for subscriber 320": { - "2024-11-01T00:00:00+02:00": 20 - }, - "delivered for subscriber 77": { - "2024-11-01T00:00:00+02:00": 297 - }, - "delivered for subscriber 9": { - "2024-11-01T00:00:00+02:00": 20 - }, - "patientMagicLink for subscriber 530": { - "2024-11-01T00:00:00+02:00": 24 - }, - "newPrescription for subscriber 406": { - "2024-11-01T00:00:00+02:00": 11 - }, - "shippingUpdate for subscriber 266": { - "2024-11-01T00:00:00+02:00": 2318 - }, - "orderCanceled for subscriber 4": { - "2024-11-01T00:00:00+02:00": 248 - }, - "supportMessage for subscriber 165": { - "2024-11-01T00:00:00+02:00": 2452 - }, - "orderConfirmation for subscriber 190": { - "2024-11-01T00:00:00+02:00": 19 - }, - "shippingUpdate for subscriber 84": { - "2024-11-01T00:00:00+02:00": 10857 - }, - "supportMessage for subscriber 77": { - "2024-11-01T00:00:00+02:00": 738 - }, - "orderReceipt for subscriber 13": { - "2024-11-01T00:00:00+02:00": 7 - }, - "shippingUpdate for subscriber 35": { - "2024-11-01T00:00:00+02:00": 21 - }, - "newPrescription for subscriber 93": { - "2024-11-01T00:00:00+02:00": 7 - }, - "supportMessage for subscriber 238": { - "2024-11-01T00:00:00+02:00": 20 - }, - "supportMessage for subscriber 53": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Patient Welcome": { - "2024-11-01T00:00:00+02:00": 9883 - }, - "delivered for subscriber 38": { - "2024-11-01T00:00:00+02:00": 1755 - }, - "patientWelcome for subscriber 378": { - "2024-11-01T00:00:00+02:00": 89 - }, - "orderReceipt for subscriber 384": { - "2024-11-01T00:00:00+02:00": 12 - }, - "firstTimeShippingConfirmation for subscriber 378": { - "2024-11-01T00:00:00+02:00": 23 - }, - "abandonedPostCheckout for subscriber 77": { - "2024-11-01T00:00:00+02:00": 20 - }, - "orderReceipt for subscriber 161": { - "2024-11-01T00:00:00+02:00": 5877 - }, - "outForDelivery for subscriber 256": { - "2024-11-01T00:00:00+02:00": 180 - }, - "firstTimeOrderConfirmation for subscriber 549": { - "2024-11-01T00:00:00+02:00": 16 - }, - "delivered for subscriber 256": { - "2024-11-01T00:00:00+02:00": 184 - }, - "Admin Daily Report": { - "2024-11-01T00:00:00+02:00": 187 - }, - "supportMessage for subscriber 9": { - "2024-11-01T00:00:00+02:00": 6 - }, - "newPrescription for subscriber 200": { - "2024-11-01T00:00:00+02:00": 34 - }, - "newRefill for subscriber 542": { - "2024-11-01T00:00:00+02:00": 8 - }, - "shippingUpdate for subscriber 523": { - "2024-11-01T00:00:00+02:00": 109 - }, - "patientWelcome for subscriber 255": { - "2024-11-01T00:00:00+02:00": 211 - }, - "firstTimeShippingConfirmation for subscriber 523": { - "2024-11-01T00:00:00+02:00": 23 - }, - "abandonedPostCheckout for subscriber 266": { - "2024-11-01T00:00:00+02:00": 25 - }, - "delivered for subscriber 441": { - "2024-11-01T00:00:00+02:00": 41 - }, - "delivered for subscriber 465": { - "2024-11-01T00:00:00+02:00": 7 - }, - "prescriptionChanged for subscriber 349": { - "2024-11-01T00:00:00+02:00": 25 - }, - "supportMessage for subscriber 4": { - "2024-11-01T00:00:00+02:00": 3102 - }, - "shippingConfirmation for subscriber 217": { - "2024-11-01T00:00:00+02:00": 7 - }, - "outForDelivery for subscriber 217": { - "2024-11-01T00:00:00+02:00": 11 - }, - "patientMagicLink for subscriber 275": { - "2024-11-01T00:00:00+02:00": 11 - }, - "First Time Order Confirmation": { - "2024-11-01T00:00:00+02:00": 158 - }, - "shippingUpdate for subscriber 53": { - "2024-11-01T00:00:00+02:00": 206 - }, - "supportMessage for subscriber 428": { - "2024-11-01T00:00:00+02:00": 18 - }, - "outForDelivery for subscriber 200": { - "2024-11-01T00:00:00+02:00": 590 - }, - "shippingUpdate for subscriber 384": { - "2024-11-01T00:00:00+02:00": 88 - }, - "shippingConfirmation for subscriber 9": { - "2024-11-01T00:00:00+02:00": 13 - }, - "First Time Shipping Confirmation for subscriber 165": { - "2024-11-01T00:00:00+02:00": 1739 - }, - "outForDelivery for subscriber 604": { - "2024-11-01T00:00:00+02:00": 11 - }, - "patientWelcome for subscriber 275": { - "2024-11-01T00:00:00+02:00": 19 - }, - "orderCanceled for subscriber 377": { - "2024-11-01T00:00:00+02:00": 7 - }, - "shippingConfirmation for subscriber 68": { - "2024-11-01T00:00:00+02:00": 6 - }, - "delivered for subscriber 111": { - "2024-11-01T00:00:00+02:00": 18 - }, - "patientWelcome for subscriber 406": { - "2024-11-01T00:00:00+02:00": 145 - }, - "patientWelcome for subscriber 63": { - "2024-11-01T00:00:00+02:00": 11706 - }, - "patientMagicLink for subscriber 256": { - "2024-11-01T00:00:00+02:00": 48 - }, - "supportMessage for subscriber 35": { - "2024-11-01T00:00:00+02:00": 21 - }, - "orderConfirmation for subscriber 614": { - "2024-11-01T00:00:00+02:00": 7 - }, - "doctorMessage for subscriber 614": { - "2024-11-01T00:00:00+02:00": 41 - }, - "passwordReset for subscriber 37": { - "2024-11-01T00:00:00+02:00": 1458 - }, - "shippingUpdate for subscriber 217": { - "2024-11-01T00:00:00+02:00": 100 - }, - "shippingUpdate for subscriber 377": { - "2024-11-01T00:00:00+02:00": 517 - }, - "orderReceipt for subscriber 441": { - "2024-11-01T00:00:00+02:00": 17 - }, - "orderReceipt for subscriber 38": { - "2024-11-01T00:00:00+02:00": 1568 - }, - "orderReceipt for subscriber 150": { - "2024-11-01T00:00:00+02:00": 9 - }, - "firstTimeNewPrescription for subscriber 406": { - "2024-11-01T00:00:00+02:00": 96 - }, - "delivered for subscriber 53": { - "2024-11-01T00:00:00+02:00": 31 - }, - "doctorMessage for subscriber 549": { - "2024-11-01T00:00:00+02:00": 38 - }, - "doctorMessage for subscriber 73": { - "2024-11-01T00:00:00+02:00": 43 - }, - "followUpPastDue for subscriber 77": { - "2024-11-01T00:00:00+02:00": 154 - }, - "newRefill for subscriber 9": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderConfirmation for subscriber 255": { - "2024-11-01T00:00:00+02:00": 248 - }, - "orderCanceled for subscriber 63": { - "2024-11-01T00:00:00+02:00": 709 - }, - "abandonedCheckout for subscriber 614": { - "2024-11-01T00:00:00+02:00": 248 - }, - "followUpPastDue for subscriber 217": { - "2024-11-01T00:00:00+02:00": 9 - }, - "shippingUpdate for subscriber 165": { - "2024-11-01T00:00:00+02:00": 39964 - }, - "First Time Shipping Confirmation": { - "2024-11-01T00:00:00+02:00": 336 - }, - "orderReceipt for subscriber 638": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Export disputes": { - "2024-11-01T00:00:00+02:00": 185 - }, - "First Time Shipping Confirmation for subscriber 93": { - "2024-11-01T00:00:00+02:00": 13 - }, - "followUpPastDue for subscriber 190": { - "2024-11-01T00:00:00+02:00": 15 - }, - "abandonedCheckout for subscriber 4": { - "2024-11-01T00:00:00+02:00": 5369 - }, - "labResulted for subscriber 441": { - "2024-11-01T00:00:00+02:00": 14 - }, - "doctorMessage for subscriber 38": { - "2024-11-01T00:00:00+02:00": 481 - }, - "shippingConfirmation for subscriber 255": { - "2024-11-01T00:00:00+02:00": 501 - }, - "prescriptionChanged for subscriber 542": { - "2024-11-01T00:00:00+02:00": 39 - }, - "orderCanceled for subscriber 77": { - "2024-11-01T00:00:00+02:00": 24 - }, - "newPrescription for subscriber 275": { - "2024-11-01T00:00:00+02:00": 27 - }, - "patientWelcome for subscriber 196": { - "2024-11-01T00:00:00+02:00": 27 - }, - "passwordReset for subscriber 9": { - "2024-11-01T00:00:00+02:00": 7 - }, - "doctorMessage for subscriber 217": { - "2024-11-01T00:00:00+02:00": 30 - }, - "paymentError for subscriber 37": { - "2024-11-01T00:00:00+02:00": 302 - }, - "Order Confirmation": { - "2024-11-01T00:00:00+02:00": 40 - }, - "orderReceipt for subscriber 238": { - "2024-11-01T00:00:00+02:00": 20 - }, - "prescriptionChanged for subscriber 266": { - "2024-11-01T00:00:00+02:00": 219 - }, - "shippingUpdate for subscriber 415": { - "2024-11-01T00:00:00+02:00": 19 - }, - "outForDelivery for subscriber 68": { - "2024-11-01T00:00:00+02:00": 11 - }, - "shippingUpdate for subscriber 463": { - "2024-11-01T00:00:00+02:00": 25 - }, - "followUpDue for subscriber 349": { - "2024-11-01T00:00:00+02:00": 25 - }, - "newPrescription for subscriber 37": { - "2024-11-01T00:00:00+02:00": 12320 - }, - "orderReceipt for subscriber 77": { - "2024-11-01T00:00:00+02:00": 296 - }, - "doctorMessage for subscriber 256": { - "2024-11-01T00:00:00+02:00": 522 - }, - "Follow Up Due for subscriber 93": { - "2024-11-01T00:00:00+02:00": 7 - }, - "shippingConfirmation for subscriber 37": { - "2024-11-01T00:00:00+02:00": 18312 - }, - "followUpDue for subscriber 455": { - "2024-11-01T00:00:00+02:00": 10 - }, - "supportMessage for subscriber 38": { - "2024-11-01T00:00:00+02:00": 309 - }, - "supportMessage for subscriber 255": { - "2024-11-01T00:00:00+02:00": 356 - }, - "prescriptionChanged for subscriber 523": { - "2024-11-01T00:00:00+02:00": 9 - }, - "delivered for subscriber 406": { - "2024-11-01T00:00:00+02:00": 90 - }, - "abandonedCheckout for subscriber 190": { - "2024-11-01T00:00:00+02:00": 16 - }, - "abandonedCheckout for subscriber 217": { - "2024-11-01T00:00:00+02:00": 41 - }, - "prescriptionChanged for subscriber 350": { - "2024-11-01T00:00:00+02:00": 6 - }, - "patientMagicLink for subscriber 63": { - "2024-11-01T00:00:00+02:00": 1407 - }, - "firstTimeOrderConfirmation for subscriber 406": { - "2024-11-01T00:00:00+02:00": 64 - }, - "abandonedCheckout for subscriber 266": { - "2024-11-01T00:00:00+02:00": 719 - }, - "abandonedPostCheckout for subscriber 329": { - "2024-11-01T00:00:00+02:00": 8 - }, - "delivered for subscriber 73": { - "2024-11-01T00:00:00+02:00": 12 - }, - "shippingConfirmation for subscriber 320": { - "2024-11-01T00:00:00+02:00": 18 - }, - "First Time Order Confirmation for subscriber 18": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderConfirmation for subscriber 68": { - "2024-11-01T00:00:00+02:00": 11 - }, - "firstTimeShippingConfirmation for subscriber 364": { - "2024-11-01T00:00:00+02:00": 88 - }, - "shippingUpdate for subscriber 143": { - "2024-11-01T00:00:00+02:00": 144661 - }, - "patientMagicLink for subscriber 349": { - "2024-11-01T00:00:00+02:00": 20 - }, - "abandonedCheckout for subscriber 549": { - "2024-11-01T00:00:00+02:00": 43 - }, - "orderReceipt for subscriber 9": { - "2024-11-01T00:00:00+02:00": 19 - }, - "abandonedCheckout for subscriber 275": { - "2024-11-01T00:00:00+02:00": 49 - }, - "abandonedCheckout for subscriber 604": { - "2024-11-01T00:00:00+02:00": 22 - }, - "patientMagicLink for subscriber 143": { - "2024-11-01T00:00:00+02:00": 3394 - }, - "doctorMessage for subscriber 238": { - "2024-11-01T00:00:00+02:00": 43 - }, - "firstTimeShippingConfirmation for subscriber 441": { - "2024-11-01T00:00:00+02:00": 87 - }, - "doctorMessage for subscriber 441": { - "2024-11-01T00:00:00+02:00": 56 - }, - "orderReceipt for subscriber 452": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Patient Magic Link for subscriber 542": { - "2024-11-01T00:00:00+02:00": 30 - }, - "supportMessage for subscriber 263": { - "2024-11-01T00:00:00+02:00": 60 - }, - "shippingConfirmation for subscriber 441": { - "2024-11-01T00:00:00+02:00": 7 - }, - "firstTimeShippingConfirmation for subscriber 549": { - "2024-11-01T00:00:00+02:00": 17 - }, - "orderReceipt for subscriber 93": { - "2024-11-01T00:00:00+02:00": 20 - }, - "Patient Welcome for subscriber 320": { - "2024-11-01T00:00:00+02:00": 87 - }, - "patientWelcome for subscriber 111": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderCanceled for subscriber 200": { - "2024-11-01T00:00:00+02:00": 55 - }, - "abandonedPostCheckout for subscriber 465": { - "2024-11-01T00:00:00+02:00": 8 - }, - "patientWelcome for subscriber 551": { - "2024-11-01T00:00:00+02:00": 72 - }, - "supportMessage for subscriber 542": { - "2024-11-01T00:00:00+02:00": 78 - }, - "Doctor Message": { - "2024-11-01T00:00:00+02:00": 286 - }, - "prescriptionChanged for subscriber 530": { - "2024-11-01T00:00:00+02:00": 15 - }, - "prescriptionChanged for subscriber 143": { - "2024-11-01T00:00:00+02:00": 1043 - }, - "patientWelcome for subscriber 121": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Admin Pharmacy Error": { - "2024-11-01T00:00:00+02:00": 530 - }, - "orderReceipt for subscriber 37": { - "2024-11-01T00:00:00+02:00": 19472 - }, - "paymentError for subscriber 378": { - "2024-11-01T00:00:00+02:00": 8 - }, - "shippingConfirmation for subscriber 13": { - "2024-11-01T00:00:00+02:00": 7 - }, - "patientMagicLink for subscriber 364": { - "2024-11-01T00:00:00+02:00": 25 - }, - "orderConfirmation for subscriber 84": { - "2024-11-01T00:00:00+02:00": 937 - }, - "abandonedCheckout for subscriber 329": { - "2024-11-01T00:00:00+02:00": 1023 - }, - "abandonedCheckout for subscriber 530": { - "2024-11-01T00:00:00+02:00": 196 - }, - "firstTimeOrderConfirmation for subscriber 401": { - "2024-11-01T00:00:00+02:00": 6 - }, - "abandonedCheckout for subscriber 150": { - "2024-11-01T00:00:00+02:00": 10 - }, - "doctorMessage for subscriber 161": { - "2024-11-01T00:00:00+02:00": 14429 - }, - "abandonedPostCheckout for subscriber 255": { - "2024-11-01T00:00:00+02:00": 15 - }, - "treatmentActive for subscriber 542": { - "2024-11-01T00:00:00+02:00": 27 - }, - "abandonedCheckout for subscriber 255": { - "2024-11-01T00:00:00+02:00": 398 - }, - "orderCanceled for subscriber 256": { - "2024-11-01T00:00:00+02:00": 15 - }, - "patientWelcome for subscriber 292": { - "2024-11-01T00:00:00+02:00": 6 - }, - "firstTimeShippingConfirmation for subscriber 84": { - "2024-11-01T00:00:00+02:00": 799 - }, - "followUpDue for subscriber 165": { - "2024-11-01T00:00:00+02:00": 3077 - }, - "abandonedCheckout for subscriber 68": { - "2024-11-01T00:00:00+02:00": 17 - }, - "orderConfirmation for subscriber 53": { - "2024-11-01T00:00:00+02:00": 58 - }, - "doctorMessage for subscriber 415": { - "2024-11-01T00:00:00+02:00": 8 - }, - "newRefill for subscriber 38": { - "2024-11-01T00:00:00+02:00": 1463 - }, - "newRefill for subscriber 63": { - "2024-11-01T00:00:00+02:00": 1877 - }, - "Delivered for subscriber 549": { - "2024-11-01T00:00:00+02:00": 8 - }, - "delivered for subscriber 190": { - "2024-11-01T00:00:00+02:00": 16 - }, - "supportMessage for subscriber 143": { - "2024-11-01T00:00:00+02:00": 13739 - }, - "delivered for subscriber 455": { - "2024-11-01T00:00:00+02:00": 7 - }, - "passwordReset for subscriber 378": { - "2024-11-01T00:00:00+02:00": 7 - }, - "abandonedCheckout for subscriber 350": { - "2024-11-01T00:00:00+02:00": 162 - }, - "orderConfirmation for subscriber 200": { - "2024-11-01T00:00:00+02:00": 58 - }, - "Admin Trial Expired": { - "2024-11-01T00:00:00+02:00": 6 - }, - "shippingUpdate for subscriber 111": { - "2024-11-01T00:00:00+02:00": 190 - }, - "paymentError for subscriber 38": { - "2024-11-01T00:00:00+02:00": 364 - }, - "patientWelcome for subscriber 4": { - "2024-11-01T00:00:00+02:00": 4980 - }, - "outForDelivery for subscriber 37": { - "2024-11-01T00:00:00+02:00": 15377 - }, - "delivered for subscriber 63": { - "2024-11-01T00:00:00+02:00": 6487 - }, - "supportMessage for subscriber 37": { - "2024-11-01T00:00:00+02:00": 20885 - }, - "delivered for subscriber 266": { - "2024-11-01T00:00:00+02:00": 328 - }, - "patientWelcome for subscriber 73": { - "2024-11-01T00:00:00+02:00": 17 - }, - "outForDelivery for subscriber 38": { - "2024-11-01T00:00:00+02:00": 1690 - }, - "orderConfirmation for subscriber 256": { - "2024-11-01T00:00:00+02:00": 105 - }, - "shippingConfirmation for subscriber 378": { - "2024-11-01T00:00:00+02:00": 35 - }, - "abandonedPostCheckout for subscriber 364": { - "2024-11-01T00:00:00+02:00": 10 - }, - "newPrescription for subscriber 53": { - "2024-11-01T00:00:00+02:00": 28 - }, - "Payment Error for subscriber 165": { - "2024-11-01T00:00:00+02:00": 114 - }, - "checkinRenewal for subscriber 38": { - "2024-11-01T00:00:00+02:00": 151 - }, - "newPrescription for subscriber 378": { - "2024-11-01T00:00:00+02:00": 10 - }, - "doctorMessage for subscriber 121": { - "2024-11-01T00:00:00+02:00": 13 - }, - "passwordReset for subscriber 200": { - "2024-11-01T00:00:00+02:00": 45 - }, - "doctorMessage for subscriber 440": { - "2024-11-01T00:00:00+02:00": 9 - }, - "shippingConfirmation for subscriber 266": { - "2024-11-01T00:00:00+02:00": 263 - }, - "shippingUpdate for subscriber 275": { - "2024-11-01T00:00:00+02:00": 444 - }, - "orderConfirmation for subscriber 73": { - "2024-11-01T00:00:00+02:00": 9 - }, - "patientWelcome for subscriber 384": { - "2024-11-01T00:00:00+02:00": 9 - }, - "abandonedCheckout for subscriber 522": { - "2024-11-01T00:00:00+02:00": 164 - }, - "Admin Chargebacks and Disputes": { - "2024-11-01T00:00:00+02:00": 250 - }, - "doctorMessage for subscriber 551": { - "2024-11-01T00:00:00+02:00": 17 - }, - "outForDelivery for subscriber 255": { - "2024-11-01T00:00:00+02:00": 273 - }, - "orderConfirmation for subscriber 37": { - "2024-11-01T00:00:00+02:00": 12878 - }, - "orderReceipt for subscriber 143": { - "2024-11-01T00:00:00+02:00": 27160 - }, - "abandonedCheckout for subscriber 9": { - "2024-11-01T00:00:00+02:00": 33 - }, - "followUpDue for subscriber 73": { - "2024-11-01T00:00:00+02:00": 9 - }, - "firstTimeShippingConfirmation for subscriber 255": { - "2024-11-01T00:00:00+02:00": 94 - }, - "followUpDue for subscriber 364": { - "2024-11-01T00:00:00+02:00": 61 - }, - "followUpPastDue for subscriber 349": { - "2024-11-01T00:00:00+02:00": 18 - }, - "followUpDue for subscriber 150": { - "2024-11-01T00:00:00+02:00": 9 - }, - "prescriptionChanged for subscriber 275": { - "2024-11-01T00:00:00+02:00": 35 - }, - "firstTimeOrderConfirmation for subscriber 38": { - "2024-11-01T00:00:00+02:00": 136 - }, - "patientMagicLink for subscriber 377": { - "2024-11-01T00:00:00+02:00": 9 - }, - "followUpDue for subscriber 190": { - "2024-11-01T00:00:00+02:00": 20 - }, - "shippingUpdate for subscriber 68": { - "2024-11-01T00:00:00+02:00": 86 - }, - "newPrescription for subscriber 364": { - "2024-11-01T00:00:00+02:00": 17 - }, - "newPrescription for subscriber 63": { - "2024-11-01T00:00:00+02:00": 3168 - }, - "orderConfirmation for subscriber 77": { - "2024-11-01T00:00:00+02:00": 209 - }, - "doctorMessage for subscriber 523": { - "2024-11-01T00:00:00+02:00": 112 - }, - "orderReceipt for subscriber 406": { - "2024-11-01T00:00:00+02:00": 117 - }, - "firstTimeOrderConfirmation for subscriber 551": { - "2024-11-01T00:00:00+02:00": 17 - }, - "doctorMessage for subscriber 266": { - "2024-11-01T00:00:00+02:00": 863 - }, - "passwordReset for subscriber 364": { - "2024-11-01T00:00:00+02:00": 27 - }, - "outForDelivery for subscriber 84": { - "2024-11-01T00:00:00+02:00": 1343 - }, - "shippingConfirmation for subscriber 455": { - "2024-11-01T00:00:00+02:00": 7 - }, - "firstTimeOrderConfirmation for subscriber 329": { - "2024-11-01T00:00:00+02:00": 52 - }, - "abandonedPostCheckout for subscriber 200": { - "2024-11-01T00:00:00+02:00": 48 - }, - "First Time Shipping Confirmation for subscriber 63": { - "2024-11-01T00:00:00+02:00": 1222 - }, - "doctorMessage for subscriber 604": { - "2024-11-01T00:00:00+02:00": 36 - }, - "supportMessage for subscriber 604": { - "2024-11-01T00:00:00+02:00": 9 - }, - "outForDelivery for subscriber 377": { - "2024-11-01T00:00:00+02:00": 70 - }, - "doctorMessage for subscriber 13": { - "2024-11-01T00:00:00+02:00": 11 - }, - "delivered for subscriber 68": { - "2024-11-01T00:00:00+02:00": 11 - }, - "orderReceipt for subscriber 68": { - "2024-11-01T00:00:00+02:00": 12 - }, - "doctorMessage for subscriber 200": { - "2024-11-01T00:00:00+02:00": 615 - }, - "firstTimeNewPrescription for subscriber 238": { - "2024-11-01T00:00:00+02:00": 6 - }, - "followUpDue for subscriber 266": { - "2024-11-01T00:00:00+02:00": 315 - }, - "newPrescription for subscriber 255": { - "2024-11-01T00:00:00+02:00": 70 - }, - "doctorMessage for subscriber 378": { - "2024-11-01T00:00:00+02:00": 147 - }, - "outForDelivery for subscriber 63": { - "2024-11-01T00:00:00+02:00": 6182 - }, - "orderReceipt for subscriber 604": { - "2024-11-01T00:00:00+02:00": 12 - }, - "shippingUpdate for subscriber 292": { - "2024-11-01T00:00:00+02:00": 9 - }, - "firstTimeOrderConfirmation for subscriber 452": { - "2024-11-01T00:00:00+02:00": 8 - }, - "firstTimeOrderConfirmation for subscriber 530": { - "2024-11-01T00:00:00+02:00": 24 - }, - "firstTimeOrderConfirmation for subscriber 364": { - "2024-11-01T00:00:00+02:00": 92 - }, - "patientMagicLink for subscriber 37": { - "2024-11-01T00:00:00+02:00": 2529 - }, - "shippingUpdate for subscriber 320": { - "2024-11-01T00:00:00+02:00": 266 - }, - "followUpDue for subscriber 238": { - "2024-11-01T00:00:00+02:00": 23 - }, - "abandonedPostCheckout for subscriber 84": { - "2024-11-01T00:00:00+02:00": 115 - }, - "followUpDue for subscriber 255": { - "2024-11-01T00:00:00+02:00": 378 - }, - "prescriptionChanged for subscriber 84": { - "2024-11-01T00:00:00+02:00": 846 - }, - "newPrescription for subscriber 384": { - "2024-11-01T00:00:00+02:00": 8 - }, - "firstTimeShippingConfirmation for subscriber 37": { - "2024-11-01T00:00:00+02:00": 3966 - }, - "patientMagicLink for subscriber 38": { - "2024-11-01T00:00:00+02:00": 99 - }, - "shippingConfirmation for subscriber 377": { - "2024-11-01T00:00:00+02:00": 44 - }, - "abandonedCheckout for subscriber 638": { - "2024-11-01T00:00:00+02:00": 7 - }, - "patientWelcome for subscriber 549": { - "2024-11-01T00:00:00+02:00": 48 - }, - "patientWelcome for subscriber 93": { - "2024-11-01T00:00:00+02:00": 373 - }, - "firstTimeNewPrescription for subscriber 604": { - "2024-11-01T00:00:00+02:00": 7 - }, - "delivered for subscriber 377": { - "2024-11-01T00:00:00+02:00": 74 - }, - "delivered for subscriber 364": { - "2024-11-01T00:00:00+02:00": 111 - }, - "shippingUpdate for subscriber 364": { - "2024-11-01T00:00:00+02:00": 1088 - }, - "orderReceipt for subscriber 190": { - "2024-11-01T00:00:00+02:00": 19 - }, - "firstTimeOrderConfirmation for subscriber 465": { - "2024-11-01T00:00:00+02:00": 20 - }, - "patientWelcome for subscriber 38": { - "2024-11-01T00:00:00+02:00": 437 - }, - "shippingConfirmation for subscriber 256": { - "2024-11-01T00:00:00+02:00": 160 - }, - "doctorMessage for subscriber 35": { - "2024-11-01T00:00:00+02:00": 17 - }, - "orderCanceled for subscriber 165": { - "2024-11-01T00:00:00+02:00": 310 - }, - "Shipping Update for subscriber 549": { - "2024-11-01T00:00:00+02:00": 59 - }, - "outForDelivery for subscriber 238": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Order Receipt for subscriber 542": { - "2024-11-01T00:00:00+02:00": 96 - }, - "First Time New Prescription for subscriber 165": { - "2024-11-01T00:00:00+02:00": 1871 - }, - "firstTimeOrderConfirmation for subscriber 37": { - "2024-11-01T00:00:00+02:00": 4364 - }, - "delivered for subscriber 275": { - "2024-11-01T00:00:00+02:00": 59 - }, - "delivered for subscriber 93": { - "2024-11-01T00:00:00+02:00": 19 - }, - "orderReceipt for subscriber 4": { - "2024-11-01T00:00:00+02:00": 2174 - }, - "orderReceipt for subscriber 377": { - "2024-11-01T00:00:00+02:00": 75 - }, - "Order Receipt": { - "2024-11-01T00:00:00+02:00": 122 - }, - "firstTimeShippingConfirmation for subscriber 452": { - "2024-11-01T00:00:00+02:00": 10 - }, - "shippingUpdate for subscriber 161": { - "2024-11-01T00:00:00+02:00": 45635 - }, - "Order Canceled": { - "2024-11-01T00:00:00+02:00": 555 - }, - "First Time New Prescription for subscriber 614": { - "2024-11-01T00:00:00+02:00": 14 - }, - "doctorMessage for subscriber 463": { - "2024-11-01T00:00:00+02:00": 6 - }, - "outForDelivery for subscriber 111": { - "2024-11-01T00:00:00+02:00": 17 - }, - "doctorMessage for subscriber 255": { - "2024-11-01T00:00:00+02:00": 786 - }, - "firstTimeShippingConfirmation for subscriber 428": { - "2024-11-01T00:00:00+02:00": 6 - }, - "doctorMessage for subscriber 522": { - "2024-11-01T00:00:00+02:00": 11 - }, - "followUpPastDue for subscriber 84": { - "2024-11-01T00:00:00+02:00": 987 - }, - "Admin New Order": { - "2024-11-01T00:00:00+02:00": 70995 - }, - "orderConfirmation for subscriber 4": { - "2024-11-01T00:00:00+02:00": 1379 - }, - "shippingUpdate for subscriber 349": { - "2024-11-01T00:00:00+02:00": 209 - }, - "supportMessage for subscriber 161": { - "2024-11-01T00:00:00+02:00": 2225 - }, - "orderReceipt for subscriber 349": { - "2024-11-01T00:00:00+02:00": 34 - }, - "doctorMessage for subscriber 93": { - "2024-11-01T00:00:00+02:00": 66 - }, - "prescriptionChanged for subscriber 53": { - "2024-11-01T00:00:00+02:00": 30 - }, - "abandonedCheckout for subscriber 63": { - "2024-11-01T00:00:00+02:00": 14187 - }, - "firstTimeShippingConfirmation for subscriber 604": { - "2024-11-01T00:00:00+02:00": 14 - }, - "doctorMessage for subscriber 111": { - "2024-11-01T00:00:00+02:00": 55 - }, - "First Time New Prescription for subscriber 542": { - "2024-11-01T00:00:00+02:00": 23 - }, - "orderReceipt for subscriber 165": { - "2024-11-01T00:00:00+02:00": 5421 - }, - "Out For Delivery for subscriber 542": { - "2024-11-01T00:00:00+02:00": 76 - }, - "abandonedPostCheckout for subscriber 165": { - "2024-11-01T00:00:00+02:00": 249 - }, - "firstTimeNewPrescription for subscriber 530": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Shipping Confirmation for subscriber 542": { - "2024-11-01T00:00:00+02:00": 68 - }, - "paymentError for subscriber 4": { - "2024-11-01T00:00:00+02:00": 76 - }, - "supportMessage for subscriber 73": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Prescription Changed": { - "2024-11-01T00:00:00+02:00": 3262 - }, - "supportMessage for subscriber 111": { - "2024-11-01T00:00:00+02:00": 47 - }, - "Delivered for subscriber 350": { - "2024-11-01T00:00:00+02:00": 6 - }, - "abandonedCheckout for subscriber 455": { - "2024-11-01T00:00:00+02:00": 9 - }, - "delivered for subscriber 13": { - "2024-11-01T00:00:00+02:00": 6 - }, - "firstTimeOrderConfirmation for subscriber 255": { - "2024-11-01T00:00:00+02:00": 50 - }, - "Shipping Confirmation": { - "2024-11-01T00:00:00+02:00": 34 - }, - "doctorMessage for subscriber 530": { - "2024-11-01T00:00:00+02:00": 57 - }, - "orderConfirmation for subscriber 93": { - "2024-11-01T00:00:00+02:00": 13 - }, - "followUpPastDue for subscriber 266": { - "2024-11-01T00:00:00+02:00": 261 - }, - "firstTimeShippingConfirmation for subscriber 4": { - "2024-11-01T00:00:00+02:00": 871 - }, - "patientWelcome for subscriber 256": { - "2024-11-01T00:00:00+02:00": 371 - }, - "Admin Webhook Disabled": { - "2024-11-01T00:00:00+02:00": 12 - }, - "orderConfirmation for subscriber 377": { - "2024-11-01T00:00:00+02:00": 22 - }, - "custom in app messages": { - "2024-11-01T00:00:00+02:00": 998 - }, - "supportMessage for subscriber 256": { - "2024-11-01T00:00:00+02:00": 83 - }, - "followUpDue for subscriber 320": { - "2024-11-01T00:00:00+02:00": 28 - }, - "patientMagicLink for subscriber 84": { - "2024-11-01T00:00:00+02:00": 388 - }, - "patientWelcome for subscriber 441": { - "2024-11-01T00:00:00+02:00": 345 - }, - "shippingUpdate for subscriber 329": { - "2024-11-01T00:00:00+02:00": 230 - }, - "passwordReset for subscriber 38": { - "2024-11-01T00:00:00+02:00": 132 - }, - "paymentError for subscriber 63": { - "2024-11-01T00:00:00+02:00": 160 - }, - "firstTimeOrderConfirmation for subscriber 161": { - "2024-11-01T00:00:00+02:00": 1647 - }, - "abandonedCheckout for subscriber 93": { - "2024-11-01T00:00:00+02:00": 363 - }, - "passwordReset for subscriber 161": { - "2024-11-01T00:00:00+02:00": 675 - }, - "abandonedCheckout for subscriber 143": { - "2024-11-01T00:00:00+02:00": 33744 - }, - "shippingConfirmation for subscriber 73": { - "2024-11-01T00:00:00+02:00": 9 - }, - "orderReceipt for subscriber 53": { - "2024-11-01T00:00:00+02:00": 61 - }, - "outForDelivery for subscriber 73": { - "2024-11-01T00:00:00+02:00": 12 - }, - "delivered for subscriber 255": { - "2024-11-01T00:00:00+02:00": 307 - }, - "delivered for subscriber 4": { - "2024-11-01T00:00:00+02:00": 1946 - }, - "firstTimeOrderConfirmation for subscriber 263": { - "2024-11-01T00:00:00+02:00": 19 - }, - "patientWelcome for subscriber 455": { - "2024-11-01T00:00:00+02:00": 6 - }, - "patientWelcome for subscriber 428": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Password Reset for subscriber 320": { - "2024-11-01T00:00:00+02:00": 6 - }, - "newPrescription for subscriber 150": { - "2024-11-01T00:00:00+02:00": 8 - }, - "orderReceipt for subscriber 263": { - "2024-11-01T00:00:00+02:00": 55 - }, - "abandonedCheckout for subscriber 37": { - "2024-11-01T00:00:00+02:00": 24464 - }, - "patientWelcome for subscriber 84": { - "2024-11-01T00:00:00+02:00": 5095 - }, - "abandonedPostCheckout for subscriber 37": { - "2024-11-01T00:00:00+02:00": 1137 - }, - "followUpPastDue for subscriber 320": { - "2024-11-01T00:00:00+02:00": 17 - }, - "delivered for subscriber 384": { - "2024-11-01T00:00:00+02:00": 12 - }, - "firstTimeOrderConfirmation for subscriber 4": { - "2024-11-01T00:00:00+02:00": 779 - }, - "firstTimeShippingConfirmation for subscriber 266": { - "2024-11-01T00:00:00+02:00": 267 - }, - "Shipping Update for subscriber 542": { - "2024-11-01T00:00:00+02:00": 632 - }, - "firstTimeOrderConfirmation for subscriber 121": { - "2024-11-01T00:00:00+02:00": 6 - }, - "patientWelcome for subscriber 263": { - "2024-11-01T00:00:00+02:00": 123 - }, - "passwordReset for subscriber 350": { - "2024-11-01T00:00:00+02:00": 8 - }, - "outForDelivery for subscriber 77": { - "2024-11-01T00:00:00+02:00": 276 - }, - "followUpDue for subscriber 217": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderConfirmation for subscriber 320": { - "2024-11-01T00:00:00+02:00": 20 - }, - "shippingUpdate for subscriber 440": { - "2024-11-01T00:00:00+02:00": 26 - }, - "orderCanceled for subscriber 364": { - "2024-11-01T00:00:00+02:00": 9 - }, - "abandonedCheckout for subscriber 542": { - "2024-11-01T00:00:00+02:00": 242 - }, - "orderConfirmation for subscriber 263": { - "2024-11-01T00:00:00+02:00": 35 - }, - "abandonedCheckout for subscriber 551": { - "2024-11-01T00:00:00+02:00": 66 - }, - "firstTimeOrderConfirmation for subscriber 378": { - "2024-11-01T00:00:00+02:00": 22 - }, - "patientWelcome for subscriber 614": { - "2024-11-01T00:00:00+02:00": 206 - }, - "doctorMessage for subscriber 84": { - "2024-11-01T00:00:00+02:00": 4000 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 13 - }, - "doctorMessage for subscriber 37": { - "2024-11-01T00:00:00+02:00": 39523 - }, - "supportMessage for subscriber 378": { - "2024-11-01T00:00:00+02:00": 6 - }, - "orderConfirmation for subscriber 143": { - "2024-11-01T00:00:00+02:00": 22621 - }, - "shippingConfirmation for subscriber 38": { - "2024-11-01T00:00:00+02:00": 1371 - }, - "doctorMessage for subscriber 455": { - "2024-11-01T00:00:00+02:00": 34 - }, - "orderConfirmation for subscriber 378": { - "2024-11-01T00:00:00+02:00": 23 - }, - "doctorMessage for subscriber 63": { - "2024-11-01T00:00:00+02:00": 15056 - }, - "passwordReset for subscriber 255": { - "2024-11-01T00:00:00+02:00": 62 - }, - "Admin New Prescription": { - "2024-11-01T00:00:00+02:00": 57071 - }, - "outForDelivery for subscriber 406": { - "2024-11-01T00:00:00+02:00": 81 - }, - "firstTimeOrderConfirmation for subscriber 604": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Out For Delivery for subscriber 364": { - "2024-11-01T00:00:00+02:00": 107 - }, - "outForDelivery for subscriber 93": { - "2024-11-01T00:00:00+02:00": 15 - }, - "patientMagicLink for subscriber 266": { - "2024-11-01T00:00:00+02:00": 65 - }, - "shippingUpdate for subscriber 455": { - "2024-11-01T00:00:00+02:00": 75 - }, - "newRefill for subscriber 37": { - "2024-11-01T00:00:00+02:00": 1896 - }, - "abandonedPostCheckout for subscriber 161": { - "2024-11-01T00:00:00+02:00": 411 - }, - "prescriptionChanged for subscriber 111": { - "2024-11-01T00:00:00+02:00": 14 - }, - "firstTimeShippingConfirmation for subscriber 542": { - "2024-11-01T00:00:00+02:00": 47 - }, - "firstTimeNewPrescription for subscriber 121": { - "2024-11-01T00:00:00+02:00": 6 - }, - "doctorMessage for subscriber 77": { - "2024-11-01T00:00:00+02:00": 818 - }, - "followUpPastDue for subscriber 364": { - "2024-11-01T00:00:00+02:00": 42 - }, - "doctorMessage for subscriber 350": { - "2024-11-01T00:00:00+02:00": 18 - }, - "doctorMessage for subscriber 329": { - "2024-11-01T00:00:00+02:00": 139 - }, - "orderReceipt for subscriber 549": { - "2024-11-01T00:00:00+02:00": 14 - }, - "shippingConfirmation for subscriber 63": { - "2024-11-01T00:00:00+02:00": 4864 - }, - "Support Message for subscriber 73": { - "2024-11-01T00:00:00+02:00": 26 - }, - "supportMessage for subscriber 121": { - "2024-11-01T00:00:00+02:00": 12 - }, - "outForDelivery for subscriber 455": { - "2024-11-01T00:00:00+02:00": 8 - }, - "newPrescription for subscriber 238": { - "2024-11-01T00:00:00+02:00": 14 - }, - "newRefill for subscriber 143": { - "2024-11-01T00:00:00+02:00": 682 - }, - "First Time New Prescription": { - "2024-11-01T00:00:00+02:00": 6063 - }, - "passwordReset for subscriber 465": { - "2024-11-01T00:00:00+02:00": 22 - }, - "patientWelcome for subscriber 77": { - "2024-11-01T00:00:00+02:00": 591 - }, - "orderReceipt for subscriber 200": { - "2024-11-01T00:00:00+02:00": 727 - }, - "orderReceipt for subscriber 455": { - "2024-11-01T00:00:00+02:00": 10 - }, - "patientWelcome for subscriber 266": { - "2024-11-01T00:00:00+02:00": 560 - }, - "Admin Refund": { - "2024-11-01T00:00:00+02:00": 4647 - }, - "patientWelcome for subscriber 523": { - "2024-11-01T00:00:00+02:00": 135 - }, - "orderReceipt for subscriber 364": { - "2024-11-01T00:00:00+02:00": 117 - }, - "orderReceipt for subscriber 614": { - "2024-11-01T00:00:00+02:00": 16 - }, - "supportMessage for subscriber 329": { - "2024-11-01T00:00:00+02:00": 236 - }, - "shippingConfirmation for subscriber 384": { - "2024-11-01T00:00:00+02:00": 11 - }, - "abandonedCheckout for subscriber 238": { - "2024-11-01T00:00:00+02:00": 17 - }, - "labRejected for subscriber 441": { - "2024-11-01T00:00:00+02:00": 6 - }, - "firstTimeNewPrescription for subscriber 377": { - "2024-11-01T00:00:00+02:00": 9 - }, - "firstTimeOrderConfirmation for subscriber 63": { - "2024-11-01T00:00:00+02:00": 2896 - }, - "patientMagicLink for subscriber 165": { - "2024-11-01T00:00:00+02:00": 624 - }, - "passwordReset for subscriber 63": { - "2024-11-01T00:00:00+02:00": 1106 - }, - "followUpDue for subscriber 161": { - "2024-11-01T00:00:00+02:00": 4692 - }, - "followUpPastDue for subscriber 256": { - "2024-11-01T00:00:00+02:00": 102 - }, - "doctorMessage for subscriber 349": { - "2024-11-01T00:00:00+02:00": 115 - }, - "abandonedCheckout for subscriber 452": { - "2024-11-01T00:00:00+02:00": 21 - }, - "doctorMessage for subscriber 4": { - "2024-11-01T00:00:00+02:00": 5190 - }, - "abandonedCheckout for subscriber 378": { - "2024-11-01T00:00:00+02:00": 147 - }, - "orderReceipt for subscriber 551": { - "2024-11-01T00:00:00+02:00": 8 - }, - "shippingConfirmation for subscriber 238": { - "2024-11-01T00:00:00+02:00": 14 - }, - "patientWelcome for subscriber 37": { - "2024-11-01T00:00:00+02:00": 17279 - }, - "shippingConfirmation for subscriber 84": { - "2024-11-01T00:00:00+02:00": 1374 - }, - "firstTimeShippingConfirmation for subscriber 77": { - "2024-11-01T00:00:00+02:00": 155 - }, - "abandonedPostCheckout for subscriber 523": { - "2024-11-01T00:00:00+02:00": 13 - }, - "followUpDue for subscriber 551": { - "2024-11-01T00:00:00+02:00": 7 - }, - "firstTimeShippingConfirmation for subscriber 161": { - "2024-11-01T00:00:00+02:00": 1566 - }, - "patientWelcome for subscriber 143": { - "2024-11-01T00:00:00+02:00": 18005 - }, - "outForDelivery for subscriber 161": { - "2024-11-01T00:00:00+02:00": 4983 - }, - "firstTimeOrderConfirmation for subscriber 143": { - "2024-11-01T00:00:00+02:00": 6900 - }, - "abandonedCheckout for subscriber 377": { - "2024-11-01T00:00:00+02:00": 83 - }, - "firstTimeOrderConfirmation for subscriber 441": { - "2024-11-01T00:00:00+02:00": 45 - }, - "shippingUpdate for subscriber 255": { - "2024-11-01T00:00:00+02:00": 2100 - }, - "Payment Error": { - "2024-11-01T00:00:00+02:00": 53 - }, - "followUpPastDue for subscriber 143": { - "2024-11-01T00:00:00+02:00": 17499 - }, - "firstTimeShippingConfirmation for subscriber 63": { - "2024-11-01T00:00:00+02:00": 1002 - }, - "patientMagicLink for subscriber 255": { - "2024-11-01T00:00:00+02:00": 76 - }, - "abandonedPostCheckout for subscriber 38": { - "2024-11-01T00:00:00+02:00": 16 - }, - "abandonedCheckout for subscriber 84": { - "2024-11-01T00:00:00+02:00": 6527 - }, - "passwordReset for subscriber 406": { - "2024-11-01T00:00:00+02:00": 20 - }, - "delivered for subscriber 523": { - "2024-11-01T00:00:00+02:00": 12 - }, - "orderConfirmation for subscriber 275": { - "2024-11-01T00:00:00+02:00": 64 - }, - "abandonedCheckout for subscriber 53": { - "2024-11-01T00:00:00+02:00": 31 - }, - "newRefill for subscriber 263": { - "2024-11-01T00:00:00+02:00": 8 - }, - "New Prescription": { - "2024-11-01T00:00:00+02:00": 862 - }, - "orderConfirmation for subscriber 165": { - "2024-11-01T00:00:00+02:00": 2670 - }, - "newPrescription for subscriber 377": { - "2024-11-01T00:00:00+02:00": 8 - }, - "patientWelcome for subscriber 238": { - "2024-11-01T00:00:00+02:00": 11 - }, - "shippingConfirmation for subscriber 161": { - "2024-11-01T00:00:00+02:00": 6338 - }, - "shippingUpdate for subscriber 63": { - "2024-11-01T00:00:00+02:00": 62232 - }, - "shippingConfirmation for subscriber 4": { - "2024-11-01T00:00:00+02:00": 2368 - }, - "firstTimeNewPrescription for subscriber 38": { - "2024-11-01T00:00:00+02:00": 170 - }, - "patientWelcome for subscriber 165": { - "2024-11-01T00:00:00+02:00": 7015 - }, - "orderConfirmation for subscriber 266": { - "2024-11-01T00:00:00+02:00": 180 - }, - "abandonedCheckout for subscriber 441": { - "2024-11-01T00:00:00+02:00": 327 - }, - "doctorMessage for subscriber 292": { - "2024-11-01T00:00:00+02:00": 9 - }, - "passwordReset for subscriber 165": { - "2024-11-01T00:00:00+02:00": 356 - }, - "patientWelcome for subscriber 217": { - "2024-11-01T00:00:00+02:00": 32 - }, - "shippingConfirmation for subscriber 53": { - "2024-11-01T00:00:00+02:00": 52 - }, - "passwordReset for subscriber 329": { - "2024-11-01T00:00:00+02:00": 10 - }, - "firstTimeNewPrescription for subscriber 523": { - "2024-11-01T00:00:00+02:00": 10 - }, - "passwordReset for subscriber 530": { - "2024-11-01T00:00:00+02:00": 14 - }, - "firstTimeOrderConfirmation for subscriber 93": { - "2024-11-01T00:00:00+02:00": 16 - }, - "passwordReset for subscriber 377": { - "2024-11-01T00:00:00+02:00": 7 - }, - "abandonedPostCheckout for subscriber 4": { - "2024-11-01T00:00:00+02:00": 149 - }, - "delivered for subscriber 542": { - "2024-11-01T00:00:00+02:00": 81 - }, - "orderReceipt for subscriber 63": { - "2024-11-01T00:00:00+02:00": 7254 - }, - "abandonedCheckout for subscriber 213": { - "2024-11-01T00:00:00+02:00": 6 - }, - "delivered for subscriber 604": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderReceipt for subscriber 256": { - "2024-11-01T00:00:00+02:00": 205 - }, - "newPrescription for subscriber 77": { - "2024-11-01T00:00:00+02:00": 59 - }, - "shippingUpdate for subscriber 37": { - "2024-11-01T00:00:00+02:00": 157949 - }, - "followUpPastDue for subscriber 329": { - "2024-11-01T00:00:00+02:00": 6 - }, - "orderConfirmation for subscriber 217": { - "2024-11-01T00:00:00+02:00": 6 - }, - "shippingConfirmation for subscriber 190": { - "2024-11-01T00:00:00+02:00": 18 - }, - "firstTimeShippingConfirmation for subscriber 143": { - "2024-11-01T00:00:00+02:00": 7523 - }, - "shippingUpdate for subscriber 530": { - "2024-11-01T00:00:00+02:00": 134 - }, - "outForDelivery for subscriber 523": { - "2024-11-01T00:00:00+02:00": 11 - }, - "orderConfirmation for subscriber 542": { - "2024-11-01T00:00:00+02:00": 58 - }, - "followUpDue for subscriber 378": { - "2024-11-01T00:00:00+02:00": 35 - }, - "Patient Welcome for subscriber 350": { - "2024-11-01T00:00:00+02:00": 151 - }, - "abandonedPostCheckout for subscriber 256": { - "2024-11-01T00:00:00+02:00": 24 - }, - "outForDelivery for subscriber 190": { - "2024-11-01T00:00:00+02:00": 16 - }, - "supportMessage for subscriber 406": { - "2024-11-01T00:00:00+02:00": 6 - }, - "orderReceipt for subscriber 266": { - "2024-11-01T00:00:00+02:00": 319 - }, - "doctorMessage for subscriber 377": { - "2024-11-01T00:00:00+02:00": 185 - }, - "followUpDue for subscriber 256": { - "2024-11-01T00:00:00+02:00": 124 - }, - "Out For Delivery": { - "2024-11-01T00:00:00+02:00": 1979 - }, - "supportMessage for subscriber 377": { - "2024-11-01T00:00:00+02:00": 45 - }, - "orderReceipt for subscriber 73": { - "2024-11-01T00:00:00+02:00": 16 - }, - "shippingConfirmation for subscriber 200": { - "2024-11-01T00:00:00+02:00": 426 - }, - "prescriptionChanged for subscriber 93": { - "2024-11-01T00:00:00+02:00": 10 - }, - "firstTimeOrderConfirmation for subscriber 73": { - "2024-11-01T00:00:00+02:00": 8 - }, - "shippingUpdate for subscriber 77": { - "2024-11-01T00:00:00+02:00": 2105 - }, - "followUpDue for subscriber 329": { - "2024-11-01T00:00:00+02:00": 11 - }, - "supportMessage for subscriber 349": { - "2024-11-01T00:00:00+02:00": 19 - }, - "shippingUpdate for subscriber 93": { - "2024-11-01T00:00:00+02:00": 161 - }, - "doctorMessage for subscriber 384": { - "2024-11-01T00:00:00+02:00": 28 - }, - "doctorMessage for subscriber 465": { - "2024-11-01T00:00:00+02:00": 45 - }, - "abandonedCheckout for subscriber 523": { - "2024-11-01T00:00:00+02:00": 305 - }, - "followUpDue for subscriber 37": { - "2024-11-01T00:00:00+02:00": 11739 - }, - "patientMagicLink for subscriber 441": { - "2024-11-01T00:00:00+02:00": 10 - }, - "shippingUpdate for subscriber 238": { - "2024-11-01T00:00:00+02:00": 160 - }, - "patientMagicLink for subscriber 329": { - "2024-11-01T00:00:00+02:00": 16 - }, - "shippingConfirmation for subscriber 111": { - "2024-11-01T00:00:00+02:00": 28 - }, - "followUpDue for subscriber 143": { - "2024-11-01T00:00:00+02:00": 18778 - }, - "Admin Patient Message": { - "2024-11-01T00:00:00+02:00": 47000 - }, - "New Waitlist Waterfall": { - "2024-11-01T00:00:00+02:00": 181 - }, - "patientWelcome for subscriber 9": { - "2024-11-01T00:00:00+02:00": 31 - }, - "orderReceipt for subscriber 428": { - "2024-11-01T00:00:00+02:00": 9 - }, - "newPrescription for subscriber 143": { - "2024-11-01T00:00:00+02:00": 19642 - }, - "abandonedCheckout for subscriber 165": { - "2024-11-01T00:00:00+02:00": 7801 - }, - "newPrescription for subscriber 161": { - "2024-11-01T00:00:00+02:00": 2312 - }, - "Support Message": { - "2024-11-01T00:00:00+02:00": 164 - }, - "delivered for subscriber 161": { - "2024-11-01T00:00:00+02:00": 5709 - }, - "orderConfirmation for subscriber 384": { - "2024-11-01T00:00:00+02:00": 9 - }, - "shippingConfirmation for subscriber 364": { - "2024-11-01T00:00:00+02:00": 43 - }, - "firstTimeNewPrescription for subscriber 84": { - "2024-11-01T00:00:00+02:00": 144 - }, - "orderConfirmation for subscriber 161": { - "2024-11-01T00:00:00+02:00": 4478 - }, - "Admin Dispute Due Soon": { - "2024-11-01T00:00:00+02:00": 619 - }, - "followUpDue for subscriber 377": { - "2024-11-01T00:00:00+02:00": 29 - }, - "firstTimeNewPrescription for subscriber 256": { - "2024-11-01T00:00:00+02:00": 92 - }, - "Treatment Active": { - "2024-11-01T00:00:00+02:00": 4441 - }, - "shippingUpdate for subscriber 406": { - "2024-11-01T00:00:00+02:00": 1195 - }, - "patientWelcome for subscriber 68": { - "2024-11-01T00:00:00+02:00": 13 - }, - "abandonedCheckout for subscriber 13": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderCanceled for subscriber 84": { - "2024-11-01T00:00:00+02:00": 158 - }, - "prescriptionChanged for subscriber 378": { - "2024-11-01T00:00:00+02:00": 31 - }, - "delivered for subscriber 200": { - "2024-11-01T00:00:00+02:00": 611 - }, - "delivered for subscriber 530": { - "2024-11-01T00:00:00+02:00": 15 - }, - "shippingConfirmation for subscriber 275": { - "2024-11-01T00:00:00+02:00": 93 - }, - "delivered for subscriber 37": { - "2024-11-01T00:00:00+02:00": 16443 - }, - "outForDelivery for subscriber 441": { - "2024-11-01T00:00:00+02:00": 43 - }, - "outForDelivery for subscriber 428": { - "2024-11-01T00:00:00+02:00": 6 - }, - "passwordReset for subscriber 143": { - "2024-11-01T00:00:00+02:00": 3017 - }, - "shippingConfirmation for subscriber 165": { - "2024-11-01T00:00:00+02:00": 2936 - }, - "Order Receipt for subscriber 350": { - "2024-11-01T00:00:00+02:00": 6 - }, - "firstTimeOrderConfirmation for subscriber 350": { - "2024-11-01T00:00:00+02:00": 11 - }, - "patientWelcome for subscriber 53": { - "2024-11-01T00:00:00+02:00": 13 - }, - "delivered for subscriber 329": { - "2024-11-01T00:00:00+02:00": 37 - }, - "patientMagicLink for subscriber 465": { - "2024-11-01T00:00:00+02:00": 17 - }, - "orderReceipt for subscriber 35": { - "2024-11-01T00:00:00+02:00": 13 - }, - "orderCanceled for subscriber 266": { - "2024-11-01T00:00:00+02:00": 27 - }, - "newPrescription for subscriber 68": { - "2024-11-01T00:00:00+02:00": 8 - }, - "outForDelivery for subscriber 275": { - "2024-11-01T00:00:00+02:00": 56 - }, - "abandonedCheckout for subscriber 428": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Doctor Message for subscriber 452": { - "2024-11-01T00:00:00+02:00": 17 - }, - "patientWelcome for subscriber 542": { - "2024-11-01T00:00:00+02:00": 224 - }, - "firstTimeShippingConfirmation for subscriber 38": { - "2024-11-01T00:00:00+02:00": 207 - }, - "doctorMessage for subscriber 68": { - "2024-11-01T00:00:00+02:00": 29 - }, - "patientWelcome for subscriber 522": { - "2024-11-01T00:00:00+02:00": 170 - }, - "firstTimeOrderConfirmation for subscriber 77": { - "2024-11-01T00:00:00+02:00": 103 - }, - "Doctor Message for subscriber 320": { - "2024-11-01T00:00:00+02:00": 103 - }, - "followUpPastDue for subscriber 238": { - "2024-11-01T00:00:00+02:00": 20 - }, - "followUpDue for subscriber 4": { - "2024-11-01T00:00:00+02:00": 1598 - }, - "abandonedCheckout for subscriber 73": { - "2024-11-01T00:00:00+02:00": 42 - }, - "firstTimeOrderConfirmation for subscriber 349": { - "2024-11-01T00:00:00+02:00": 21 - }, - "firstTimeNewPrescription for subscriber 266": { - "2024-11-01T00:00:00+02:00": 29 - }, - "firstTimeOrderConfirmation for subscriber 165": { - "2024-11-01T00:00:00+02:00": 2440 - }, - "supportMessage for subscriber 266": { - "2024-11-01T00:00:00+02:00": 87 - }, - "supportMessage for subscriber 63": { - "2024-11-01T00:00:00+02:00": 4478 - }, - "newPrescription for subscriber 266": { - "2024-11-01T00:00:00+02:00": 69 - }, - "outForDelivery for subscriber 266": { - "2024-11-01T00:00:00+02:00": 311 - }, - "orderReceipt for subscriber 121": { - "2024-11-01T00:00:00+02:00": 7 - }, - "supportMessage for subscriber 310": { - "2024-11-01T00:00:00+02:00": 11 - }, - "orderConfirmation for subscriber 406": { - "2024-11-01T00:00:00+02:00": 7 - }, - "patientWelcome for subscriber 329": { - "2024-11-01T00:00:00+02:00": 922 - }, - "outForDelivery for subscriber 530": { - "2024-11-01T00:00:00+02:00": 13 - }, - "followUpPastDue for subscriber 165": { - "2024-11-01T00:00:00+02:00": 2491 - }, - "doctorMessage for subscriber 53": { - "2024-11-01T00:00:00+02:00": 186 - }, - "newPrescription for subscriber 190": { - "2024-11-01T00:00:00+02:00": 17 - }, - "New Refill": { - "2024-11-01T00:00:00+02:00": 450 - }, - "shippingConfirmation for subscriber 406": { - "2024-11-01T00:00:00+02:00": 54 - }, - "passwordReset for subscriber 256": { - "2024-11-01T00:00:00+02:00": 36 - }, - "shippingUpdate for subscriber 190": { - "2024-11-01T00:00:00+02:00": 154 - }, - "doctorMessage for subscriber 150": { - "2024-11-01T00:00:00+02:00": 32 - }, - "abandonedPostCheckout for subscriber 542": { - "2024-11-01T00:00:00+02:00": 14 - }, - "outForDelivery for subscriber 465": { - "2024-11-01T00:00:00+02:00": 7 - }, - "Follow Up Past Due": { - "2024-11-01T00:00:00+02:00": 1477 - }, - "passwordReset for subscriber 441": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderConfirmation for subscriber 364": { - "2024-11-01T00:00:00+02:00": 31 - }, - "prescriptionChanged for subscriber 37": { - "2024-11-01T00:00:00+02:00": 446 - }, - "abandonedPostCheckout for subscriber 63": { - "2024-11-01T00:00:00+02:00": 531 - }, - "prescriptionChanged for subscriber 377": { - "2024-11-01T00:00:00+02:00": 54 - }, - "orderCanceled for subscriber 37": { - "2024-11-01T00:00:00+02:00": 1258 - }, - "supportMessage for subscriber 614": { - "2024-11-01T00:00:00+02:00": 31 - }, - "Admin Pharmacy Update": { - "2024-11-01T00:00:00+02:00": 60 - }, - "Shipping Update for subscriber 121": { - "2024-11-01T00:00:00+02:00": 35 - }, - "doctorMessage for subscriber 263": { - "2024-11-01T00:00:00+02:00": 119 - }, - "followUpPastDue for subscriber 275": { - "2024-11-01T00:00:00+02:00": 63 - }, - "shippingUpdate for subscriber 378": { - "2024-11-01T00:00:00+02:00": 268 - }, - "abandonedCheckout for subscriber 320": { - "2024-11-01T00:00:00+02:00": 354 - }, - "shippingUpdate for subscriber 465": { - "2024-11-01T00:00:00+02:00": 54 - }, - "shippingUpdate for subscriber 256": { - "2024-11-01T00:00:00+02:00": 2068 - }, - "abandonedCheckout for subscriber 256": { - "2024-11-01T00:00:00+02:00": 387 - }, - "supportMessage for subscriber 275": { - "2024-11-01T00:00:00+02:00": 9 - }, - "followUpPastDue for subscriber 63": { - "2024-11-01T00:00:00+02:00": 2476 - }, - "prescriptionChanged for subscriber 256": { - "2024-11-01T00:00:00+02:00": 30 - }, - "prescriptionChanged for subscriber 549": { - "2024-11-01T00:00:00+02:00": 10 - }, - "supportMessage for subscriber 68": { - "2024-11-01T00:00:00+02:00": 33 - }, - "orderReceipt for subscriber 255": { - "2024-11-01T00:00:00+02:00": 310 - }, - "followUpDue for subscriber 63": { - "2024-11-01T00:00:00+02:00": 3336 - }, - "abandonedCheckout for subscriber 364": { - "2024-11-01T00:00:00+02:00": 405 - }, - "abandonedCheckout for subscriber 465": { - "2024-11-01T00:00:00+02:00": 627 - }, - "shippingUpdate for subscriber 38": { - "2024-11-01T00:00:00+02:00": 21972 - }, - "followUpDue for subscriber 275": { - "2024-11-01T00:00:00+02:00": 71 - }, - "Abandoned Post Checkout for subscriber 320": { - "2024-11-01T00:00:00+02:00": 9 - }, - "orderConfirmation for subscriber 9": { - "2024-11-01T00:00:00+02:00": 8 - }, - "firstTimeShippingConfirmation for subscriber 238": { - "2024-11-01T00:00:00+02:00": 6 - }, - "doctorMessage for subscriber 143": { - "2024-11-01T00:00:00+02:00": 75094 - }, - "firstTimeShippingConfirmation for subscriber 349": { - "2024-11-01T00:00:00+02:00": 33 - }, - "Out For Delivery for subscriber 549": { - "2024-11-01T00:00:00+02:00": 7 - }, - "firstTimeShippingConfirmation for subscriber 320": { - "2024-11-01T00:00:00+02:00": 15 - }, - "patientWelcome for subscriber 604": { - "2024-11-01T00:00:00+02:00": 30 - }, - "followUpDue for subscriber 263": { - "2024-11-01T00:00:00+02:00": 36 - }, - "patientMagicLink for subscriber 406": { - "2024-11-01T00:00:00+02:00": 19 - }, - "newPrescription for subscriber 542": { - "2024-11-01T00:00:00+02:00": 28 - }, - "firstTimeShippingConfirmation for subscriber 256": { - "2024-11-01T00:00:00+02:00": 152 - }, - "firstTimeOrderConfirmation for subscriber 200": { - "2024-11-01T00:00:00+02:00": 256 - }, - "supportMessage for subscriber 190": { - "2024-11-01T00:00:00+02:00": 10 - }, - "firstTimeNewPrescription for subscriber 77": { - "2024-11-01T00:00:00+02:00": 12 - }, - "followUpDue for subscriber 542": { - "2024-11-01T00:00:00+02:00": 78 - }, - "outForDelivery for subscriber 53": { - "2024-11-01T00:00:00+02:00": 32 - }, - "patientWelcome for subscriber 465": { - "2024-11-01T00:00:00+02:00": 599 - }, - "patientMagicLink for subscriber 53": { - "2024-11-01T00:00:00+02:00": 12 - }, - "prescriptionChanged for subscriber 364": { - "2024-11-01T00:00:00+02:00": 52 - }, - "Out For Delivery for subscriber 350": { - "2024-11-01T00:00:00+02:00": 6 - }, - "abandonedCheckout for subscriber 263": { - "2024-11-01T00:00:00+02:00": 125 - }, - "patientMagicLink for subscriber 523": { - "2024-11-01T00:00:00+02:00": 10 - }, - "New Prescription for subscriber 73": { - "2024-11-01T00:00:00+02:00": 6 - }, - "followUpPastDue for subscriber 378": { - "2024-11-01T00:00:00+02:00": 22 - }, - "orderCanceled for subscriber 349": { - "2024-11-01T00:00:00+02:00": 10 - }, - "orderCanceled for subscriber 143": { - "2024-11-01T00:00:00+02:00": 3748 - }, - "abandonedCheckout for subscriber 349": { - "2024-11-01T00:00:00+02:00": 160 - }, - "Delivered for subscriber 320": { - "2024-11-01T00:00:00+02:00": 30 - }, - "firstTimeOrderConfirmation for subscriber 523": { - "2024-11-01T00:00:00+02:00": 48 - }, - "followUpDue for subscriber 77": { - "2024-11-01T00:00:00+02:00": 201 - }, - "firstTimeNewPrescription for subscriber 143": { - "2024-11-01T00:00:00+02:00": 5727 - }, - "abandonedCheckout for subscriber 415": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Prescription Changed for subscriber 165": { - "2024-11-01T00:00:00+02:00": 677 - }, - "outForDelivery for subscriber 378": { - "2024-11-01T00:00:00+02:00": 29 - }, - "orderConfirmation for subscriber 349": { - "2024-11-01T00:00:00+02:00": 17 - }, - "abandonedPostCheckout for subscriber 143": { - "2024-11-01T00:00:00+02:00": 217 - }, - "doctorMessage for subscriber 190": { - "2024-11-01T00:00:00+02:00": 53 - }, - "shippingUpdate for subscriber 551": { - "2024-11-01T00:00:00+02:00": 53 - }, - "outForDelivery for subscriber 329": { - "2024-11-01T00:00:00+02:00": 36 - }, - "followUpDue for subscriber 53": { - "2024-11-01T00:00:00+02:00": 74 - }, - "patientWelcome for subscriber 452": { - "2024-11-01T00:00:00+02:00": 24 - }, - "doctorMessage for subscriber 165": { - "2024-11-01T00:00:00+02:00": 11471 - }, - "shippingConfirmation for subscriber 93": { - "2024-11-01T00:00:00+02:00": 18 - }, - "delivered for subscriber 84": { - "2024-11-01T00:00:00+02:00": 1414 - }, - "shippingUpdate for subscriber 13": { - "2024-11-01T00:00:00+02:00": 46 - }, - "abandonedCheckout for subscriber 406": { - "2024-11-01T00:00:00+02:00": 182 - }, - "prescriptionChanged for subscriber 465": { - "2024-11-01T00:00:00+02:00": 6 - }, - "prescriptionChanged for subscriber 63": { - "2024-11-01T00:00:00+02:00": 83 - }, - "New Refill for subscriber 165": { - "2024-11-01T00:00:00+02:00": 707 - }, - "outForDelivery for subscriber 143": { - "2024-11-01T00:00:00+02:00": 17140 - }, - "passwordReset for subscriber 266": { - "2024-11-01T00:00:00+02:00": 95 - }, - "doctorMessage for subscriber 406": { - "2024-11-01T00:00:00+02:00": 231 - }, - "orderCanceled for subscriber 523": { - "2024-11-01T00:00:00+02:00": 15 - }, - "orderConfirmation for subscriber 523": { - "2024-11-01T00:00:00+02:00": 8 - }, - "firstTimeNewPrescription for subscriber 255": { - "2024-11-01T00:00:00+02:00": 7 - }, - "passwordReset for subscriber 275": { - "2024-11-01T00:00:00+02:00": 9 - }, - "First Time Shipping Confirmation for subscriber 614": { - "2024-11-01T00:00:00+02:00": 11 - }, - "orderConfirmation for subscriber 63": { - "2024-11-01T00:00:00+02:00": 3430 - }, - "abandonedCheckout for subscriber 38": { - "2024-11-01T00:00:00+02:00": 379 - }, - "delivered for subscriber 217": { - "2024-11-01T00:00:00+02:00": 11 - }, - "abandonedCheckout for subscriber 200": { - "2024-11-01T00:00:00+02:00": 782 - }, - "orderReceipt for subscriber 84": { - "2024-11-01T00:00:00+02:00": 1502 - }, - "shippingUpdate for subscriber 522": { - "2024-11-01T00:00:00+02:00": 17 - }, - "delivered for subscriber 428": { - "2024-11-01T00:00:00+02:00": 6 - }, - "orderReceipt for subscriber 465": { - "2024-11-01T00:00:00+02:00": 11 - }, - "supportMessage for subscriber 530": { - "2024-11-01T00:00:00+02:00": 35 - }, - "outForDelivery for subscriber 349": { - "2024-11-01T00:00:00+02:00": 32 - }, - "orderReceipt for subscriber 217": { - "2024-11-01T00:00:00+02:00": 11 - }, - "doctorMessage for subscriber 364": { - "2024-11-01T00:00:00+02:00": 362 - }, - "followUpPastDue for subscriber 37": { - "2024-11-01T00:00:00+02:00": 11015 - }, - "shippingConfirmation for subscriber 349": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Password Reset for subscriber 542": { - "2024-11-01T00:00:00+02:00": 20 - }, - "patientMagicLink for subscriber 200": { - "2024-11-01T00:00:00+02:00": 52 - }, - "firstTimeOrderConfirmation for subscriber 266": { - "2024-11-01T00:00:00+02:00": 154 - } - } - }, - "656b003c666d47dc7d25648c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9002 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9002 - }, - "dailyWorkoutNotification": { - "2024-11-01T00:00:00+02:00": 8950 - }, - "DayMessagesAuto": { - "2024-11-01T00:00:00+02:00": 52 - } - } - }, - "6448e3efe2067a03ba33cbb7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4431 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4431 - }, - "fcm-task-scheduled-msg-stage": { - "2024-11-01T00:00:00+02:00": 4431 - } - } - }, - "637daec62610c873786139a1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3821 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3821 - }, - "sales_tax_monthly_reminder": { - "2024-11-01T00:00:00+02:00": 154 - }, - "ACCOUNTING_FIRM_ASSIGNED_TO_CORPORATION": { - "2024-11-01T00:00:00+02:00": 32 - }, - "ACCOUNTING_FIRM_ADDED_TO_COMMENDA": { - "2024-11-01T00:00:00+02:00": 24 - }, - "USER_ADDED_TO_COMPANY": { - "2024-11-01T00:00:00+02:00": 32 - }, - "US_INCORPORATION_COMPLETION": { - "2024-11-01T00:00:00+02:00": 8 - }, - "BACKEND_NOTIFICATION": { - "2024-11-01T00:00:00+02:00": 1953 - }, - "US_INCORPORATION_FILING": { - "2024-11-01T00:00:00+02:00": 9 - }, - "THREADS_DIGEST_NOTIFICATION": { - "2024-11-01T00:00:00+02:00": 219 - }, - "REVIEW_COMPLIANCE_CALENDAR_MEETING": { - "2024-11-01T00:00:00+02:00": 1337 - }, - "GENERATED_SECURE_INFORMATION_REQUEST": { - "2024-11-01T00:00:00+02:00": 39 - } - } - }, - "64ef9990faeddba41ef3caae": { - "$overall": { - "2024-11-01T00:00:00+02:00": 669 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 669 - }, - "notifica-fatura-fechada": { - "2024-11-01T00:00:00+02:00": 121 - }, - "Notifica Proposta Pendente de Aprovação": { - "2024-11-01T00:00:00+02:00": 312 - }, - "Notifica transação efetivada": { - "2024-11-01T00:00:00+02:00": 236 - } - } - }, - "63b85858b775d8ef0ed805cb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22995 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22995 - }, - "Org Member Invitation": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Live Chat Assigned": { - "2024-11-01T00:00:00+02:00": 22975 - } - } - }, - "661541fa6df43c247a0a31f9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1234 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1234 - }, - "Task Assigned": { - "2024-11-01T00:00:00+02:00": 1033 - }, - "Thread Assigned": { - "2024-11-01T00:00:00+02:00": 201 - } - } - }, - "651d2708e1b82d64b37fb064": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1733 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1733 - }, - "Scheduled event report generated": { - "2024-11-01T00:00:00+02:00": 15 - }, - "Eunice Monitor": { - "2024-11-01T00:00:00+02:00": 1718 - } - } - }, - "650002893cc619d36e43a166": { - "$overall": { - "2024-11-01T00:00:00+02:00": 524 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 524 - }, - "push notification": { - "2024-11-01T00:00:00+02:00": 524 - } - } - }, - "67219003d36466abaeb1f995": { - "$overall": { - "2024-11-01T00:00:00+02:00": 396 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 396 - }, - "crm-notification": { - "2024-11-01T00:00:00+02:00": 396 - } - } - }, - "6634cbe4612e6f34a400b05e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 510 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 510 - }, - "Unknown reports": { - "2024-11-01T00:00:00+02:00": 102 - }, - "Asset Liked": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Request Documentation": { - "2024-11-01T00:00:00+02:00": 72 - }, - "View Updated": { - "2024-11-01T00:00:00+02:00": 329 - } - } - }, - "66ce471dcf609b1343289560": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16686 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16686 - }, - "welcome-workflow": { - "2024-11-01T00:00:00+02:00": 16193 - }, - "referral-reward": { - "2024-11-01T00:00:00+02:00": 493 - } - } - }, - "6321e40f1a3ff48f5712daa8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26750 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26750 - }, - "order-status-change-alert": { - "2024-11-01T00:00:00+02:00": 26750 - } - } - }, - "64b703eb90b5785d4734577a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 661 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 661 - }, - "Order - Approval Required - Reseller": { - "2024-11-01T00:00:00+02:00": 67 - }, - "Order - failed": { - "2024-11-01T00:00:00+02:00": 72 - }, - "Helpdesk - Unmapped organization": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Order - New organization order": { - "2024-11-01T00:00:00+02:00": 29 - }, - "Provisioning - Reseller User Welcome Email": { - "2024-11-01T00:00:00+02:00": 170 - }, - "Order - Rejected": { - "2024-11-01T00:00:00+02:00": 15 - }, - "License - License-removed-in-app": { - "2024-11-01T00:00:00+02:00": 36 - }, - "Order - Completed": { - "2024-11-01T00:00:00+02:00": 68 - }, - "Licenses - License-assigned-in-app": { - "2024-11-01T00:00:00+02:00": 16 - }, - "Users - Organization User Welcome Email": { - "2024-11-01T00:00:00+02:00": 164 - } - } - }, - "672e2335a197476669200759": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10753 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10753 - }, - "task-assignment": { - "2024-11-01T00:00:00+02:00": 481 - }, - "org-user-digest": { - "2024-11-01T00:00:00+02:00": 10270 - } - } - }, - "636975131fbb836889d6f696": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6804 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6804 - }, - "Subscription Receipt (post-booking)": { - "2024-11-01T00:00:00+02:00": 462 - }, - "SMS": { - "2024-11-01T00:00:00+02:00": 47 - }, - "Subscription Price Change": { - "2024-11-01T00:00:00+02:00": 197 - }, - "(Chat-API) Send SMS from Support": { - "2024-11-01T00:00:00+02:00": 1242 - }, - "Send SMS to Student": { - "2024-11-01T00:00:00+02:00": 1664 - }, - "Send SMS to Coach": { - "2024-11-01T00:00:00+02:00": 2162 - }, - "Subscription Canceled": { - "2024-11-01T00:00:00+02:00": 320 - }, - "emailReceipt (post-booking)": { - "2024-11-01T00:00:00+02:00": 702 - } - } - }, - "66f0dd46cf609b13436885f5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 411 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 411 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 411 - } - } - }, - "64eda93c14b8a3ace6f4c5e9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12665 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12665 - }, - "Offer Rejected": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Offer Accepted": { - "2024-11-01T00:00:00+02:00": 218 - }, - "Project Photo Added": { - "2024-11-01T00:00:00+02:00": 9686 - }, - "Task Created": { - "2024-11-01T00:00:00+02:00": 161 - }, - "Offer Deadline": { - "2024-11-01T00:00:00+02:00": 24 - }, - "Create new project post": { - "2024-11-01T00:00:00+02:00": 194 - }, - "Task Overdue": { - "2024-11-01T00:00:00+02:00": 221 - }, - "Task Photo Added": { - "2024-11-01T00:00:00+02:00": 1603 - }, - "Bills Created": { - "2024-11-01T00:00:00+02:00": 448 - }, - "absence approved": { - "2024-11-01T00:00:00+02:00": 6 - }, - "Director Report Review": { - "2024-11-01T00:00:00+02:00": 77 - } - } - }, - "671dcbd5fb21db27364e8179": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1339 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1339 - }, - "in-app-notification-workflow": { - "2024-11-01T00:00:00+02:00": 1338 - } - } - }, - "65453e2c44cca773bdf1cdd7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 552 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 552 - }, - "Account Activation": { - "2024-11-01T00:00:00+02:00": 552 - } - } - }, - "647a49083a4ec8a5997fb67c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 680 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 680 - }, - "AddUserAdmin": { - "2024-11-01T00:00:00+02:00": 259 - }, - "violatornotification": { - "2024-11-01T00:00:00+02:00": 11 - }, - "TransporterDriver": { - "2024-11-01T00:00:00+02:00": 160 - }, - "AddUser": { - "2024-11-01T00:00:00+02:00": 250 - } - } - }, - "660b31f5b551758561fb037c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 383436 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 383436 - }, - "requestlist-actorsaddedtoitem-v1": { - "2024-11-01T00:00:00+02:00": 5505 - }, - "requestlist-duedatereminders-v1": { - "2024-11-01T00:00:00+02:00": 377931 - } - } - }, - "65b03e6d7facd2ac9be61dc4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1654 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1654 - }, - "Settled": { - "2024-11-01T00:00:00+02:00": 233 - }, - "New order": { - "2024-11-01T00:00:00+02:00": 348 - }, - "Deal confirmation": { - "2024-11-01T00:00:00+02:00": 21 - }, - "Filled": { - "2024-11-01T00:00:00+02:00": 361 - }, - "Statement report": { - "2024-11-01T00:00:00+02:00": 125 - }, - "Assigned": { - "2024-11-01T00:00:00+02:00": 314 - }, - "Booked": { - "2024-11-01T00:00:00+02:00": 242 - } - } - }, - "63eaaa4dd1a5554c97db1b86": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3065 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3065 - }, - "Email Notification": { - "2024-11-01T00:00:00+02:00": 3054 - }, - "Forgot Password": { - "2024-11-01T00:00:00+02:00": 7 - } - } - }, - "6685216144e8f8b477105e38": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8234 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8234 - }, - "TATA GCM Push": { - "2024-11-01T00:00:00+02:00": 8233 - } - } - }, - "67444c602c32fe389fd89f54": { - "$overall": { - "2024-11-01T00:00:00+02:00": 731 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 731 - }, - "CampaignKeywordsBelowMinBid": { - "2024-11-01T00:00:00+02:00": 225 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 28 - }, - "CampaignProductsStopped": { - "2024-11-01T00:00:00+02:00": 313 - }, - "CampaignCategoriesBelowMinBid": { - "2024-11-01T00:00:00+02:00": 145 - }, - "AdvertiserBalanceLow": { - "2024-11-01T00:00:00+02:00": 20 - } - } - }, - "66cedf34cf609b134361bfa7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17 - } - } - }, - "63ff64e6f591ea2e097d64bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3598 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3598 - }, - "[ADMIN] Direct Debit payment collection succeeded": { - "2024-11-01T00:00:00+02:00": 143 - }, - "[ADMIN] Utility Quote pricing failed": { - "2024-11-01T00:00:00+02:00": 348 - }, - "[BROKER] Quote CSV prepared": { - "2024-11-01T00:00:00+02:00": 801 - }, - "[ADMIN] Direct Debit payment collection upcoming": { - "2024-11-01T00:00:00+02:00": 154 - }, - "[ADMIN] User created": { - "2024-11-01T00:00:00+02:00": 91 - }, - "[USER] Contract start reminder": { - "2024-11-01T00:00:00+02:00": 110 - }, - "[ADMIN] User onboarding complete": { - "2024-11-01T00:00:00+02:00": 8 - }, - "[ADMIN] Account created": { - "2024-11-01T00:00:00+02:00": 316 - }, - "[USER] Site contract created": { - "2024-11-01T00:00:00+02:00": 111 - }, - "[ADMIN] Direct Debit mandate created": { - "2024-11-01T00:00:00+02:00": 52 - }, - "[Admin] Site contract created": { - "2024-11-01T00:00:00+02:00": 218 - }, - "[USER] Invoice Batch Released": { - "2024-11-01T00:00:00+02:00": 450 - }, - "[USER] Direct Debit mandate created": { - "2024-11-01T00:00:00+02:00": 47 - }, - "[USER] Direct Debit payment collection upcoming": { - "2024-11-01T00:00:00+02:00": 133 - }, - "[ADMIN] Site created": { - "2024-11-01T00:00:00+02:00": 282 - }, - "[ADMIN] Company created": { - "2024-11-01T00:00:00+02:00": 321 - } - } - }, - "6641cac9c4df36a9648c8dd5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8531 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8531 - }, - "Statusänderung \"Abgelehnt/Archiv\"": { - "2024-11-01T00:00:00+02:00": 57 - }, - "Anfrage-Archivierung bei Inaktivität": { - "2024-11-01T00:00:00+02:00": 161 - }, - "E-Mail Adresse bestätigen": { - "2024-11-01T00:00:00+02:00": 533 - }, - "Neue Nachricht": { - "2024-11-01T00:00:00+02:00": 1468 - }, - "Termin abgesagt": { - "2024-11-01T00:00:00+02:00": 40 - }, - "Terminoption erhalten": { - "2024-11-01T00:00:00+02:00": 860 - }, - "Passwort zurücksetzen": { - "2024-11-01T00:00:00+02:00": 136 - }, - "Anfrage versendet": { - "2024-11-01T00:00:00+02:00": 508 - }, - "Automatisch Archivierung von inaktiven Anfragen": { - "2024-11-01T00:00:00+02:00": 239 - }, - "Termin bestätigt": { - "2024-11-01T00:00:00+02:00": 273 - }, - "Statusänderung \"Warteliste\"": { - "2024-11-01T00:00:00+02:00": 173 - }, - "Begrüßungsnachricht": { - "2024-11-01T00:00:00+02:00": 505 - }, - "Statusänderung \"Archiv\"": { - "2024-11-01T00:00:00+02:00": 75 - }, - "Neue Therapieanfrage": { - "2024-11-01T00:00:00+02:00": 927 - }, - "Terminübersicht für den Tag": { - "2024-11-01T00:00:00+02:00": 99 - }, - "Statusänderung \"Erstgespräch\"": { - "2024-11-01T00:00:00+02:00": 251 - }, - "Anfrageaktualität und -bedarf bestätigen": { - "2024-11-01T00:00:00+02:00": 1788 - }, - "Statusänderung \"In Therapie\"": { - "2024-11-01T00:00:00+02:00": 89 - }, - "Anfrage von Hilfesuchenden zurückgezogen": { - "2024-11-01T00:00:00+02:00": 77 - }, - "Erwähnung im Kommentar": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Erinnerung an Termin (einen Tag vorher)": { - "2024-11-01T00:00:00+02:00": 243 - }, - "Termin von allen abgelehnt": { - "2024-11-01T00:00:00+02:00": 16 - } - } - }, - "641c3bb95d9af70da93f09a9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1550 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1550 - }, - "trip-completed": { - "2024-11-01T00:00:00+02:00": 201 - }, - "trip-operational-note": { - "2024-11-01T00:00:00+02:00": 99 - }, - "trip-cancelled": { - "2024-11-01T00:00:00+02:00": 15 - }, - "trip-booked": { - "2024-11-01T00:00:00+02:00": 94 - }, - "trip-eta-update": { - "2024-11-01T00:00:00+02:00": 100 - }, - "trip-driver-update": { - "2024-11-01T00:00:00+02:00": 630 - }, - "trip-driver-assessment": { - "2024-11-01T00:00:00+02:00": 407 - } - } - }, - "63c1debfe84f99fee270acf7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 499 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 499 - }, - "link-session-inserted": { - "2024-11-01T00:00:00+02:00": 143 - }, - "message-inserted": { - "2024-11-01T00:00:00+02:00": 24 - }, - "room-joined": { - "2024-11-01T00:00:00+02:00": 17 - }, - "link-listen-inserted": { - "2024-11-01T00:00:00+02:00": 231 - }, - "showcase-inserted": { - "2024-11-01T00:00:00+02:00": 13 - }, - "room-track-inserted": { - "2024-11-01T00:00:00+02:00": 10 - }, - "room-track-comment-inserted": { - "2024-11-01T00:00:00+02:00": 45 - }, - "unlock-inserted": { - "2024-11-01T00:00:00+02:00": 11 - } - } - }, - "653f9eeac93cc0129acf4bcb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34459 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34459 - }, - "Group Invite: Email": { - "2024-11-01T00:00:00+02:00": 2470 - }, - "Group Invite: Push": { - "2024-11-01T00:00:00+02:00": 1155 - }, - "Playlist: New song added": { - "2024-11-01T00:00:00+02:00": 22430 - }, - "Playlist: Invite": { - "2024-11-01T00:00:00+02:00": 2079 - }, - "Group Invite: In-app": { - "2024-11-01T00:00:00+02:00": 1188 - }, - "Playlist: User joined": { - "2024-11-01T00:00:00+02:00": 4791 - }, - "Playlist: Song added": { - "2024-11-01T00:00:00+02:00": 346 - } - } - }, - "651ea1381df1b46454f21192": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2005 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2005 - }, - "Disbursal Auto Mail": { - "2024-11-01T00:00:00+02:00": 686 - }, - "Interested Auto Mail": { - "2024-11-01T00:00:00+02:00": 118 - }, - "Reminder Mail": { - "2024-11-01T00:00:00+02:00": 112 - }, - "NOC Mail": { - "2024-11-01T00:00:00+02:00": 27 - }, - "Settlement Mail": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Loan Approval and Sanction Letter send": { - "2024-11-01T00:00:00+02:00": 870 - }, - "Loan closed Mail": { - "2024-11-01T00:00:00+02:00": 17 - }, - "Rejection Mail": { - "2024-11-01T00:00:00+02:00": 162 - } - } - }, - "636044f61fbb8368897eadbc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 123307 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 123307 - }, - "Target Reward: 75% Progress": { - "2024-11-01T00:00:00+02:00": 2641 - }, - "Target Rewards: 100% Progress": { - "2024-11-01T00:00:00+02:00": 2372 - }, - "BackupCodesRegen": { - "2024-11-01T00:00:00+02:00": 60 - }, - "Target Reward: 50% Progress": { - "2024-11-01T00:00:00+02:00": 2699 - }, - "StarChefNotification": { - "2024-11-01T00:00:00+02:00": 50801 - }, - "3090/4080ReactivationNov-2024": { - "2024-11-01T00:00:00+02:00": 14153 - }, - "NotStarChef": { - "2024-11-01T00:00:00+02:00": 17 - }, - "VenmoReleaseUSA": { - "2024-11-01T00:00:00+02:00": 5886 - }, - "BackupCodesViewed": { - "2024-11-01T00:00:00+02:00": 655 - }, - "PayPalAccountLink": { - "2024-11-01T00:00:00+02:00": 1190 - }, - "EarningThresholdSurveyNov2024": { - "2024-11-01T00:00:00+02:00": 8807 - }, - "EsimatedEarningsBlastOct2024": { - "2024-11-01T00:00:00+02:00": 24387 - }, - "PasskeyRemovedLast": { - "2024-11-01T00:00:00+02:00": 24 - }, - "Target Reward: 25% Progress": { - "2024-11-01T00:00:00+02:00": 2095 - }, - "PasskeyAdded": { - "2024-11-01T00:00:00+02:00": 533 - }, - "GoogleAccountLink": { - "2024-11-01T00:00:00+02:00": 300 - }, - "SatisfactionSurveyNov-2024": { - "2024-11-01T00:00:00+02:00": 6682 - } - } - }, - "64f09213faeddba41e0137d9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1759 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1759 - }, - "Enrolment form submitted": { - "2024-11-01T00:00:00+02:00": 233 - }, - "Profile completion reminder": { - "2024-11-01T00:00:00+02:00": 127 - }, - "Setup Password": { - "2024-11-01T00:00:00+02:00": 11 - }, - "Email Verification": { - "2024-11-01T00:00:00+02:00": 56 - }, - "Welcome email": { - "2024-11-01T00:00:00+02:00": 91 - }, - "Password Reset": { - "2024-11-01T00:00:00+02:00": 9 - }, - "Query": { - "2024-11-01T00:00:00+02:00": 290 - }, - "Learner reallocate course": { - "2024-11-01T00:00:00+02:00": 13 - }, - "Activation Reminder": { - "2024-11-01T00:00:00+02:00": 104 - }, - "Class rebooking": { - "2024-11-01T00:00:00+02:00": 25 - }, - "Staff Cancellation Enrolment Notification to Learner": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Referral Email": { - "2024-11-01T00:00:00+02:00": 61 - }, - "Notification to Inform Referrer": { - "2024-11-01T00:00:00+02:00": 49 - }, - "Learner self enrolled - No account": { - "2024-11-01T00:00:00+02:00": 166 - }, - "Learner Query Response Notification": { - "2024-11-01T00:00:00+02:00": 193 - }, - "Testing API call": { - "2024-11-01T00:00:00+02:00": 59 - }, - "Notification to Learner (has account) added in admin portal": { - "2024-11-01T00:00:00+02:00": 72 - }, - "Course Enrollment Invitation": { - "2024-11-01T00:00:00+02:00": 139 - }, - "Class booking confirmation": { - "2024-11-01T00:00:00+02:00": 36 - } - } - }, - "66d536cdcf609b1343d0e115": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1273 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1273 - }, - "maintenance_created_from_inspection": { - "2024-11-01T00:00:00+02:00": 63 - }, - "new_tenant_expense": { - "2024-11-01T00:00:00+02:00": 6 - }, - "private_viewing_reminder_non_user": { - "2024-11-01T00:00:00+02:00": 18 - }, - "unregistered_user_private_viewing_cancelled": { - "2024-11-01T00:00:00+02:00": 25 - }, - "new_tenancy_request_property_manager_variant": { - "2024-11-01T00:00:00+02:00": 144 - }, - "change_of_tenant_application_submitted": { - "2024-11-01T00:00:00+02:00": 44 - }, - "tenancy_extension_added": { - "2024-11-01T00:00:00+02:00": 10 - }, - "rent_payment_overdue": { - "2024-11-01T00:00:00+02:00": 130 - }, - "tenancy_in_arrears": { - "2024-11-01T00:00:00+02:00": 9 - }, - "renter_tenancy_confirmed_property_management_variant": { - "2024-11-01T00:00:00+02:00": 18 - }, - "private_viewing_confirmed": { - "2024-11-01T00:00:00+02:00": 32 - }, - "close_reminder": { - "2024-11-01T00:00:00+02:00": 24 - }, - "reminder_to_confirm": { - "2024-11-01T00:00:00+02:00": 29 - }, - "change_of_tenant_application_ready_to_sign": { - "2024-11-01T00:00:00+02:00": 117 - }, - "tenancy_request_accepted": { - "2024-11-01T00:00:00+02:00": 19 - }, - "rental_application_unsuccessful": { - "2024-11-01T00:00:00+02:00": 16 - }, - "payment_remittance": { - "2024-11-01T00:00:00+02:00": 9 - }, - "expense_updated_for_uninvited_tenants": { - "2024-11-01T00:00:00+02:00": 6 - }, - "new_enquiry_message": { - "2024-11-01T00:00:00+02:00": 10 - }, - "confirmation_instructions": { - "2024-11-01T00:00:00+02:00": 31 - }, - "awaiting_sign_offs": { - "2024-11-01T00:00:00+02:00": 32 - }, - "account_summary": { - "2024-11-01T00:00:00+02:00": 81 - }, - "open_home_reminder": { - "2024-11-01T00:00:00+02:00": 6 - }, - "tenancy_services_bond_filing": { - "2024-11-01T00:00:00+02:00": 14 - }, - "bond_payment_due": { - "2024-11-01T00:00:00+02:00": 48 - }, - "new_rental_application": { - "2024-11-01T00:00:00+02:00": 21 - }, - "time_confirmed_with_message": { - "2024-11-01T00:00:00+02:00": 6 - }, - "rent_split_set": { - "2024-11-01T00:00:00+02:00": 18 - }, - "change_of_tenant_application_tenancy_services": { - "2024-11-01T00:00:00+02:00": 10 - }, - "listing_approved": { - "2024-11-01T00:00:00+02:00": 38 - }, - "landlord_registration_submitted": { - "2024-11-01T00:00:00+02:00": 7 - }, - "user_edited_notice": { - "2024-11-01T00:00:00+02:00": 21 - }, - "renter_tenancy_confirmed": { - "2024-11-01T00:00:00+02:00": 10 - }, - "migrate_invite_accepted": { - "2024-11-01T00:00:00+02:00": 32 - }, - "rental_application_shortlisted": { - "2024-11-01T00:00:00+02:00": 13 - }, - "updated_tenant_expense": { - "2024-11-01T00:00:00+02:00": 18 - }, - "tenancy_variation_added": { - "2024-11-01T00:00:00+02:00": 78 - } - } - }, - "655f20b2afd4055e0df6ae1d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1619 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1619 - }, - "Welcome Email": { - "2024-11-01T00:00:00+02:00": 46 - }, - "Scheduled Dashboard": { - "2024-11-01T00:00:00+02:00": 558 - }, - "alert": { - "2024-11-01T00:00:00+02:00": 915 - }, - "Create Dashboard": { - "2024-11-01T00:00:00+02:00": 100 - } - } - }, - "64c94e80fc11bce407229550": { - "$overall": { - "2024-11-01T00:00:00+02:00": 37894 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 37894 - }, - "Notificação de Potencial Clientes": { - "2024-11-01T00:00:00+02:00": 22 - }, - "Query Success": { - "2024-11-01T00:00:00+02:00": 37872 - } - } - }, - "6721fd6e30d1c09960214146": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1319 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1319 - }, - "Competition Start": { - "2024-11-01T00:00:00+02:00": 259 - }, - "Transaction Event": { - "2024-11-01T00:00:00+02:00": 82 - }, - "Battle Request": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Battle Request Accepted": { - "2024-11-01T00:00:00+02:00": 18 - }, - "Battle Result": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Battle Event": { - "2024-11-01T00:00:00+02:00": 131 - }, - "Competition Event": { - "2024-11-01T00:00:00+02:00": 302 - }, - "New Achievements": { - "2024-11-01T00:00:00+02:00": 476 - } - } - }, - "651aea5133924ee69071720d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36120 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36120 - }, - "Invitacion Nuevo Asesor": { - "2024-11-01T00:00:00+02:00": 68 - }, - "Quejas": { - "2024-11-01T00:00:00+02:00": 52 - }, - "Agente Suspendido MB": { - "2024-11-01T00:00:00+02:00": 169 - }, - "Nuevo inicio de sesión": { - "2024-11-01T00:00:00+02:00": 2716 - }, - "Recordatorio consulta pendiente": { - "2024-11-01T00:00:00+02:00": 3982 - }, - "Agente suspendido": { - "2024-11-01T00:00:00+02:00": 79 - }, - "Nuevo postulante para tu inmobiliaria": { - "2024-11-01T00:00:00+02:00": 35 - }, - "Nuevo postulante": { - "2024-11-01T00:00:00+02:00": 10 - }, - "Bienvenida Asesor": { - "2024-11-01T00:00:00+02:00": 58 - }, - "Correo búsqueda cerrada": { - "2024-11-01T00:00:00+02:00": 2318 - }, - "accion requerida": { - "2024-11-01T00:00:00+02:00": 125 - }, - "Login": { - "2024-11-01T00:00:00+02:00": 358 - }, - "Nuevo lead - cliente": { - "2024-11-01T00:00:00+02:00": 1893 - }, - "traer referido al desayuno": { - "2024-11-01T00:00:00+02:00": 8 - }, - "Nuevo lead": { - "2024-11-01T00:00:00+02:00": 11127 - }, - "Broker asignado a cliente": { - "2024-11-01T00:00:00+02:00": 9369 - }, - "Agente Reactivado MB": { - "2024-11-01T00:00:00+02:00": 155 - }, - "Correo baja de precio": { - "2024-11-01T00:00:00+02:00": 2357 - }, - "Visita solicitada": { - "2024-11-01T00:00:00+02:00": 306 - }, - "Envío de Contrato": { - "2024-11-01T00:00:00+02:00": 808 - }, - "Nuevo Comentario Legal - Equipo": { - "2024-11-01T00:00:00+02:00": 19 - }, - "Nuevo referido": { - "2024-11-01T00:00:00+02:00": 12 - }, - "Agente Reactivado": { - "2024-11-01T00:00:00+02:00": 70 - } - } - }, - "65fbe3a58453b14f2f670e14": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3303 - }, - "undefined": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3303 - }, - "Listing Detail Updates": { - "2024-11-01T00:00:00+02:00": 2430 - }, - "Agent Signup Updates": { - "2024-11-01T00:00:00+02:00": 36 - }, - "Transaction Updates": { - "2024-11-01T00:00:00+02:00": 90 - }, - "Deal Status Updates": { - "2024-11-01T00:00:00+02:00": 576 - }, - "Deal Status Slack Updates": { - "2024-11-01T00:00:00+02:00": 32 - }, - "Listing Change Slack Update": { - "2024-11-01T00:00:00+02:00": 135 - } - } - } - }, - "B. Process Workflow Step - [Triggers] [Total Events]": { - "$overall": { - "2024-11-01T00:00:00+02:00": 79061891 - }, - "64c78706e994a8dc20cdb2e1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 452 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 226 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 226 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 226 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 226 - } - } - }, - "65c1f64ef94456f501d98f49": { - "$overall": { - "2024-11-01T00:00:00+02:00": 329529 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 164765 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 164765 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 164764 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 164764 - } - } - }, - "64c3f5e72df653eabdc06c32": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10869 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5434 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5434 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5435 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5435 - } - } - }, - "65887da2f14b6f3ef002d584": { - "$overall": { - "2024-11-01T00:00:00+02:00": 446 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 223 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 223 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 223 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 223 - } - } - }, - "65f9e3b139829e6c76826cb5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1327408 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 175426 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 175426 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 721483 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 721483 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 215248 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 215248 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 215251 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 215251 - } - } - }, - "63b6208e711db04e8129df6b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10540 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2430 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2430 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4055 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4055 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4055 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4055 - } - } - }, - "65af718b8e557ef0af46f7c0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7082 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3206 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3206 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3223 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3223 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 504 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 504 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 149 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 149 - } - } - }, - "6423f39a2586c27b11d98d84": { - "$overall": { - "2024-11-01T00:00:00+02:00": 147345 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 55953 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 55953 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44787 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 44787 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 19244 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 19244 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27361 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 27361 - } - } - }, - "65b03e6d7facd2ac9be61dc4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3308 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1654 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1654 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1500 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1500 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 154 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 154 - } - } - }, - "6721fd6e30d1c09960214146": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4508 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1319 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1319 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 99 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 99 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 653 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 653 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1297 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1297 - } - }, - "custom": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1140 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1140 - } - } - }, - "6523dfc76b6e9b692e5b79d6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2506 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1253 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1253 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1253 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1253 - } - } - }, - "6569c906478e147113dd7a9e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 46 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 23 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 23 - } - } - }, - "63a988938099fc7fe0b9f12d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1329 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 644 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 644 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 685 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 685 - } - } - }, - "65e0b87e3a2387ff89a82beb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1516 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 758 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 758 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 501 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 501 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 257 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 257 - } - } - }, - "670e0dc18b5274f5475e4b73": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6975 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5300 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5300 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1675 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1675 - } - } - }, - "64dbea7b28a0b10b3b77239e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7306 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3653 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3653 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3653 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3653 - } - } - }, - "63fbb0118920eed9471fa1b2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22500 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 138 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 138 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22168 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22168 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 194 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 194 - } - } - }, - "64d37f84045bf0282da7b498": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9805 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4098 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4098 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3151 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3151 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1145 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1145 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 399 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 399 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1012 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1012 - } - } - }, - "648079c03a4ec8a5999d3eb1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1160 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 580 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 580 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 580 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 580 - } - } - }, - "66621bc53a586fac83886829": { - "$overall": { - "2024-11-01T00:00:00+02:00": 41907 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13969 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13969 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13969 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13969 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13969 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13969 - } - } - }, - "64e46fc009b229a7c5c1735c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 68699 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15444 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15444 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34338 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 34338 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18917 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18917 - } - } - }, - "64919f0eb5f1ae122b876762": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4894 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2447 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2447 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2447 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2447 - } - } - }, - "644a988e631887e5f000dae6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14680 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7340 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7340 - } - } - }, - "65aad6098e557ef0afa191c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 186 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 27 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 39 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 39 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 40 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 40 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 40 - } - } - }, - "65fa38148453b14f2f5aeea2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 872 - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 127 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 127 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 201 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 201 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 276 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 276 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 268 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 268 - } - } - }, - "63b4a3edc2c62a5b4b374cc6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1943 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 929 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 929 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 755 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 755 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 79 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 79 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 180 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 180 - } - } - }, - "66b36aa7aa4218d12678f006": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1141 - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 200 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 200 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 309 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 309 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 324 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 324 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 204 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 204 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 104 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 104 - } - } - }, - "64d10e4220f4008b5df1e37a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4674 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 647 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 647 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 157 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 157 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3870 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3870 - } - } - }, - "650b644a42707458fe431762": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2742 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1554 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1554 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1163 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1163 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 25 - } - } - }, - "656f1ea74663d4c5f711bce4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 900 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 334 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 334 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 283 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 283 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 283 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 283 - } - } - }, - "66cedf34cf609b134361bfa7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 59 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 27 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 12 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4 - } - } - }, - "65129c6a87135ffdc368e7a3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3199 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 999 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 999 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1031 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1031 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 212 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 212 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 955 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 955 - } - } - }, - "64092d0773a1721d0476baa9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2508 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 170 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 170 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 816 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 816 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1122 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1122 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 113 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 113 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 281 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 281 - } - } - }, - "671faf6b285bc655d85f6e65": { - "$overall": { - "2024-11-01T00:00:00+02:00": 199 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 88 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 88 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 100 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 100 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11 - } - } - }, - "6639eeff0c0215ee78621015": { - "$overall": { - "2024-11-01T00:00:00+02:00": 64145 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 32072 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 32072 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 31840 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 31840 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 233 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 233 - } - } - }, - "628f82923c3e82001812b7cf": { - "$overall": { - "2024-11-01T00:00:00+02:00": 400 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 200 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 200 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 200 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 200 - } - } - }, - "65cb7ceb619fe4f9cf882165": { - "$overall": { - "2024-11-01T00:00:00+02:00": 69041 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34517 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 34517 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34514 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 34514 - } - } - }, - "654e95e71b0a1377ffe4f755": { - "$overall": { - "2024-11-01T00:00:00+02:00": 133751 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 66877 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 66877 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 66874 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 66874 - } - } - }, - "651fa9f835fbd6284965127c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26268 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12216 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 12216 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14052 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14052 - } - } - }, - "646f08088b0b51ed17340c31": { - "$overall": { - "2024-11-01T00:00:00+02:00": 43754 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14953 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14953 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14789 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14789 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14012 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14012 - } - } - }, - "651add0cb03ff038cedc7448": { - "$overall": { - "2024-11-01T00:00:00+02:00": 715837 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 357920 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 357920 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 357913 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 357913 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4 - } - } - }, - "638a3301ed1c4c44d2a58839": { - "$overall": { - "2024-11-01T00:00:00+02:00": 633121 - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 208853 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 208853 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 212134 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 212134 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 212134 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 212134 - } - } - }, - "667d2415de5890bc6c29b3cc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 19457 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6982 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6982 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6894 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6894 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5581 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5581 - } - } - }, - "6684fd53e40a50735b55a981": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3508 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1745 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1745 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1745 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1745 - } - } - }, - "6361ae479e04bb11b51b9401": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9752 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1285 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1285 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3588 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3588 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 420 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 420 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4024 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4024 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 435 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 435 - } - } - }, - "638241fa15685362a30e0365": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1431 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 477 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 477 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 477 - } - } - }, - "630ca7b800f7dbd3faf2d726": { - "$overall": { - "2024-11-01T00:00:00+02:00": 101127 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 94553 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 94553 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3972 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3972 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2602 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2602 - } - } - }, - "671f768afb21db27362e8d5f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 51696 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26849 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 26849 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24847 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 24847 - } - } - }, - "64c7be962df653eabd0a53dd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2949 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 983 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 983 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 983 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 983 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 983 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 983 - } - } - }, - "66432c55c4df36a964927b2c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 154327 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 76937 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 76937 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 76919 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 76919 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 457 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 457 - } - } - }, - "64ee088296eacf2243b8b25b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9927 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3258 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3258 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3656 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3656 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3004 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3004 - } - } - }, - "6501cc0935286a5ea69aa722": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2876 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1438 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1438 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1438 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1438 - } - } - }, - "65ce436d99b1dce753411d4a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2151 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 133 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 133 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 136 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 136 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 941 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 941 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 941 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 941 - } - } - }, - "6447d7ccf2e1143129042903": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11245 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5619 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5619 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2487 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2487 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1068 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1068 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2071 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2071 - } - } - }, - "637b2240c58b301920b2f70c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 157817 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40967 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 40967 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 38950 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 38950 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 38950 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 38950 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 38950 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 38950 - } - } - }, - "655f20b2afd4055e0df6ae1d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2981 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1619 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1619 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 704 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 704 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 658 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 658 - } - } - }, - "644c1877631887e5f006a54f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3756 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1252 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1252 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1252 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1252 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1252 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1252 - } - } - }, - "62f93267cd5afb6ad39b12b1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 43968 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21984 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 21984 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21984 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 21984 - } - } - }, - "6687b6fe3069ddef14178411": { - "$overall": { - "2024-11-01T00:00:00+02:00": 47359 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45388 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 45388 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1971 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1971 - } - } - }, - "6663404493a6b815ffefb2f0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2463457 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 79928 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 79928 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 776221 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 776221 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 831090 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 831090 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 776218 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 776218 - } - } - }, - "6673d3288b7329c353ad689d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2680 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1340 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1340 - } - } - }, - "64f6ffa51bb9daae5164392a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12069 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6035 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6035 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6034 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6034 - } - } - }, - "6463ebef60f1803b3a6fbf6b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 223456 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17456 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17456 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 106765 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 106765 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 99235 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 99235 - } - } - }, - "624c1d9fdd3137001824f6ef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28399 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14199 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14199 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14200 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14200 - } - } - }, - "64135799799e3c974d3f6426": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11581625 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 143176 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 143176 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3984865 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3984865 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3724167 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3724167 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3729417 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3729417 - } - } - }, - "646327aed6925ea19b9c43ea": { - "$overall": { - "2024-11-01T00:00:00+02:00": 89186 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29729 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29729 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29728 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29728 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29729 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29729 - } - } - }, - "67444c602c32fe389fd89f54": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1424 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 731 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 731 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 693 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 693 - } - } - }, - "6397389154ca30325edb6391": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2867 - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 165 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 165 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 739 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 739 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1270 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1270 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 693 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 693 - } - } - }, - "653f9eeac93cc0129acf4bcb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 108757 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18322 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18322 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34462 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 34462 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14842 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14842 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10294 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10294 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30837 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30837 - } - } - }, - "650af582c016453d5bdfb209": { - "$overall": { - "2024-11-01T00:00:00+02:00": 70 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 35 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 35 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 35 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 35 - } - } - }, - "66f19c98cf609b134304a0f6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2877 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 983 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 983 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 947 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 947 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 947 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 947 - } - } - }, - "65eb2863bd6a1b3de8913c21": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5993 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1163 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1163 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2401 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2401 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1787 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1787 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 642 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 642 - } - } - }, - "64d7bb315b5e6bb444d4dd86": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8953 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4034 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4034 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4034 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4034 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 885 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 885 - } - } - }, - "65af69c5aeb88319ddace25a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 138949 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 69474 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 69474 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 69475 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 69475 - } - } - }, - "63fa339af93b4fa85aac153d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3105 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1083 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1083 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1011 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1011 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1011 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1011 - } - } - }, - "63215ba3a4ca4df9242c24c4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2170 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 106 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 106 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1032 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1032 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1032 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1032 - } - } - }, - "63b80e5704fdc888671f3820": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1710 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 180 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 180 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 855 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 855 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 675 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 675 - } - } - }, - "63cfe876ab8d9270851c178d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9088 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6976 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6976 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1928 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1928 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 184 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 184 - } - } - }, - "6680a87553d09da082d4fd31": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8804 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4402 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4402 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4402 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4402 - } - } - }, - "657312d2fd6a606fd6eaa203": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4082 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1381 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1381 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1381 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1381 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1320 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1320 - } - } - }, - "651d2708e1b82d64b37fb064": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3469 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1733 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1733 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1718 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1718 - } - } - }, - "650d24f8f39b9230da78520b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1378 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 689 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 689 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 689 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 689 - } - } - }, - "64ecc8ef96eacf2243a91769": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30645 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11768 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11768 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3426 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3426 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10904 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10904 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4547 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4547 - } - } - }, - "66fc55c5cf609b13433a677d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11942 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5988 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5988 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5954 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5954 - } - } - }, - "6627a8d783dccfeec76eb3f3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 32112 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13975 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13975 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4163 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4163 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13974 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13974 - } - } - }, - "66b1fe79aa4218d12657d85b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1571 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 786 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 786 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 785 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 785 - } - } - }, - "6637e82483488a7091d0513d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2409 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 912 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 912 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 787 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 787 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 710 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 710 - } - } - }, - "655c93211a91da1b109bea70": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5299 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 679 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 679 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2202 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2202 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 216 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 216 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2202 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2202 - } - } - }, - "6439d814d3f2f7f8eb014099": { - "$overall": { - "2024-11-01T00:00:00+02:00": 614 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 307 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 307 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 307 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 307 - } - } - }, - "6525396bae3f3225a9475db0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24142 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4891 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4891 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 676 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 676 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 209 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 209 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1292 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1292 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9300 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9300 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7774 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7774 - } - } - }, - "66cf1c1bcf609b134337b496": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14321 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7160 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7160 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7161 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7161 - } - } - }, - "654fe30fc36c6d67b96de432": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8651 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4326 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4326 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4325 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4325 - } - } - }, - "6314b4eb232b8996aaa4c9bc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3874 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1937 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1937 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1937 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1937 - } - } - }, - "63f586fd589ed09e95f0010f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1098 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 549 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 549 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 549 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 549 - } - } - }, - "63a81723bee1d5aed77eeecc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 507 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 169 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 169 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 169 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 169 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 169 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 169 - } - } - }, - "63d31df842cfbce360a1f91d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2367 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 530 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 530 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 594 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 594 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 632 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 632 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 611 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 611 - } - } - }, - "62b8aeda9bbe840018528c47": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3708 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1236 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1236 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1236 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1236 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1236 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1236 - } - } - }, - "6627ad47fe81f5c852ec1b6a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 19535 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 162 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 162 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6561 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6561 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6389 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6389 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6423 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6423 - } - } - }, - "64f0638825339d16c5d2738a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1644 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 506 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 506 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 316 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 316 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 316 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 316 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 506 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 506 - } - } - }, - "63a059f5bee1d5aed7e4d95c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3987 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1329 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1329 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1329 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1329 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1329 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1329 - } - } - }, - "63cf21de42cfbce360219228": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1508 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 754 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 754 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 754 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 754 - } - } - }, - "6643b1e7fbadc9d325959e25": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7470 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2212 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2212 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2212 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2212 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 272 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 272 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2774 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2774 - } - } - }, - "656197541eb377d7c3b258a0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16535 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5677 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5677 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5677 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5677 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5181 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5181 - } - } - }, - "66fa9de25d6b8aa393727348": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2834 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 985 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 985 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 925 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 925 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 924 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 924 - } - } - }, - "665f80fe8e255032572549f2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1599 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 319 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 319 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 319 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 319 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 319 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 319 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 323 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 323 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 319 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 319 - } - } - }, - "651eff411df1b46454f4c05a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 41990 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2865 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2865 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7924 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7924 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14712 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14712 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 864 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 864 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7522 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7522 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8103 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8103 - } - } - }, - "6439210da97b5d90d4874f30": { - "$overall": { - "2024-11-01T00:00:00+02:00": 96215 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17890 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17890 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 19986 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 19986 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21672 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 21672 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18101 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18101 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18565 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18565 - } - } - }, - "6568b37faa67fd979c0b94d8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1796 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 776 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 776 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 340 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 340 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 340 - } - } - }, - "658a048acb274a771b085163": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4618 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2309 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2309 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2309 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2309 - } - } - }, - "648e433db5f1ae122b746d19": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6390 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3195 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3195 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3195 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3195 - } - } - }, - "666c096bb3464b7775094768": { - "$overall": { - "2024-11-01T00:00:00+02:00": 70 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 21 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 21 - } - } - }, - "6549444cb6c1c9448db38bc2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1112 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1052 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1052 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30 - } - } - }, - "6502d39087135ffdc35caf67": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17310 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14224 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14224 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1543 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1543 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1543 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1543 - } - } - }, - "6329fc7ae2a2de81df4b10a6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11298 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5589 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5589 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5466 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5466 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 243 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 243 - } - } - }, - "65439145e3bcee0f76a5a368": { - "$overall": { - "2024-11-01T00:00:00+02:00": 62267 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 38524 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 38524 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5936 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5936 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5936 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5936 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5936 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5936 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5935 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5935 - } - } - }, - "672e2335a197476669200759": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21867 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10093 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10093 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10720 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10720 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1054 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1054 - } - } - }, - "650c474042707458fe59f367": { - "$overall": { - "2024-11-01T00:00:00+02:00": 418918 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 177034 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 177034 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18735 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18735 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18737 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18737 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18736 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18736 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 185676 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 185676 - } - } - }, - "65113f461a7614493dc5a9f0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2258 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 765 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 765 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 857 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 857 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 636 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 636 - } - } - }, - "6448e3efe2067a03ba33cbb7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8858 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4430 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4430 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4428 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4428 - } - } - }, - "66a79f82dfafba8038bc3399": { - "$overall": { - "2024-11-01T00:00:00+02:00": 727 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 249 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 249 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 229 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 229 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 249 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 249 - } - } - }, - "64341d3fd766fd13ee96b6a1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5865 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1956 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1956 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1955 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1955 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1954 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1954 - } - } - }, - "651fca9cb03ff038cef1c54f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15279 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3820 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3820 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3820 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3820 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3820 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3820 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3819 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3819 - } - } - }, - "63b3f614749085d8f285703a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 46060 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15351 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15351 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9692 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9692 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 165 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 165 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10423 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10423 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10429 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10429 - } - } - }, - "662a58724b6cd9280bf5139d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 220 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 110 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 110 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 108 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 108 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2 - } - } - }, - "651e2d9e8816295152897198": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1346 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 673 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 673 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 673 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 673 - } - } - }, - "632cae5927d50dea0bf3898b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3543 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1184 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1184 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1184 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1184 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1175 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1175 - } - } - }, - "66b3c633abc563f5ee1c4ffa": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11387 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2663 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2663 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 12 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5990 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5990 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2722 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2722 - } - } - }, - "6436e7094f087a109c0322a7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14236 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7118 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7118 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7118 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7118 - } - } - }, - "64fb853287135ffdc3b410ec": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15782 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3945 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3945 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3978 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3978 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3497 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3497 - } - }, - "custom": { - "$overall": { - "2024-11-01T00:00:00+02:00": 385 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 385 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3977 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3977 - } - } - }, - "65e5c6dde5b9e5a88a318d93": { - "$overall": { - "2024-11-01T00:00:00+02:00": 814 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 498 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 498 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 158 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 158 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 158 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 158 - } - } - }, - "642552b70136cef86a79373c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1202 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 469 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 469 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 67 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 67 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 469 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 469 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 197 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 197 - } - } - }, - "65a56e2e8e557ef0afd6f872": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21936 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10052 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10052 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10052 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10052 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1832 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1832 - } - } - }, - "671dcbd5fb21db27364e8179": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3172 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 816 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 816 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1339 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1339 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1017 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1017 - } - } - }, - "64df0f4ea9172aa4b7052247": { - "$overall": { - "2024-11-01T00:00:00+02:00": 102232 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27678 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 27678 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20390 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20390 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26485 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 26485 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27679 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 27679 - } - } - }, - "66ce471dcf609b1343289560": { - "$overall": { - "2024-11-01T00:00:00+02:00": 33358 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16686 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 16686 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16672 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 16672 - } - } - }, - "6554c9199139d6b01f88625d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4652 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1351 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1351 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1383 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1383 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 535 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 535 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1383 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1383 - } - } - }, - "669559c51c484e3d9a0e1839": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2450 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1225 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1225 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1225 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1225 - } - } - }, - "6408720f46fde50c6d4affe5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17116 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4296 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4296 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4263 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4263 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4261 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4261 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4296 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4296 - } - } - }, - "64f0c28825339d16c5d8131a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1262 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 631 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 631 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 631 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 631 - } - } - }, - "6669f5fec7f96cc1968787d9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 66526 - }, - "custom": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16186 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 16186 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15777 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15777 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17663 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17663 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16900 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 16900 - } - } - }, - "6615460e6df43c247a0e01bb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 42516 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14172 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14172 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14172 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14172 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14172 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14172 - } - } - }, - "63d548c1a9b6cc61d4c3beb3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 19107 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 897 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 897 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9553 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9553 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8657 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8657 - } - } - }, - "6641cac9c4df36a9648c8dd5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24105 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7709 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7709 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8534 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8534 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7862 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7862 - } - } - }, - "662f0d0e843a6a8496596159": { - "$overall": { - "2024-11-01T00:00:00+02:00": 158 - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 74 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 74 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 61 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 61 - } - } - }, - "646d9f170b49196df3ab5f80": { - "$overall": { - "2024-11-01T00:00:00+02:00": 34794 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17397 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17397 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17397 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17397 - } - } - }, - "643d4f7130bdc004e35b8b0e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4852 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1636 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1636 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 790 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 790 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 790 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 790 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1636 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1636 - } - } - }, - "645863ebd6925ea19b7d2456": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2983 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2821 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2821 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 81 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 81 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 81 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 81 - } - } - }, - "64c1760e3ec3e6a351ea3ba1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1538 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 769 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 769 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 769 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 769 - } - } - }, - "6481d805720b54f89e143404": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2754 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1377 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1377 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1377 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1377 - } - } - }, - "64c94e80fc11bce407229550": { - "$overall": { - "2024-11-01T00:00:00+02:00": 113658 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 37872 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 37872 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 37892 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 37892 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 37872 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 37872 - } - } - }, - "647817a98b0b51ed174db1a8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45259 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3743 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3743 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20511 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20511 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 494 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 494 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20511 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20511 - } - } - }, - "64db6d7084fbabb0eef2e7a0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 42003 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14001 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14001 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14001 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14001 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14001 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14001 - } - } - }, - "646f26388b0b51ed1734729b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 51435 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17145 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17145 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17145 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17145 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17145 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17145 - } - } - }, - "6337ca88ee1316a5c8a9009e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2766 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 922 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 922 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 922 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 922 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 922 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 922 - } - } - }, - "66b13ca4238f8cf6c4a2478e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1048 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 539 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 539 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 494 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 494 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - } - }, - "67475e932c32fe389fa51052": { - "$overall": { - "2024-11-01T00:00:00+02:00": 908 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 452 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 452 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 453 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 453 - } - } - }, - "656b003c666d47dc7d25648c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27014 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9006 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9006 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9002 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9002 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9006 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9006 - } - } - }, - "657006a1d69593bcb426d80e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3072 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1536 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1536 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1536 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1536 - } - } - }, - "6335791aee1316a5c89b6d93": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20899 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10449 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10449 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10450 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10450 - } - } - }, - "6593f529f58e905ecac5cf4b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 81374 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22768 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22768 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12947 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 12947 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20368 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20368 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10397 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10397 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14894 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14894 - } - } - }, - "6437a1cdc3f9dd9ef6a22609": { - "$overall": { - "2024-11-01T00:00:00+02:00": 154 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 54 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 54 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 45 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 45 - } - } - }, - "66d536cdcf609b1343d0e115": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2818 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1273 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1273 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 992 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 992 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 553 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 553 - } - } - }, - "66b9e7e99c11077f0298542c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1880 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 940 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 940 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 940 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 940 - } - } - }, - "64b703eb90b5785d4734577a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1767 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 816 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 816 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 52 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 52 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 661 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 661 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 238 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 238 - } - } - }, - "66b997fe9c11077f0257d94e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1040 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 461 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 461 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 194 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 194 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 384 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 384 - } - } - }, - "647e50e6720b54f89e06480e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 922 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 449 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 449 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 449 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 449 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 24 - } - } - }, - "6734a5a33b50565012d8dce0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - } - }, - "651c209f8816295152811079": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4013 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1360 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1360 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1256 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1256 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 38 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 38 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1359 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1359 - } - } - }, - "65fb16744fe3628e5e65fe2e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4502 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1695 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1695 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2246 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2246 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 561 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 561 - } - } - }, - "652d210133aa2d8c68b1bea6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29207 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9736 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9736 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9736 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9736 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9735 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9735 - } - } - }, - "647d42173a4ec8a59984c750": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24846 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7729 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7729 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7729 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7729 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1659 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1659 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7729 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7729 - } - } - }, - "65fd55c44f991166e7a7335e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7402 - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 199 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 199 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2515 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2515 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 869 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 869 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2207 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2207 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1232 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1232 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 380 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 380 - } - } - }, - "62cd681212f9e10011655a35": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3115685 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1037731 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1037731 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1037727 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1037727 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1037303 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1037303 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2924 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2924 - } - } - }, - "656dbe9f27f644ad0ecba9ae": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2132 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1066 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1066 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1066 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1066 - } - } - }, - "672e25d0a1974766693e1703": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 36 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 36 - } - } - }, - "63c1debfe84f99fee270acf7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1170 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 66 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 66 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 196 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 196 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 499 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 499 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 201 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 201 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 208 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 208 - } - } - }, - "65718e1d37b5f612059c62ef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 106040 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17762 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 17762 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 88278 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 88278 - } - } - }, - "65d5e7fa2d8ee2bc1404fa0f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 204 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 102 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 102 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 102 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 102 - } - } - }, - "63320239ee1316a5c87e38d1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 48212 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24106 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 24106 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24106 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 24106 - } - } - }, - "664c96c0e6f72af294ae867a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2911 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 663 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 663 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 525 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 525 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 794 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 794 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 929 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 929 - } - } - }, - "64e4824819860000717aecb9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21436 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9300 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9300 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12136 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 12136 - } - } - }, - "66ac042fb11ac224eaf4f23a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 43049 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14364 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14364 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14364 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14364 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14321 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14321 - } - } - }, - "6537ebf5585a37886d9f05b5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21576 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9211 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9211 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 355 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 355 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3614 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3614 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8396 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8396 - } - } - }, - "667afbe4231acc7b876e0a8a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1966 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 414 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 414 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 414 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 414 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 414 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 414 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 310 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 310 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 414 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 414 - } - } - }, - "671bcf830ab03d9467221e9b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1237 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 513 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 513 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 714 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 714 - } - } - }, - "670d176b8b5274f547d231c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2232 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1173 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1173 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1059 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1059 - } - } - }, - "656d49757b44306b3c820521": { - "$overall": { - "2024-11-01T00:00:00+02:00": 861 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 439 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 439 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 422 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 422 - } - } - }, - "668fa1064111ae088df8ecd3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 930 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 465 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 465 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 465 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 465 - } - } - }, - "66ab0c482a0b42870f2dadef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13659 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1976 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1976 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7163 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7163 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4520 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4520 - } - } - }, - "65c17ff93086d5972f17c2d0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4482 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 344 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 344 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1154 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1154 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1492 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1492 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1492 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1492 - } - } - }, - "6543a644e3126f05f0cad775": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4694 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2347 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2347 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2318 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2318 - } - } - }, - "63edbed95f1718af27dc2f2f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 31284 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10428 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10428 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10428 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10428 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10428 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10428 - } - } - }, - "65bbbfe9cadbf9deb57b546e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2386 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 804 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 804 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 778 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 778 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 804 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 804 - } - } - }, - "643682a035c8dd9a2c46ac2b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 201966 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 112586 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 112586 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26347 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 26347 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26347 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 26347 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18123 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18123 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18563 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18563 - } - } - }, - "6502ec79f39b9230da7cc89f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8992 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4019 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4019 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 602 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 602 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4371 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4371 - } - } - }, - "67212578d50b4e9ff9a6cc1f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 369 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 314 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 314 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 44 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11 - } - } - }, - "660ef03291bd69a79e31a321": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18824 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9412 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9412 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9412 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9412 - } - } - }, - "63bb02b5063f6d94cdf18ac9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15020 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4514 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4514 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1679 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1679 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 80 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 80 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5257 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5257 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3490 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3490 - } - } - }, - "66704e3f30319d13334f4306": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1225185 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 612260 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 612260 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 611467 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 611467 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1458 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1458 - } - } - }, - "6516702d73891288fc1ca032": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44465 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14819 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14819 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14821 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14821 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14825 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14825 - } - } - }, - "6408f2f0dd5f589fe2ca61b4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4719 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1602 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1602 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2363 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2363 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 753 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 753 - } - } - }, - "66d61e9dcf609b134368c516": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15341 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6299 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6299 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6208 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6208 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2834 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2834 - } - } - }, - "63c8f9dd69a571f23a1f87d0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 399 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 195 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 195 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 195 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 195 - } - } - }, - "647a49083a4ec8a5997fb67c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1364 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 680 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 680 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 684 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 684 - } - } - }, - "62a0b9433de29f001cb6626f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10949 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3204 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3204 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3367 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3367 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4217 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4217 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 161 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 161 - } - } - }, - "64ae84fa90b5785d4716e362": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11794 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5897 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5897 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5897 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5897 - } - } - }, - "64c03a19bab542bccfebc4c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16980 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1049 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1049 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14738 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14738 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1193 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1193 - } - } - }, - "62fa8155227ab843d407b3f5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28593 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10286 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10286 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5874 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5874 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3852 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3852 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8581 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8581 - } - } - }, - "6593fa76f58e905ecac67a12": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36028 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18014 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18014 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18014 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18014 - } - } - }, - "6413051f44e9291a6455e3e7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 42 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - } - }, - "650002893cc619d36e43a166": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1826 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 267 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 267 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 518 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 518 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 523 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 523 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 518 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 518 - } - } - }, - "64362dac4e5fea401a0f19af": { - "$overall": { - "2024-11-01T00:00:00+02:00": 144428 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72215 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 72215 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72213 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 72213 - } - } - }, - "6582723f08be7e008ad65128": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21366 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8645 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8645 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8645 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8645 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4076 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4076 - } - } - }, - "64b4e554d82471a0444f8415": { - "$overall": { - "2024-11-01T00:00:00+02:00": 118578 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29646 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29646 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29647 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29647 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29642 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29642 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29643 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29643 - } - } - }, - "666a0c480f48d9a01fea8e2c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4165 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1036 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1036 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3129 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3129 - } - } - }, - "6635236c843a6a8496d4d38e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 656 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 328 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 328 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 328 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 328 - } - } - }, - "66cde6ffcf609b13433bff6b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36505 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13766 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13766 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18302 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18302 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4437 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4437 - } - } - }, - "669d47da98a7c2cace1dea46": { - "$overall": { - "2024-11-01T00:00:00+02:00": 194 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 84 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 84 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 82 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 82 - } - } - }, - "65c67ec9b637cdb23e09edef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 820 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 410 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 410 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 410 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 410 - } - } - }, - "6639346438754624b559d51d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1083 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 33 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 33 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 28 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 718 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 718 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 304 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 304 - } - } - }, - "66f0dd46cf609b13436885f5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1233 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 411 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 411 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 411 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 411 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 411 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 411 - } - } - }, - "64654f8125b1fb30f26b3ce3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 276877 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10889 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10889 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1703 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1703 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 111277 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 111277 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45126 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 45126 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 107882 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 107882 - } - } - }, - "636a6b4d9e04bb11b575cf74": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8588 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4294 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4294 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3886 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3886 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 408 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 408 - } - } - }, - "653ffc80c93cc0129ad126ab": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3117 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 874 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 874 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 874 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 495 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 495 - } - } - }, - "6571c58bfd6a606fd6c8f3f0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 956 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 478 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 478 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 478 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 478 - } - } - }, - "64011cb9841d0bacae01f6ff": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8801 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2091 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2091 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 131 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 131 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2260 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2260 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2072 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2072 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2241 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2241 - } - } - }, - "663d16aa34ea4ddc9b9f2f3d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1774 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 887 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 887 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 887 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 887 - } - } - }, - "64480a48771e7bed3dc3600e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 109233 - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28979 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 28979 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6504 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6504 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 75 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 75 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 73675 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 73675 - } - } - }, - "630cb844fafbba9bf010f186": { - "$overall": { - "2024-11-01T00:00:00+02:00": 248538 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 48883 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 48883 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72065 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 72065 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 49088 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 49088 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6432 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6432 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 72070 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 72070 - } - } - }, - "652e5833fff93419480c951b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 463818 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 231905 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 231905 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 231913 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 231913 - } - } - }, - "652d099361752f4c288defb9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1716 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 858 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 858 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 858 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 858 - } - } - }, - "665f34e28e2550325700cda9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 116 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 58 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 58 - } - } - }, - "63ad63d5a3d6d6f6e46334a0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15324 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5485 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5485 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4352 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4352 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4353 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4353 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1134 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1134 - } - } - }, - "6644fabbfbadc9d325d90248": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4383 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1559 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1559 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 674 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 674 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 44 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1428 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1428 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 676 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 676 - } - } - }, - "6670ed6e78b0832675c76f6a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3065 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1026 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1026 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1026 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1026 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1013 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1013 - } - } - }, - "63ff64e6f591ea2e097d64bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6833 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1566 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1566 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 112 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 112 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3598 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3598 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 21 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1536 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1536 - } - } - }, - "65799faaab5221590f7f1cc1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5248 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2282 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2282 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2555 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2555 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 273 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 273 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 138 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 138 - } - } - }, - "64ca38d1a936a1d182441a27": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3226 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1613 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1613 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1613 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1613 - } - } - }, - "6578af0c7500743a91038c4b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 363 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 121 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 121 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 121 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 121 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 121 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 121 - } - } - }, - "63ecb58fd38e757796a68c1c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28679507 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3703 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3703 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7041512 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7041512 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7242863 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7242863 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7195749 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7195749 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7195680 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7195680 - } - } - }, - "641df7485d9af70da9c29397": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3775 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 644 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 644 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 829 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 829 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1473 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1473 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 829 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 829 - } - } - }, - "63eaaa4dd1a5554c97db1b86": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6130 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3065 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3065 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3061 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3061 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4 - } - } - }, - "634826ed27d50dea0ba493f9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 51955 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25976 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 25976 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25979 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 25979 - } - } - }, - "65d368c9a1dfc9ae299cbd1e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3528 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1988 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1988 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 826 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 826 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 714 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 714 - } - } - }, - "627cf999d4869d0018625c67": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9598 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 120 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 120 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4739 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4739 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4739 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4739 - } - } - }, - "6421cf785876c8840c441642": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1093 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 472 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 472 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 148 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 148 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 472 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 472 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - } - }, - "659b604dbfebd8d8d51299ca": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10443 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3481 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3481 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3481 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3481 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3481 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3481 - } - } - }, - "6634cbe4612e6f34a400b05e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1350 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 510 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 510 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 510 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 510 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 330 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 330 - } - } - }, - "66319137a95d2d5be0cffdd5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2326 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1163 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1163 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1163 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1163 - } - } - }, - "6627ff494ad60adb146eca32": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6449 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1183 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1183 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1533 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1533 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2460 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2460 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 256 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 256 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1017 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1017 - } - } - }, - "66a0f9f7f502999ed8453644": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2130 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 710 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 710 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 710 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 710 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 710 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 710 - } - } - }, - "654eb4b8d71fd8620c6d174e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 113516 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28379 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 28379 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28379 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 28379 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28379 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 28379 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 28379 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 28379 - } - } - }, - "6453755860f1803b3a3fba83": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1390 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 477 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 436 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 436 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 477 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 477 - } - } - }, - "63317d6327d50dea0b03d16e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1537 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 44 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1418 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1418 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 75 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 75 - } - } - }, - "64e32ac81e192345f283d627": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3737 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 557 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 557 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1638 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1638 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1542 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1542 - } - } - }, - "653fbf348928fc83db032ef4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7703 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3850 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3850 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3843 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3843 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9 - } - } - }, - "63a3be9fe0b58885ea9a25b0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 644 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 322 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 322 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 322 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 322 - } - } - }, - "66b35706aa4218d126bbbf49": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1441 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 481 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 481 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 480 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 480 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 480 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 480 - } - } - }, - "64477125ac1c08f04edc14aa": { - "$overall": { - "2024-11-01T00:00:00+02:00": 50785 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20521 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20521 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4872 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4872 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4871 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4871 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20521 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20521 - } - } - }, - "6685216144e8f8b477105e38": { - "$overall": { - "2024-11-01T00:00:00+02:00": 16468 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8235 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8235 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8233 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8233 - } - } - }, - "669ba0033c94be87b123b8c5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 104652 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 52672 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 52672 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 51980 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 51980 - } - } - }, - "6508ba6e7722fc74ea9637ec": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25339 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10121 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10121 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5402 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5402 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3796 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3796 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4414 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4414 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1606 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1606 - } - } - }, - "661541fa6df43c247a0a31f9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2584 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1234 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1234 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1234 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1234 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 116 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 116 - } - } - }, - "6742dd7d1bb91e63d914a510": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5 - } - } - }, - "668708d194330132afefdfcc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13960 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6980 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6980 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6980 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6980 - } - } - }, - "651aea5133924ee69071720d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 126006 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11438 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11438 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 36075 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 36075 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 35920 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 35920 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30919 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30919 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11654 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11654 - } - } - }, - "641d8c2fda8256b93f228fd0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 66325 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 33164 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 33164 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 33161 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 33161 - } - } - }, - "660b31f5b551758561fb037c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1271014 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 75545 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 75545 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 75548 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 75548 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 383439 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 383439 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 660940 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 660940 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 75542 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 75542 - } - } - }, - "6557f01a8c7cd7ff32f2d475": { - "$overall": { - "2024-11-01T00:00:00+02:00": 287087 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 56871 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 56871 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58238 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 58238 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 58238 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 58238 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 56870 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 56870 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 56870 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 56870 - } - } - }, - "646eaa72e0d0d1b39ac3b281": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1890 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 945 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 945 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 945 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 945 - } - } - }, - "642d9001c6b53aa5dd5124f5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2264722 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20129 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20129 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20129 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20129 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1201296 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1201296 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1023168 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1023168 - } - } - }, - "66d9e408cf609b134331065f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40205 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 27659 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 27659 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 560 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 560 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 638 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 638 - } - }, - "custom": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5543 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5543 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5805 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5805 - } - } - }, - "67063d37ba6a0580bfccc7e3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 897 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 124 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 124 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 129 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 129 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 398 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 398 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 246 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 246 - } - } - }, - "6600f0d38453b14f2ff41c7d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1454 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 300 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 300 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 577 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 577 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 576 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 576 - } - } - }, - "671bba5a0ab03d946718eb3b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 453 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 19 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 19 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 232 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 232 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 76 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 76 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 123 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 123 - } - } - }, - "65f086bfeb4977909f034ec2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2196 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1098 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1098 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1098 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1098 - } - } - }, - "6322333a2d7b721933bd8cf6": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23048 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7252 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7252 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8307 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8307 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7489 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7489 - } - } - }, - "659d3b40f58e905eca1793b0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 244 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 122 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 122 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 122 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 122 - } - } - }, - "6321e40f1a3ff48f5712daa8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 53500 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26750 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 26750 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26750 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 26750 - } - } - }, - "652ea963fa315318e7925510": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7765 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1836 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1836 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1132 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1132 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1132 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1132 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3665 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3665 - } - } - }, - "66fd558bcf609b1343268e49": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40061 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20030 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20030 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20031 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20031 - } - } - }, - "65e5b2bac09e1cf82ec747bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1566 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 783 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 783 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 783 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 783 - } - } - }, - "653ba5e0583a1ec8f82b3589": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3547 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1774 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1774 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1773 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1773 - } - } - }, - "6507114e90b85787fd58b6d2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 68756 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23632 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 23632 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20340 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 20340 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2946 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2946 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 21838 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 21838 - } - } - }, - "63a32471bee1d5aed72cc01d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14462 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7231 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7231 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7231 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7231 - } - } - }, - "64747ec18b0b51ed1741923d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2010 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1005 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1005 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1005 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1005 - } - } - }, - "668d398684227ca750502c57": { - "$overall": { - "2024-11-01T00:00:00+02:00": 53223 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15659 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15659 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 278 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 278 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18381 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18381 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18905 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 18905 - } - } - }, - "636975131fbb836889d6f696": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14772 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6284 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6284 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6804 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6804 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1684 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1684 - } - } - }, - "6422c50c5876c8840c8b4668": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8418 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4209 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4209 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4209 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4209 - } - } - }, - "63b85858b775d8ef0ed805cb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 68963 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22994 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22994 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22994 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22994 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22975 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22975 - } - } - }, - "6605a26d8b3193b7f042cff3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 312 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 156 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 156 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 156 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 156 - } - } - }, - "64b03bae2eb78d11de58c1bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 18429 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9215 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9215 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9214 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9214 - } - } - }, - "660c351dbfb1f0d56f7a6fcc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7622 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 645 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 645 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 645 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 645 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 645 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 645 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2468 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2468 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3219 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3219 - } - } - }, - "6578cf542c7e267bc3e3897a": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14043 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3887 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3887 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5078 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5078 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5078 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5078 - } - } - }, - "63bcf68d35958e9aa59578ff": { - "$overall": { - "2024-11-01T00:00:00+02:00": 566 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 283 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 283 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 283 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 283 - } - } - }, - "6727412d456590b1d8992d83": { - "$overall": { - "2024-11-01T00:00:00+02:00": 605 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 303 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 303 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 298 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 298 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4 - } - } - }, - "6671df91f4a238f107fe9f56": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2405 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 719 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 719 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 124 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 124 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 843 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 843 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 376 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 376 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 343 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 343 - } - } - }, - "67463a802c32fe389fa61341": { - "$overall": { - "2024-11-01T00:00:00+02:00": 55 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 32 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 32 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22 - } - } - }, - "66a5008b076eb7c94c1adb92": { - "$overall": { - "2024-11-01T00:00:00+02:00": 64 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 40 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 40 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 24 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 24 - } - } - }, - "65f3db2b4599fa000c2becc7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1834 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 915 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 915 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 917 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 917 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2 - } - } - }, - "65af6ad4f58e905ecab29441": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4826194 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2413171 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2413171 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2413023 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2413023 - } - } - }, - "666b875bb3464b7775f56472": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4088 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2044 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2044 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2044 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2044 - } - } - }, - "658c15eae2d5aed98bef8f80": { - "$overall": { - "2024-11-01T00:00:00+02:00": 41359 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 13705 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 13705 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7180 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7180 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2388 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2388 - } - }, - "custom": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5324 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5324 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4243 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4243 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8519 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8519 - } - } - }, - "64f09213faeddba41e0137d9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7267 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1759 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1759 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2252 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2252 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2145 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2145 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 176 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 176 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 935 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 935 - } - } - }, - "62ac67523de29f001cb8bfdb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1180 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 590 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 590 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 590 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 590 - } - } - }, - "65caa89e619fe4f9cf723907": { - "$overall": { - "2024-11-01T00:00:00+02:00": 37938 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5828 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5828 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 26282 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 26282 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5828 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5828 - } - } - }, - "646e25734c1d7d4ec22acfa5": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11208 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5405 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5405 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 179 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 179 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4467 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4467 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1157 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1157 - } - } - }, - "6580bfe12c7e267bc3af8dc2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25491 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8497 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8497 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8497 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8497 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8497 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8497 - } - } - }, - "639c385254ca30325e86f445": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29268 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14634 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14634 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14634 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14634 - } - } - }, - "64ef9990faeddba41ef3caae": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1606 - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 134 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 134 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 803 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 803 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 669 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 669 - } - } - }, - "63f2c2af62dd0f648118e82f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 88940 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44470 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 44470 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 29154 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 29154 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15316 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15316 - } - } - }, - "6572fd669788e6811d7b4d64": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23180 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7727 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7727 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7727 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7727 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7726 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7726 - } - } - }, - "657752b62682a8ccf9887a7c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7765 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3900 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3900 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 156 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 156 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3707 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3707 - } - } - }, - "65df17f92b39eba95ab6ae95": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1732 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 869 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 869 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 863 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 863 - } - } - }, - "64e793a5dd99c21f1ef1ddcb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 35548 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5832 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5832 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6265 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6265 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12072 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 12072 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11379 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11379 - } - } - }, - "64e77d4b96eacf22439b13cd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2644 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 574 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 574 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1322 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1322 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 549 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 549 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 199 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 199 - } - } - }, - "64d2121ee443560425c07189": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3962 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1981 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1981 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1981 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1981 - } - } - }, - "6494e6cab1ef6a7f8830e871": { - "$overall": { - "2024-11-01T00:00:00+02:00": 824 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 412 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 412 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 412 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 412 - } - } - }, - "65f2f98b79ffb10acbce98c2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2294 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 869 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 869 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1147 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1147 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 278 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 278 - } - } - }, - "63e9893f8ce4830a19151391": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6252 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 615 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 615 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3325 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3325 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2312 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2312 - } - } - }, - "671b580c7cf00cbadbb9b0c3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1902 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 634 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 634 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 634 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 634 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 634 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 634 - } - } - }, - "637daec62610c873786139a1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7597 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3821 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3821 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3689 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3689 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 87 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 87 - } - } - }, - "65453e2c44cca773bdf1cdd7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1104 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 552 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 552 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 552 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 552 - } - } - }, - "65f8f7959343b5be34ab729c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22715 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11358 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11358 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11357 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11357 - } - } - }, - "6523e5f01941f73be45e3ac3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1344 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 672 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 672 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 672 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 672 - } - } - }, - "652e95466c3964c5a2832222": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15598 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2594 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2594 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5233 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5233 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5123 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5123 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2648 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2648 - } - } - }, - "641c3bb95d9af70da93f09a9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4144 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1500 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1500 - } - }, - "custom": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1088 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1088 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1550 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1550 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6 - } - } - }, - "63ed36d0f38aed64140c6720": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1769 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 590 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 590 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 874 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 874 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 305 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 305 - } - } - }, - "63fe730e5787050c5df466a9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 17266 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4189 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4189 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7061 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7061 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 465 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 465 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 300 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 300 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5251 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5251 - } - } - }, - "63c7b1ddab8d9270851b219f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1120 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 560 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 560 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 560 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 560 - } - } - }, - "6400caeef591ea2e090f6040": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10477917 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1736691 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1736691 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1737812 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1737812 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1738055 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1738055 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1736693 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1736693 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1736722 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1736722 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 54240 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 54240 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1737704 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1737704 - } - } - }, - "643e8d58b6a53d8ae70721c2": { - "$overall": { - "2024-11-01T00:00:00+02:00": 61979 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30989 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30989 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30990 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30990 - } - } - }, - "674586592c32fe389f95879e": { - "$overall": { - "2024-11-01T00:00:00+02:00": 414 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 208 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 208 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 206 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 206 - } - } - }, - "64e3554548249e7e76aeffc3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 50719 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14793 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14793 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15164 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 15164 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2612 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2612 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14792 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14792 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3358 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3358 - } - } - }, - "65bb0ed1516fabd8520d5673": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2339 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 94 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 94 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 855 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 855 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1390 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1390 - } - } - }, - "67235ab730d1c099604bf849": { - "$overall": { - "2024-11-01T00:00:00+02:00": 953 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 304 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 304 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 306 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 306 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 343 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 343 - } - } - }, - "654bab8b191027742aa28ec7": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3428 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1142 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1142 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1143 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1143 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1143 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1143 - } - } - }, - "673b3b592f10dba8e8616a90": { - "$overall": { - "2024-11-01T00:00:00+02:00": 711 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 166 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 166 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 395 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 395 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 150 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 150 - } - } - }, - "64469b1b4919b8d7cbf845ef": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14988 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4921 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4921 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 469 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 469 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4550 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4550 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2554 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2554 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2494 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2494 - } - } - }, - "66032532f43359bff28c011f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1170879 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 585441 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 585441 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 585438 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 585438 - } - } - }, - "63cea3496779056a3f2fff8d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7295 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1191 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1191 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1217 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1217 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1249 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1249 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1191 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1191 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1191 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1191 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 33 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 33 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1223 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1223 - } - } - }, - "63b86f5db775d8ef0ed8f08f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 63284 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 31641 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 31641 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 31643 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 31643 - } - } - }, - "65fbe3a58453b14f2f670e14": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10314 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 576 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 576 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3303 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3303 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3132 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3132 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 171 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 171 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3132 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3132 - } - } - }, - "667b514853d09da0827f2c20": { - "$overall": { - "2024-11-01T00:00:00+02:00": 740 - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 45 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 45 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 37 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 37 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 658 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 658 - } - } - }, - "636044f61fbb8368897eadbc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 246615 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 123306 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 123306 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 123309 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 123309 - } - } - }, - "66688112d05b953ba10ab594": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14640 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4827 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4827 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4796 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4796 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 190 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 190 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4827 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4827 - } - } - }, - "640f33277df3c830240b71b4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1137 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 429 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 429 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 287 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 287 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 421 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 421 - } - } - }, - "6540cb89c086274eec8fb0b1": { - "$overall": { - "2024-11-01T00:00:00+02:00": 44012 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10855 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10855 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 22006 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 22006 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 11151 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 11151 - } - } - }, - "64a079225cccb636d843bd26": { - "$overall": { - "2024-11-01T00:00:00+02:00": 330 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 165 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 165 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 165 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 165 - } - } - }, - "66cb2b9ecf609b1343ac5d85": { - "$overall": { - "2024-11-01T00:00:00+02:00": 15254 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7627 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7627 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7627 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7627 - } - } - }, - "667abaa4218289a1c466b985": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2590 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1295 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1295 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1295 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1295 - } - } - }, - "63a32b86bee1d5aed72d7f15": { - "$overall": { - "2024-11-01T00:00:00+02:00": 23557 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4701 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4701 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5502 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5502 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 801 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 801 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 7852 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 7852 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4701 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4701 - } - } - }, - "6414934fda8256b93f957df3": { - "$overall": { - "2024-11-01T00:00:00+02:00": 914 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 457 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 457 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 457 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 457 - } - } - }, - "64eda93c14b8a3ace6f4c5e9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 25084 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12573 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 12573 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2652 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2652 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3288 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3288 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3288 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3288 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3283 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3283 - } - } - }, - "6298723bbf5f05001986dd80": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2646 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1323 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1323 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1323 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1323 - } - } - }, - "652efbf06c3964c5a2845118": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1508 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 754 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 754 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 152 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 152 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 602 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 602 - } - } - }, - "634d5b1a27d50dea0bbfa3bd": { - "$overall": { - "2024-11-01T00:00:00+02:00": 39367 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14946 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14946 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 409 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 409 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 14508 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 14508 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9504 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9504 - } - } - }, - "64aa3f5d5f8a9af8437ea498": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20333 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4425 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4425 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6108 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 6108 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4643 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4643 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 122 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 122 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4534 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4534 - } - }, - "delay": { - "$overall": { - "2024-11-01T00:00:00+02:00": 501 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 501 - } - } - }, - "651ea1381df1b46454f21192": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4011 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2005 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2005 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2006 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2006 - } - } - }, - "67219003d36466abaeb1f995": { - "$overall": { - "2024-11-01T00:00:00+02:00": 792 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 396 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 396 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 396 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 396 - } - } - }, - "62fe5f8f227ab843d4272a38": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6474 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2193 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2193 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2084 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2084 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2197 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2197 - } - } - }, - "66362cc66c5885a3257940bb": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4948 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2474 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2474 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2466 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2466 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 8 - } - } - }, - "66cbf5decf609b134349ac56": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2570 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1285 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1285 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1285 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1285 - } - } - }, - "63362369e2a2de81df9b0573": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6368 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1722 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1722 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1731 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1731 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1453 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1453 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1462 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1462 - } - } - }, - "6630a51483064b959c801961": { - "$overall": { - "2024-11-01T00:00:00+02:00": 148997 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 64866 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 64866 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 74498 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 74498 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 9633 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 9633 - } - } - }, - "66ea0719cf609b1343a50a19": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1494 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 552 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 552 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 522 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 522 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 420 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 420 - } - } - }, - "64197347da8256b93fd7bbb8": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1238 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 619 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 619 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 619 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 619 - } - } - }, - "66437ce7b370e6b94e711d3c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 651 - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 43 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 43 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 294 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 294 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 314 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 314 - } - } - }, - "6524263d72a8166dd08346c9": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2082 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 175 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 175 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 954 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 954 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 82 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 82 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 871 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 871 - } - } - }, - "63c146116c33f15eefc12c8d": { - "$overall": { - "2024-11-01T00:00:00+02:00": 8658 - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2422 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2422 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1740 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1740 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 334 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 334 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2422 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2422 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 870 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 870 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 870 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 870 - } - } - }, - "65f440088edf3eee31cf371b": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2320 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1160 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1160 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1160 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1160 - } - } - }, - "65ceaef2535ad490c942a13c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 47464 - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4709 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4709 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4711 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4711 - } - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2519 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2519 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30888 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30888 - } - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 4637 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 4637 - } - } - }, - "6478b60f3a95df70dfeab13c": { - "$overall": { - "2024-11-01T00:00:00+02:00": 20376 - }, - "chat": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10188 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10188 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10188 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 10188 - } - } - }, - "655cccfb8c7cd7ff32031773": { - "$overall": { - "2024-11-01T00:00:00+02:00": 440 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 110 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 110 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 220 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 220 - } - }, - "sms": { - "$overall": { - "2024-11-01T00:00:00+02:00": 110 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 110 - } - } - }, - "65537ecc00c55a508c06f6ce": { - "$overall": { - "2024-11-01T00:00:00+02:00": 10850 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5425 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5425 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5425 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5425 - } - } - }, - "6635b78bbe41ef77518aaba0": { - "$overall": { - "2024-11-01T00:00:00+02:00": 60390 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30195 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30195 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 30195 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 30195 - } - } - }, - "6433d2fc6e1e72f63f63b5fe": { - "$overall": { - "2024-11-01T00:00:00+02:00": 95472 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 47736 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 47736 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 47736 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 47736 - } - } - }, - "63ac163b2588b530704387fc": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1797 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 599 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 599 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 599 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 599 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 599 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 599 - } - } - }, - "648c0658616db8f05a735ef4": { - "$overall": { - "2024-11-01T00:00:00+02:00": 6877 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2522 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2522 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1029 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1029 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1967 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1967 - } - }, - "push": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1359 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1359 - } - } - }, - "66828021e73f8d95adbb100f": { - "$overall": { - "2024-11-01T00:00:00+02:00": 12316 - }, - "digest": { - "$overall": { - "2024-11-01T00:00:00+02:00": 188 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 188 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2625 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 2625 - } - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 5529 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 5529 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 3974 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 3974 - } - } - }, - "658e6a3b0ad62708782a93bf": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1556 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 778 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 778 - } - }, - "in_app": { - "$overall": { - "2024-11-01T00:00:00+02:00": 778 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 778 - } - } - }, - "669187bb9efb8372ce7c6483": { - "$overall": { - "2024-11-01T00:00:00+02:00": 2102 - }, - "trigger": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1051 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1051 - } - }, - "email": { - "$overall": { - "2024-11-01T00:00:00+02:00": 1051 - }, - "undefined": { - "2024-11-01T00:00:00+02:00": 1051 - } - } - } - } - } - } - } -} From efc2df7b5180640c8242443fbedc69ce387edf2b Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:32:52 +0200 Subject: [PATCH 24/31] fix: remove unused import --- .../services/metrics-calculator.service.ts | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/apps/api/src/app/insights/services/metrics-calculator.service.ts b/apps/api/src/app/insights/services/metrics-calculator.service.ts index d3c854f6b14..11b5f290991 100644 --- a/apps/api/src/app/insights/services/metrics-calculator.service.ts +++ b/apps/api/src/app/insights/services/metrics-calculator.service.ts @@ -3,7 +3,6 @@ import { startOfDay, formatISO } from 'date-fns'; import { ChannelTypeEnum } from '@novu/shared'; import { IDateRange, - ISeriesData, IMixpanelInboxResponse, IInboxMetrics, IOrganizationMetrics, @@ -33,25 +32,6 @@ export class MetricsCalculatorService { return change; } - getSeriesDateRange(currentSeries: ISeriesData, previousSeries: ISeriesData): IDateRange { - const firstOrgId = Object.keys(currentSeries).find((key) => key !== '$overall'); - if (!firstOrgId) { - return { from_date: '', to_date: '' }; - } - - const currentDates = Object.keys(currentSeries[firstOrgId]?.$overall || {}); - const previousDates = Object.keys(previousSeries[firstOrgId]?.$overall || {}); - - if (!currentDates.length || !previousDates.length) { - return { from_date: '', to_date: '' }; - } - - return { - from_date: this.roundToStartOfDay(previousDates[0]), - to_date: this.roundToStartOfDay(currentDates[0]), - }; - } - calculateInboxMetrics( inboxSeries?: Record, inboxTimeComparison?: Record, From bd7e05fbd30f5427ab0656bced7a2999366a6ab8 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:39:34 +0200 Subject: [PATCH 25/31] fix: trigger --- .../services/metrics-calculator.service.ts | 14 ++++++++++++++ .../usage-insights/usage-insights.usecase.ts | 15 +++++++-------- .../src/workflows/usage-insights/email.tsx | 2 +- 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/apps/api/src/app/insights/services/metrics-calculator.service.ts b/apps/api/src/app/insights/services/metrics-calculator.service.ts index 11b5f290991..ae46ba59fa5 100644 --- a/apps/api/src/app/insights/services/metrics-calculator.service.ts +++ b/apps/api/src/app/insights/services/metrics-calculator.service.ts @@ -32,6 +32,20 @@ export class MetricsCalculatorService { return change; } + getSeriesDateRange(currentSeries: IChannelData, previousSeries: IChannelData): IDateRange { + const currentDates = Object.keys(currentSeries?.$overall || {}); + const previousDates = Object.keys(previousSeries?.$overall || {}); + + if (!currentDates.length || !previousDates.length) { + return { from_date: '', to_date: '' }; + } + + return { + from_date: this.roundToStartOfDay(previousDates[0]), + to_date: this.roundToStartOfDay(currentDates[0]), + }; + } + calculateInboxMetrics( inboxSeries?: Record, inboxTimeComparison?: Record, diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 1d6b526b541..fe2ed46e0ed 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -141,6 +141,11 @@ export class UsageInsights { }, }; + const dateRange = this.metricsCalculator.getSeriesDateRange( + organizationData.workflowTrigger.current, + organizationData.workflowTrigger.previous + ); + const metrics: IOrganizationMetrics = { eventTriggers: this.metricsCalculator.calculateEventTriggersMetrics( organizationData.workflowTrigger.current, @@ -158,16 +163,10 @@ export class UsageInsights { organizationData.inbox?.current, organizationData.inbox?.previous, orgId, - { - from_date: inboxData!.time_comparison.date_range.from_date, - to_date: inboxData!.date_range.from_date, - } + dateRange ), }; - await this.organizationNotification.sendOrganizationNotification(orgId, metrics, { - from_date: mixpanelData!.time_comparison.date_range.from_date, - to_date: mixpanelData!.date_range.to_date, - }); + await this.organizationNotification.sendOrganizationNotification(orgId, metrics, dateRange); } } diff --git a/libs/notifications/src/workflows/usage-insights/email.tsx b/libs/notifications/src/workflows/usage-insights/email.tsx index 960cb333a94..d514a92e19c 100644 --- a/libs/notifications/src/workflows/usage-insights/email.tsx +++ b/libs/notifications/src/workflows/usage-insights/email.tsx @@ -256,7 +256,7 @@ export default function UsageInsightsEmail(props: IUsageEmailData & { marketingC 📊 Usage Insights for {props.organizationName} - {formatDate(props.period.current)} - + Date: Sun, 22 Dec 2024 19:42:18 +0200 Subject: [PATCH 26/31] fix: empty state --- .../services/metrics-calculator.service.ts | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/api/src/app/insights/services/metrics-calculator.service.ts b/apps/api/src/app/insights/services/metrics-calculator.service.ts index ae46ba59fa5..fcd98c9e528 100644 --- a/apps/api/src/app/insights/services/metrics-calculator.service.ts +++ b/apps/api/src/app/insights/services/metrics-calculator.service.ts @@ -52,12 +52,14 @@ export class MetricsCalculatorService { orgId?: string, dateRange?: IDateRange ): IInboxMetrics { + const emptyResponse = { current: 0, previous: 0, change: 0 }; + if (!inboxSeries || !inboxTimeComparison || !orgId || !dateRange) { return { - sessionInitialized: { current: 0, previous: 0, change: 0 }, - updatePreferences: { current: 0, previous: 0, change: 0 }, - markNotification: { current: 0, previous: 0, change: 0 }, - updateAction: { current: 0, previous: 0, change: 0 }, + sessionInitialized: emptyResponse, + updatePreferences: emptyResponse, + markNotification: emptyResponse, + updateAction: emptyResponse, }; } @@ -69,7 +71,7 @@ export class MetricsCalculatorService { if (!currentSeriesData || !previousSeriesData) { Logger.debug(`No series data available for ${orgId}`); - return { current: 0, previous: 0, change: 0 }; + return emptyResponse; } const currentOrgData = currentSeriesData[orgId]; @@ -78,7 +80,7 @@ export class MetricsCalculatorService { if (!currentOrgData || !previousOrgData) { Logger.debug(`No series data available for ${orgId}`); - return { current: 0, previous: 0, change: 0 }; + return emptyResponse; } const currentData = currentOrgData[this.roundToStartOfDay(dateRange.to_date)]; @@ -87,7 +89,7 @@ export class MetricsCalculatorService { if (!currentData || !previousData) { Logger.debug(`No data available for ${orgId}`); - return { current: 0, previous: 0, change: 0 }; + return emptyResponse; } const current = Number(currentData || 0); From 9ea8c3c3825cfe7ad59ebe853467148b535c5dc6 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:49:18 +0200 Subject: [PATCH 27/31] fix: refactpr --- .../usage-insights/usage-insights.usecase.ts | 151 +++++++++++++----- 1 file changed, 107 insertions(+), 44 deletions(-) diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index fe2ed46e0ed..09babde0881 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -8,6 +8,7 @@ import { IOrganizationMetrics, MixpanelInboxSeriesNameEnum, MixpanelTriggerEventNameEnum, + ISeriesData, } from '../../types/usage-insights.types'; import { MixpanelService } from '../../services/mixpanel.service'; import { MetricsCalculatorService } from '../../services/metrics-calculator.service'; @@ -29,6 +30,22 @@ interface IOrganizationData { }; } +interface IProcessedSeriesData { + triggerEvents: { + current: ISeriesData; + previous: ISeriesData; + }; + workflowSteps: { + current: ISeriesData; + previous: ISeriesData; + }; +} + +interface IProcessedInboxData { + current: Record; + previous: Record; +} + @Injectable() export class UsageInsights { constructor( @@ -75,70 +92,115 @@ export class UsageInsights { Logger.debug('Usage Insights execution completed successfully'); } + private processSeriesData(mixpanelData: IMixpanelTriggerResponse): IProcessedSeriesData { + return { + triggerEvents: { + current: mixpanelData.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT], + previous: mixpanelData.time_comparison.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT], + }, + workflowSteps: { + current: mixpanelData.series[MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP], + previous: mixpanelData.time_comparison.series[MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP], + }, + }; + } + + private processInboxData(inboxData: IMixpanelInboxResponse): IProcessedInboxData { + const inboxSeries = inboxData?.series ?? {}; + const previousInboxSeries = inboxData?.time_comparison.series ?? {}; + + return { + current: { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES], + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: + inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION], + }, + previous: { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: + previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: + previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES], + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: + previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION], + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: + previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION], + }, + }; + } + + private getOrganizationInboxData(inboxData: IMixpanelInboxResponse, orgId: string) { + const currentInboxData: Record = { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: inboxData.series[ + MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED + ][orgId] as IChannelData, + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: inboxData.series[ + MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES + ][orgId] as IChannelData, + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: inboxData.series[ + MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION + ][orgId] as IChannelData, + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxData.series[ + MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION + ][orgId] as IChannelData, + }; + + const previousInboxData: Record = { + [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: inboxData.time_comparison.series[ + MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED + ][orgId] as IChannelData, + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: inboxData.time_comparison.series[ + MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES + ][orgId] as IChannelData, + [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: inboxData.time_comparison.series[ + MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION + ][orgId] as IChannelData, + [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxData.time_comparison.series[ + MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION + ][orgId] as IChannelData, + }; + + return { + current: currentInboxData, + previous: previousInboxData, + }; + } + private async processOrganization( orgId: string, mixpanelData: IMixpanelTriggerResponse, inboxData: IMixpanelInboxResponse ) { Logger.debug('Processing Mixpanel and Inbox data'); - // Trigger Workflow data - const triggerEventSeries = mixpanelData.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]; - const triggerEventPreviousSeries = - mixpanelData.time_comparison.series[MixpanelTriggerEventNameEnum.NOTIFICATION_SUBSCRIBER_EVENT]; - const processWorkflowSeries = mixpanelData.series[MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP]; - const previousProcessWorkflowSeries = - mixpanelData.time_comparison.series[MixpanelTriggerEventNameEnum.PROCESS_WORKFLOW_STEP]; - - // Inbox data - const inboxSeries = inboxData?.series ?? {}; - const previousInboxSeries = inboxData?.time_comparison.series ?? {}; - const inboxSessionInitializedSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]; - const inboxUpdatePreferencesSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]; - const inboxMarkNotificationSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]; - const inboxUpdateActionSeries = inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]; - const previousInboxSessionInitializedSeries = - previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]; - const previousInboxUpdatePreferencesSeries = - previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]; - const previousInboxMarkNotificationSeries = - previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]; - const previousInboxUpdateActionSeries = previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]; + // Process series data for triggers and workflows + const seriesData = this.processSeriesData(mixpanelData); if ( - !triggerEventSeries || - !processWorkflowSeries || - !triggerEventPreviousSeries || - !previousProcessWorkflowSeries + !seriesData.triggerEvents.current || + !seriesData.workflowSteps.current || + !seriesData.triggerEvents.previous || + !seriesData.workflowSteps.previous ) { Logger.error('Required series data missing from Mixpanel response'); return; } + // Construct organization data for metrics calculation const organizationData: IOrganizationData = { workflowTrigger: { - current: triggerEventSeries[orgId], - previous: triggerEventPreviousSeries[orgId], + current: seriesData.triggerEvents.current[orgId] as IChannelData, + previous: seriesData.triggerEvents.previous[orgId] as IChannelData, }, stepProcessing: { - current: processWorkflowSeries[orgId], - previous: previousProcessWorkflowSeries[orgId], - }, - inbox: { - current: { - [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: inboxSessionInitializedSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: inboxUpdatePreferencesSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: inboxMarkNotificationSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxUpdateActionSeries[orgId], - }, - previous: { - [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: previousInboxSessionInitializedSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: previousInboxUpdatePreferencesSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: previousInboxMarkNotificationSeries[orgId], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: previousInboxUpdateActionSeries[orgId], - }, + current: seriesData.workflowSteps.current[orgId] as IChannelData, + previous: seriesData.workflowSteps.previous[orgId] as IChannelData, }, + inbox: this.getOrganizationInboxData(inboxData, orgId), }; const dateRange = this.metricsCalculator.getSeriesDateRange( @@ -146,6 +208,7 @@ export class UsageInsights { organizationData.workflowTrigger.previous ); + // Calculate final metrics const metrics: IOrganizationMetrics = { eventTriggers: this.metricsCalculator.calculateEventTriggersMetrics( organizationData.workflowTrigger.current, From 69a10f80a57b9f1ba47d9e8481229b99e001eb96 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:50:46 +0200 Subject: [PATCH 28/31] fix: r emov unused --- .../usage-insights/usage-insights.usecase.ts | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts index 09babde0881..74526d95335 100644 --- a/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts +++ b/apps/api/src/app/insights/usecases/usage-insights/usage-insights.usecase.ts @@ -105,33 +105,6 @@ export class UsageInsights { }; } - private processInboxData(inboxData: IMixpanelInboxResponse): IProcessedInboxData { - const inboxSeries = inboxData?.series ?? {}; - const previousInboxSeries = inboxData?.time_comparison.series ?? {}; - - return { - current: { - [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: - inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: - inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES], - [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: - inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: inboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION], - }, - previous: { - [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: - previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES]: - previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_PREFERENCES], - [MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION]: - previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_MARK_NOTIFICATION], - [MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION]: - previousInboxSeries[MixpanelInboxSeriesNameEnum.INBOX_UPDATE_ACTION], - }, - }; - } - private getOrganizationInboxData(inboxData: IMixpanelInboxResponse, orgId: string) { const currentInboxData: Record = { [MixpanelInboxSeriesNameEnum.INBOX_SESSION_INITIALIZED]: inboxData.series[ From 31732739f35cbd8cbfab774e0a5e1b01d6ad8036 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:52:06 +0200 Subject: [PATCH 29/31] fix: validation --- apps/api/src/app/insights/insights.controller.ts | 2 +- packages/shared/src/types/feature-flags.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/app/insights/insights.controller.ts b/apps/api/src/app/insights/insights.controller.ts index f1f06983228..623b0bc08f7 100644 --- a/apps/api/src/app/insights/insights.controller.ts +++ b/apps/api/src/app/insights/insights.controller.ts @@ -26,7 +26,7 @@ export class InsightsController { }) async executeInsights(@Query('organizationId') organizationId: string) { const isAllowedToTestInsights = await this.featureFlagsService.get( - FeatureFlagsKeysEnum.IS_ALLOWED_TO_TEST_INSIGHTS, + FeatureFlagsKeysEnum.IS_ALLOWED_TO_TEST_INSIGHTS_ENABLED, false, { organizationId, diff --git a/packages/shared/src/types/feature-flags.ts b/packages/shared/src/types/feature-flags.ts index ac585819398..7a25b4875f4 100644 --- a/packages/shared/src/types/feature-flags.ts +++ b/packages/shared/src/types/feature-flags.ts @@ -50,5 +50,5 @@ export enum FeatureFlagsKeysEnum { IS_ND_INTEGRATION_STORE_ENABLED = 'IS_ND_INTEGRATION_STORE_ENABLED', IS_ND_SMS_CHAT_PUSH_ENABLED = 'IS_ND_SMS_CHAT_PUSH_ENABLED', IS_USAGE_INSIGHTS_ENABLED = 'IS_USAGE_INSIGHTS_ENABLED', - IS_ALLOWED_TO_TEST_INSIGHTS = 'IS_ALLOWED_TO_TEST_INSIGHTS', + IS_ALLOWED_TO_TEST_INSIGHTS_ENABLED = 'IS_ALLOWED_TO_TEST_INSIGHTS_ENABLED', } From 465427db8a1ccb9fe74c98673f365a4f00347689 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 19:54:18 +0200 Subject: [PATCH 30/31] fix: remove pr info --- libs/notifications/package.json | 2 +- .../workflows/usage-insights/sample-data.ts | 85 ------------------- 2 files changed, 1 insertion(+), 86 deletions(-) delete mode 100644 libs/notifications/src/workflows/usage-insights/sample-data.ts diff --git a/libs/notifications/package.json b/libs/notifications/package.json index 2f0d242b1e8..ebf070461f6 100644 --- a/libs/notifications/package.json +++ b/libs/notifications/package.json @@ -20,7 +20,7 @@ "test:watch": "echo 'Not tests available'", "watch:build": "tsc -p tsconfig.json -w", "reset-hard": "git clean -dfx && git reset --hard && pnpm install", - "start:studio": "novu dev --port 3000 --route /v1/bridge/novu --dashboard-url http://localhost:4201" + "start:studio": "novu dev --port 3000 --route /v1/bridge/novu" }, "dependencies": { "@react-email/components": "^0.0.15", diff --git a/libs/notifications/src/workflows/usage-insights/sample-data.ts b/libs/notifications/src/workflows/usage-insights/sample-data.ts deleted file mode 100644 index 05a6b7fa37f..00000000000 --- a/libs/notifications/src/workflows/usage-insights/sample-data.ts +++ /dev/null @@ -1,85 +0,0 @@ -import { IUsageEmailData } from './types'; - -export const sampleUsageData: IUsageEmailData = { - organizationName: 'dima test org 2', - period: { - current: '2024-01-01', - previous: '2023-01-01', - }, - subscriberNotifications: { - current: 86, - previous: 161, - change: -46.58385093167702, - }, - channelBreakdown: { - push: { - current: 4, - previous: 29, - change: -86.20689655172413, - }, - trigger: { - current: 86, - previous: 161, - change: -46.58385093167702, - }, - email: { - current: 86, - previous: 161, - change: -46.58385093167702, - }, - }, - inboxMetrics: { - sessionInitialized: { - current: 350009, - previous: 1110879, - change: -68.49260810583331, - }, - updatePreferences: { - current: 0, - previous: 2, - change: -100, - }, - markNotification: { - current: 74, - previous: 249, - change: -70.28112449799197, - }, - updateAction: { - current: 0, - previous: 0, - change: 0, - }, - }, - workflowStats: { - 'incorrect-password': { - current: 1, - previous: 1, - change: 0, - }, - FILE_UPLOAD: { - current: 4, - previous: 29, - change: -86.20689655172413, - }, - 'User Welcome Email': { - current: 2, - previous: 3, - change: -33.33333333333333, - }, - 'Schedule Project': { - current: 68, - previous: 124, - change: -45.16129032258064, - }, - 'Client UserAccount verification': { - current: 1, - previous: 3, - change: -66.66666666666666, - }, - 'Account Verification': { - current: 10, - previous: 1, - change: 900, - }, - }, -}; From 325762b71010d41dbbacd911964272d269f141f9 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 22 Dec 2024 20:19:53 +0200 Subject: [PATCH 31/31] fix: import --- apps/api/src/app/insights/insights.module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/api/src/app/insights/insights.module.ts b/apps/api/src/app/insights/insights.module.ts index 95798a88cfe..df0923c6116 100644 --- a/apps/api/src/app/insights/insights.module.ts +++ b/apps/api/src/app/insights/insights.module.ts @@ -5,7 +5,6 @@ import { NotificationRepository, CommunityOrganizationRepository, } from '@novu/dal'; -import { EEOrganizationRepository } from '@novu/ee-auth'; import { USE_CASES } from './usecases'; import { SharedModule } from '../shared/shared.module'; import { InsightsInitializerService } from './services/insights-initializer.service'; @@ -22,7 +21,6 @@ import { InsightsController } from './insights.controller'; OrganizationRepository, MessageRepository, NotificationRepository, - EEOrganizationRepository, CommunityOrganizationRepository, MixpanelService, MetricsCalculatorService,