GetInstrumentationConfigurationStatus
Source:
src/AWS/ApplicationSignals/GetInstrumentationConfigurationStatus.ts
Runtime binding for
application-signals:GetInstrumentationConfigurationStatus, scoped to
one InstrumentationConfiguration.
Returns the status history (READY/ERROR/ACTIVE/DISABLED) that
instrumented SDK agents reported for the bound configuration during a
time range. Provide the implementation with
Effect.provide(AWS.ApplicationSignals.GetInstrumentationConfigurationStatusHttp).
Monitoring Instrumentation
Section titled “Monitoring Instrumentation”// init — bind the operation to the configurationconst getStatus = yield* AWS.ApplicationSignals.GetInstrumentationConfigurationStatus(probe);
// runtime — the configuration's identity is injected automaticallyconst result = yield* getStatus({ Status: "ACTIVE" });yield* Effect.log(`${result.Events.length} ACTIVE events`);