diff --git a/configuration/javascript/sdk/order-processor/package-lock.json b/configuration/javascript/sdk/order-processor/package-lock.json index efd37a977..e58731d5e 100644 --- a/configuration/javascript/sdk/order-processor/package-lock.json +++ b/configuration/javascript/sdk/order-processor/package-lock.json @@ -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", diff --git a/cryptography/javascript/sdk/crypto-quickstart/package-lock.json b/cryptography/javascript/sdk/crypto-quickstart/package-lock.json index c86be3f86..bf811dccb 100644 --- a/cryptography/javascript/sdk/crypto-quickstart/package-lock.json +++ b/cryptography/javascript/sdk/crypto-quickstart/package-lock.json @@ -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", diff --git a/tutorials/observability/README.md b/tutorials/observability/README.md index 1e418acb8..1a60834f3 100644 --- a/tutorials/observability/README.md +++ b/tutorials/observability/README.md @@ -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: