Hector Hernandez

Results 177 comments of Hector Hernandez

@philliphoff there is a plan for this SDK to fully support [Open Telemetry](https://github.com/open-telemetry/opentelemetry-js) next semester, as part of that console OpenTelemetry [exporter](https://github.com/open-telemetry/opentelemetry-js/blob/main/packages/opentelemetry-tracing/src/export/ConsoleSpanExporter.ts) would be available more info [here](https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-tracing)

@philliphoff Following code will achieve what you are looking for with current version of the SDK ``` appInsights.setup("123").start(); appInsights.defaultClient.addTelemetryProcessor((envelope) => { console.log(envelope); return false; // Data will not be sent...

@jpolvora regex validating the iKey is available [here](https://github.com/microsoft/ApplicationInsights-node.js/blob/develop/Library/Config.ts#L198, "123" is not valid but you can use dummy ones like "00000000-0000-0000-0000-000000000000", the important part here would be the telemetry processors preventing...

@1kevgriff we have some retry logic for whenever telemetry cannot reach the ingestion endpoint in the SDK, for that we store the telemetry in disk and will try to send...

@1kevgriff is the issue still going?, you can enable extra logging and same errors on log file to further understand why the telemetry is failing to be delivered, more info...

@christianvanr we will be releasing a new version of the SDK this week.

@bivas6, @orgads, Application Insights SDK will try to use the correlation context using incoming HTTP request headers, in this case receiver doesn't have any trace headers, is making a new...

@orgads the way we hook to Azure SDKs is through [@azure/core-tracing](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/core-tracing) package, we do not do any patching for specific SDKs, looks like "subscribe" functionality is only present in Azure...

@tudor33sud both options look fine to me, I can look into the issue you are having with option 1, that should work too, can you provide some test traceParent that...

@sigmaadam to be able to capture mongoDB telemetry, Application Insights SDK must be loaded before MondoDB, there is some patching in place and import order is important, please double check...