Skip to main content
Version: v1

ISummaryRuntimeOptions Interface

Signature

export interface ISummaryRuntimeOptions

Properties

PropertyAlertsModifiersTypeDescription
disableIsolatedChannelsoptionalboolean
disableSummariesDeprecatedoptionalboolean
initialSummarizerDelayMsDeprecatedoptionalnumber
maxOpsSinceLastSummaryDeprecatedoptionalnumber
summarizerClientElectionDeprecatedoptionalboolean
summarizerOptionsDeprecatedoptionalReadonly<Partial<ISummarizerOptions>>
summaryConfigOverridesoptionalISummaryConfigurationOverride summary configurations set by the server.

Property Details

disableIsolatedChannels

Signature

disableIsolatedChannels?: boolean;

Type: boolean

disableSummaries

This API is deprecated and will be removed in a future release.
  • use summaryConfigOverrides.disableSummaries instead. Flag that disables summaries if it is set to true.

Signature

disableSummaries?: boolean;

Type: boolean

initialSummarizerDelayMs

This API is deprecated and will be removed in a future release.
  • use summaryConfigOverrides.initialSummarizerDelayMs instead. Delay before first attempt to spawn summarizing container.

Signature

initialSummarizerDelayMs?: number;

Type: number

maxOpsSinceLastSummary

This API is deprecated and will be removed in a future release.
  • use summaryConfigOverrides.maxOpsSinceLastSummary instead. Defaults to 7000 ops

Signature

maxOpsSinceLastSummary?: number;

Type: number

summarizerClientElection

This API is deprecated and will be removed in a future release.
  • use summaryConfigOverrides.summarizerClientElection instead. Flag that will enable changing elected summarizer client after maxOpsSinceLastSummary. This defaults to false (disabled) and must be explicitly set to true to enable.

Signature

summarizerClientElection?: boolean;

Type: boolean

summarizerOptions

This API is deprecated and will be removed in a future release.
  • use summaryConfigOverrides.state = "DisableHeuristics" instead. Options that control the running summarizer behavior.

Signature

summarizerOptions?: Readonly<Partial<ISummarizerOptions>>;

Type: Readonly<Partial<ISummarizerOptions>>

summaryConfigOverrides

Override summary configurations set by the server.

Signature

summaryConfigOverrides?: ISummaryConfiguration;

Type: ISummaryConfiguration