From edd56527adf2d82720282a3b2b47e19849f95d48 Mon Sep 17 00:00:00 2001 From: SamarS1ngh <112770584+SamarS1ngh@users.noreply.github.com> Date: Sat, 22 Oct 2022 22:21:47 +0530 Subject: [PATCH] Added instrumentation, telemetry, monitoring (#2691) * Added instrumentation, telemetry, monitoring There was no data on instrumentation, monitoring, and telemetry, so I decided to contribute and help others by also providing links. * Update content/roadmaps/101-backend/content/123-scalability/101-instrumentation-monitoring-telemetry.md * Update content/roadmaps/101-backend/content/123-scalability/101-instrumentation-monitoring-telemetry.md Co-authored-by: Kamran Ahmed --- .../101-instrumentation-monitoring-telemetry.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/123-scalability/101-instrumentation-monitoring-telemetry.md b/content/roadmaps/101-backend/content/123-scalability/101-instrumentation-monitoring-telemetry.md index 742080177..75e661840 100644 --- a/content/roadmaps/101-backend/content/123-scalability/101-instrumentation-monitoring-telemetry.md +++ b/content/roadmaps/101-backend/content/123-scalability/101-instrumentation-monitoring-telemetry.md @@ -1 +1,12 @@ -# Instrumentation monitoring telemetry \ No newline at end of file +# Instrumentation, Monitoring, and Telemetry + +Instrumentation refers to the measure of a product's performance, in order to diagnose errors and to write trace information. Instrumentation can be of two types: source instrumentation and binary instrumentation. + +Backend monitoring allows the user to view the performance of infrastructure i.e. the components that run a web application. These include the HTTP server, middleware, database, third-party API services, and more. + +Telemetry is the process of continuously collecting data from different components of the application. This data helps engineering teams to troubleshoot issues across services and identify the root causes. In other words, telemetry data powers observability for your distributed applications. + +Free Content +What is Instrumentation? +What is Monitoring? +What is Telemetry?