diff --git a/docs/griptape-framework/drivers/observability-drivers.md b/docs/griptape-framework/drivers/observability-drivers.md index 41cbf26af2..22ae85a5e5 100644 --- a/docs/griptape-framework/drivers/observability-drivers.md +++ b/docs/griptape-framework/drivers/observability-drivers.md @@ -11,7 +11,7 @@ Observability Drivers are used by [Observability](../structures/observability.md The Griptape Cloud Observability Driver instruments `@observable` functions and methods with metrics and traces for use with the Griptape Cloud. !!! note - For the Griptape Cloud Observability Driver to function as intended, it must be run from within either a Managed Structure on Griptape Cloud, + For the Griptape Cloud Observability Driver to function as intended, it must be run from within either a Managed Structure on Griptape Cloud or locally via the [Skatepark Emulator](https://github.com/griptape-ai/griptape-cli?tab=readme-ov-file#skatepark-emulator). Here is an example of how to use the `GriptapeCloudObservabilityDriver` with the `Observability` context manager to send the telemetry to Griptape Cloud: @@ -45,7 +45,7 @@ from griptape.observability import Observability from opentelemetry.sdk.trace.export import ConsoleSpanExporter, BatchSpanProcessor observability_driver = OpenTelemetryObservabilityDriver( - service_name="my-gt-app", + service_name="name-an-animal", span_processor=BatchSpanProcessor(ConsoleSpanExporter()) )