Interface DataChangeEvent

Tracking event fired when the report's visible data changes.

  • type — discriminant: 'DataChange'
  • reportType — reverse-DNS report identifier (e.g. 'net.leanix.matrix')
  • baseFactSheetType — primary Fact Sheet type rendered in the report (e.g. 'Application')
  • view — key of the currently active view, if any
  • cluster — relation names used for grouping/clustering the data
  • drilldown — relation names used for hierarchy drill-down
  • suggestions — opaque map of suggestion metadata attached to this event
interface DataChangeEvent {
    baseFactSheetType?: string;
    cluster: string[];
    drilldown: string[];
    reportType: string;
    suggestions: Record<string, unknown>;
    type: "DataChange";
    view?: string;
}

Properties

baseFactSheetType?: string
cluster: string[]
drilldown: string[]
reportType: string
suggestions: Record<string, unknown>
type: "DataChange"
view?: string

Generated using TypeDoc