Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IntervalMetrics

import type { IntervalMetrics } from "https://googleapis.deno.dev/v1/firebasecrashlytics:v1alpha.ts";

A set of computed metric values for a time interval

interface IntervalMetrics {
endTime?: Date;
eventsCount?: bigint;
impactedUsersCount?: bigint;
sessionsCount?: bigint;
startTime?: Date;
}

§Properties

§
endTime?: Date
[src]

The end of the interval covered by the computation.

§
eventsCount?: bigint
[src]

The total count of events in the interval.

§
impactedUsersCount?: bigint
[src]

The number of distinct users in the set of events.

§
sessionsCount?: bigint
[src]

The number of distinct sessions in the set of events.

§
startTime?: Date
[src]

The start of the interval covered by the computation.