@ms-cloudpack/external-telemetry
A library for report external telemetry data important to Cloudpack workflows. Data will be reported to Application Insights using Open Telemetry standards and show up on our internal dashboards for monitoring the changes in timings and usage of existing scenarios as we migrate to new Cloudpack-powered workflows.
Example usage
- Create a client:
import { reportExternalTelemetryEvent } from '@ms-cloudpack/external-telemetry';
await reportExternalTelemetryEvent({
eventName: 'LEGACY-START',
attributes: {
'my-attribute': 'value',
},
});