import { Milliseconds } from '../../models'; import { BaseEvent } from '../BaseEvent'; /** * Fired when any endpoint in the API returns a response. * Measures overall health of the API, as well as user activity. */ export interface EndpointHitEvent extends BaseEvent { endpoint: string; statusCode: number; latencyMs: Milliseconds; errorMessage?: string; } export declare const EndpointHitEventName = "EndpointHitEvent";