AnalyticsEvent
Home > @backstage/frontend-plugin-api
> AnalyticsEvent
Represents an event worth tracking in an analytics system that could inform how users of a Backstage instance are using its features.
Signature:
export type AnalyticsEvent = {
action: string;
subject: string;
value?: number;
attributes?: AnalyticsEventAttributes;
context: AnalyticsContextValue;
};
References: AnalyticsEventAttributes, AnalyticsContextValue