Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 1.84 KB

cloud-trace.md

File metadata and controls

59 lines (44 loc) · 1.84 KB

Accessing Event Traces in Cloud Trace

Enable the Cloud Trace API

GCP projects have the Cloud Trace API enabled by default. If it has been disabled, follow these instructions to enable the API.

Add the Cloud Trace Agent Role to Dataplane Service Accounts

Follow these instructions to grant dataplane service accounts roles/cloudtrace.agent.

Enable Tracing in the config-tracing ConfigMap

Edit the config-tracing ConfigMap under the events-system namespace in Cloud Console or with the following kubectl command:

kubectl edit configmap -n events-system config-tracing

and add the following entries to the data section:

data:
  backend: stackdriver
  stackdriver-project-id: <project-id> # Replace with your project's ID.
  sample-rate: 0.01 # Replace with the rate you want. Currently 1%.

Accessing Traces in Cloud Console

Note: The following instructions are written for the Trace list UI preview. Filter syntax will differ when using the classic Trace list UI.

Navigate to Tools > Trace > Trace list and add messaging.system:knative to the trace filter to select only knative eventing traces. To search for traces through a particular broker or trigger, the following filter can be added:

SpanName:Recv.broker:<broker-name>.<broker-namespace>
SpanName:trigger:<trigger-name>.<trigger-namespace>

The following additional filters can be used to filter by event attributes:

messaging.message_id:<event-id>
cloudevents.type:<event-type>
cloudevents.source:<event-source>
cloudevents.subject:<event-subject>
cloudevents.datacontenttype:<content-type>
cloudevents.specversion:<cloudevent-version>