mirror of https://github.com/dapr/quickstarts.git
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:
commit
1eb7ba5ea2
|
@ -20,6 +20,7 @@
|
||||||
"version": "3.3.1",
|
"version": "3.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/@dapr/dapr/-/dapr-3.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/@dapr/dapr/-/dapr-3.3.1.tgz",
|
||||||
"integrity": "sha512-rQwN1Ionetna6y36buYkxMX1i4Vy8w+Ni8edpJRLUKwLPA22XwjuVw+UXGfBZkWGG1ggaqCty2x87lQLe8ZYzw==",
|
"integrity": "sha512-rQwN1Ionetna6y36buYkxMX1i4Vy8w+Ni8edpJRLUKwLPA22XwjuVw+UXGfBZkWGG1ggaqCty2x87lQLe8ZYzw==",
|
||||||
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@grpc/grpc-js": "^1.9.3",
|
"@grpc/grpc-js": "^1.9.3",
|
||||||
"@js-temporal/polyfill": "^0.3.0",
|
"@js-temporal/polyfill": "^0.3.0",
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
"version": "3.3.1",
|
"version": "3.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/@dapr/dapr/-/dapr-3.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/@dapr/dapr/-/dapr-3.3.1.tgz",
|
||||||
"integrity": "sha512-rQwN1Ionetna6y36buYkxMX1i4Vy8w+Ni8edpJRLUKwLPA22XwjuVw+UXGfBZkWGG1ggaqCty2x87lQLe8ZYzw==",
|
"integrity": "sha512-rQwN1Ionetna6y36buYkxMX1i4Vy8w+Ni8edpJRLUKwLPA22XwjuVw+UXGfBZkWGG1ggaqCty2x87lQLe8ZYzw==",
|
||||||
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@grpc/grpc-js": "^1.9.3",
|
"@grpc/grpc-js": "^1.9.3",
|
||||||
"@js-temporal/polyfill": "^0.3.0",
|
"@js-temporal/polyfill": "^0.3.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Observability with Dapr
|
# 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:
|
In this quickstart you will:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue