UNPKG

@janus-idp/backstage-plugin-analytics-module-matomo

Version:

This plugin provides an opinionated implementation of the Backstage Analytics API for Matomo Analytics. Once installed and configured, analytics events will be sent to Matomo as your users navigate and use your Backstage instance.

20 lines (18 loc) 329 B
export interface Config { app?: { analytics: { matomo: { /** * Matomo host URL * @visibility frontend */ host: string; /** * Matomo siteId for the Backstage Website * @visibility frontend */ siteId: string; }; }; }; }