FluidAppInsightsLoggerConfig Interface
The configuration object for creating the logger via createLogger(client, config).
This API is provided as a beta preview and may change without notice.
To use, import via @fluidframework/app-insights-logger/beta
.
For more information about our API support guarantees, see here.
Signature
export interface FluidAppInsightsLoggerConfig
Properties
Property | Alerts | Type | Description |
---|---|---|---|
filtering | Beta |
{ mode: "inclusive" | "exclusive"; filters?: TelemetryFilter[]; } | This Configuration defines how filtering will be applied to Fluid telemetry events flowing through the logger. This determines which events will be sent to Azure App Insights. |
Property Details
filtering
This Configuration defines how filtering will be applied to Fluid telemetry events flowing through the logger. This determines which events will be sent to Azure App Insights.
This API is provided as a beta preview and may change without notice.
For more information about our API support guarantees, see here.
Signature
filtering: {
mode: "inclusive" | "exclusive";
filters?: TelemetryFilter[];
};
Type: { mode: "inclusive" | "exclusive"; filters?: TelemetryFilter[]; }