BackgroundI have a containerized Python Flask application that is deployed on Google Cloud Run. I want to extract custom metrics from this app and send them to Google Cloud Monitoring.I followed the ...
I have this easy setup in my ASP.NET Core web app:using Microsoft.AspNetCore.Hosting;using Microsoft.AspNetCore;using Microsoft.Extensions.Configuration;using Microsoft.Extensions....
I am trying to send telemetry data from ASP.NET app to elastic search. (logs, metrics, traces).I tried to log data without APM. Logs are sent to elastic without APM, but trace does not work. To ...
I'm trying to setup Langchain tracing in Azure Monitor (via Application Insights) and I use the following test codeif __name__ == "__main__": configure_azure_monitor(connection_string=...
I am using OpenTelemetry with Node.js in my application running on Google Kubernetes Engine (GKE).The traces are successfully sent to Google Cloud Trace, but in Google Cloud Trace Explorer the ...
I’m using OpenTelemetry in a TypeScript project to send metrics to an OTLP endpoint over HTTPS.import { MeterProvider } from "@opentelemetry/sdk-metrics";import { OTLPMetricExporter } from ...
I am trying to add an ASP.NET Core app to an Aspire dashboard.I did that using this code:builder.AddExternalService("FirstApp", new Uri("http://localhost:5027")) ....
I am using OpenTelemetry, and would like to force a round of meter observations.Normally, I have the metrics report every 10 seconds, but would like to trigger observations of my meter at program ...
I'm writing a Pingora proxy instance. It uses multiple async functions from a trait to indicate various stages. There is a common context that I can provide. I am trying to instrument the whole ...
In kubernetes pod container, there are 2 different dotnet processes, one for the main application and the other for monitoring the application.I have configured Entrypoint as shown below in both ...
new to opentelemetry-cpp, so i wrote a little test app under Ubuntu 22 to generate and send a gRCP log record. The app compiles and runs, and otel collector logs show receiving the message. With that ...
I am using lofgire to send traces, logs and metrics to grafana-otel container. However, in the grafana UI (reachable unter http://localhost:3000 and login is pw: admin & user: admin), only traces ...
To make the export work at all for a native image build, it needs to be enabled during AOT processing. So we have this for the profile used for the build:management.otlp.tracing.export.enabled: true...
I would like to use opentelemetry-cpp ABI version 2 in a Windows VS2022 project. To do this, i am trying to use vcpkg. By default the vcpkg build of opentlemetry-cpp creates ABI version 1 libraries. ...
I've compiled and linked a simple otlp grpc exporter sample program and run it successfully under Ubuntu 22, but can't seem to include the correct libraries to get the program to link under Windows ...