Merge branch 'master' of github.com:dapr/quickstarts into release-1.14

Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com>
This commit is contained in:
Paul Yuknewicz 2024-07-26 17:04:54 -07:00
commit 1eb7ba5ea2
3 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,7 @@
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/@dapr/dapr/-/dapr-3.3.1.tgz",
"integrity": "sha512-rQwN1Ionetna6y36buYkxMX1i4Vy8w+Ni8edpJRLUKwLPA22XwjuVw+UXGfBZkWGG1ggaqCty2x87lQLe8ZYzw==",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.9.3",
"@js-temporal/polyfill": "^0.3.0",

View File

@ -20,6 +20,7 @@
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/@dapr/dapr/-/dapr-3.3.1.tgz",
"integrity": "sha512-rQwN1Ionetna6y36buYkxMX1i4Vy8w+Ni8edpJRLUKwLPA22XwjuVw+UXGfBZkWGG1ggaqCty2x87lQLe8ZYzw==",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.9.3",
"@js-temporal/polyfill": "^0.3.0",

View File

@ -1,6 +1,6 @@
# Observability with Dapr
This quickstart explores the [observability](https://docs.dapr.io/concepts/observability-concept/) capabilities of Dapr. Observability includes metric collection, tracing, logging and health checks. In this quickstart you'll be enabling [distributed tracing](https://docs.dapr.io/operations/observability/tracing/tracing-overview/) on an application without changing any application code or creating a dependency on any specific tracing system. Since Dapr uses [OpenCensus](https://opencensus.io/), a variety of observability tools can be used to view and capture the traces.
This quickstart explores the [observability](https://docs.dapr.io/concepts/observability-concept/) capabilities of Dapr. Observability includes metric collection, tracing, logging and health checks. In this quickstart you'll be enabling [distributed tracing](https://docs.dapr.io/operations/observability/tracing/tracing-overview/) on an application without changing any application code or creating a dependency on any specific tracing system. Dapr works with the Zipkin (great for development) and the Open Telemetry (recommended for production) protocols for distributed traces.
In this quickstart you will: