Skip to main content

IndependentViewTelemetryOptions Interface

Options for supplying a telemetry logger to an independent tree view.

This API is provided as an alpha preview and may change without notice.

To use, import via fluid-framework/alpha.

For more information about our API support guarantees, see here.

Input

This type is "input," meaning that code outside of the library defining it should not read from it. Future versions of this type may add optional members or make typing of members more general.

Signature

export interface IndependentViewTelemetryOptions

Remarks

Events emitted by the independent tree are tagged with the independentView namespace. If no logger is provided, telemetry events are dropped.

Properties

PropertyAlertsModifiersTypeDescription
loggerAlphaoptional, readonlyITelemetryBaseLogger | undefinedOptional logger for telemetry.

Property Details

logger

Optional logger for telemetry.

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

readonly logger?: ITelemetryBaseLogger | undefined;

Type: ITelemetryBaseLogger | undefined