Hector Hernandez

Results 177 comments of Hector Hernandez

Forgot to add the output, only testCounter2 is available in console { descriptor: { name: 'testCounter2', type: 'COUNTER', description: '', unit: '', valueType: 1 }, dataPointType: 3, dataPoints: [ {...

@Ramemis which version of Application Insights are you using? this error is usually triggered when multiple global registrations occur in OpenTelemetry, that could be caused by having multiple telemetry clients...

@eric-gonzalez-tfs sorry for the delay, yes this a topic we had been discussing last few weeks, because of OpenTelemetry architecture having multiple clients independent on each other is not achievable...

You can do something like this ``` import { useAzureMonitor, AzureMonitorOpenTelemetryOptions } from "applicationinsights"; import { AzureMonitorTraceExporter, ApplicationInsightsSampler } from "@azure/monitor-opentelemetry-exporter"; import { BatchSpanProcessor} from "@opentelemetry/sdk-trace-base"; import { NodeTracerProvider, NodeTracerConfig...

Currently we call _updateMetricInstruments whenever an "Instrumentation" class is instantiated, this method will create the "Metric Instruments" through a Meter obtained using the current MeterProvider, so if the "Instrumentation" is...

@kiran8983 this is usually the kind of error when you try to run Node.js SDK in the browser or some where Node.js native libraries are not available, not super familiar...

@marcus13371337 current behavior is by design and was based on current OpenTelemetry specification, we use specific span attributes to build other properties of the telemetry event depending on the type,...

@marcus13371337 yeah documentation could be improved here, you can in fact add a custom property but it cannot have existing semantic conventions names, like "db.*" we will have a sync...

@marcus13371337 about the missing traces, are these automatically or manually generated?, if auto generated, are these console, bunyan or winston? also please query the traces table directly in Logs to...

@marcus13371337 got it I got confused a little bit, I though you were talking about Application Insights Traces, basically OpenTelemetry Logs, Bunyan and Winston are JS libraries for logging, so...