OpenTelemetry can be used to trace Gin applications for performance issues and bugs. OpenTelemetry is an open-source project under the Cloud Native Computing Foundation (CNCF) that aims to standardize the generation and collection of telemetry data like logs, metrics, and traces.
4 posts tagged with "Go / Golang"
View All TagsHow to set up Golang application performance monitoring with open source monitoring tool - SigNoz
In this article, learn how to setup application monitoring for Golang apps using an open-source solution, SigNoz.
Implementing Distributed Tracing in a Golang application
In this article, we will implement distributed tracing for a Golang application with three microservices. To implement distributed tracing, we will be using open-source solutions - SigNoz and OpenTelemetry, so you can easily follow the tutorial.
Monitor gRPC calls with OpenTelemetry - explained with a Golang example
gRPC (Google Remote Procedure Call) is a high-performance, open-source universal RPC framework that Google developed to achieve high-speed communication between microservices. gRPC has Protobuf (protocol buffers) by default which would format or serialize the messages to a specific format that will be highly packed, highly efficient data. By its virtue of being a lightweight RPC, gRPC is suited for many use-cases.