You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/docs/articles/orchestrating-cloud-events-with.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Orchestrating CloudEvents with Knative and Zeebe
2
2
3
-
**Author: [Mauricio Salatino (Salaboy)](https://twitter.com/salaboy), Principal Software Engineer @ [Camunda](http://camunda.com) and [LearnK8s](http://learnk8s.io) Instructor**
3
+
**Author: [Mauricio Salatino (Salaboy)](https://twitter.com/salaboy), Principal Software Engineer @ [Camunda](http://camunda.com) and [LearnKube](http://learnkube.com) Instructor**
4
4
5
5
A couple of weeks ago, I presented at the **Knative Meetup** ([Video](https://www.youtube.com/watch?v=msDDdqmyEFA&list=PLQjzPfIiEQLIEpoCPxBYAVrjqy6LxLtQ8), [Slides](https://www.slideshare.net/salaboy/orchestrating-cloud-events-knative-meetup-2020)) about how you can leverage the Cloud Native workflow engine [Zeebe](http://zeebe.io) to understand, enhance and orchestrate your applications that are already using [CloudEvents](https://cloudevents.io).
Copy file name to clipboardExpand all lines: blog/docs/releases/announcing-knative-v1-19-release.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,9 @@ type: "blog"
10
10
11
11
## Announcing Knative v1.19 Release
12
12
13
+
!!! note
14
+
We've discovered severe issues with the OpenTelemetry Prometheus Exporter (see: https://github.com/knative/pkg/issues/3224). We advise users to hold off upgrading until we have new patch releases out.
15
+
13
16
A new version of Knative is now available across multiple components.
Copy file name to clipboardExpand all lines: docs/eventing/observability/accessing-traces.md
+37-30Lines changed: 37 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,22 +8,25 @@ function: how-to
8
8
9
9
# Accessing CloudEvent traces
10
10
11
-
Depending on the request tracing tool that you have installed on your Knative
12
-
Eventing cluster, see the corresponding section for details about how to
13
-
visualize and trace your requests.
11
+
Traces give us the big picture of how events traverse through the system and applications.
12
+
Knative Eventing is instrumented with [OpenTelemetry](https://opentelemetry.io/docs/what-is-opentelemetry/) which can emit traces to a multitude of different backends.
14
13
15
-
## Before you begin
14
+
## Backends
16
15
17
-
You must have a Knative cluster running with the Eventing component installed. [Learn more](../install/README.md).
16
+
### Jaeger V2
18
17
19
-
## Configuring tracing
18
+
Following [these instructions](https://github.com/jaegertracing/jaeger-operator?tab=readme-ov-file#jaeger-v2-operator) to setup Jaeger V2 on Kubernetes and access your traces.
19
+
20
+
## Configuring Eventing Tracing
21
+
22
+
You can update the configuration for tracing in using the [`config-observability` ConfigMap](https://github.com/knative/eventing/blob/main/config/core/configmaps/observability.yaml).
20
23
21
24
With the exception of importers, the Knative Eventing tracing is configured through the
22
-
`config-tracing` ConfigMap in the `knative-eventing` namespace.
25
+
`config-observability` ConfigMap in the `knative-eventing` namespace.
23
26
24
27
Most importers do _not_ use the ConfigMap and instead, use a static 1% sampling rate.
25
28
26
-
You can use the `config-tracing` ConfigMap to configure the following Eventing components:
29
+
You can use the `config-observability` ConfigMap to configure the following Eventing components:
27
30
28
31
- Brokers
29
32
- Triggers
@@ -36,59 +39,61 @@ You can use the `config-tracing` ConfigMap to configure the following Eventing c
36
39
37
40
**Example:**
38
41
39
-
The following example `config-tracing` ConfigMap samples 10% of all CloudEvents:
42
+
The following example `config-observability` ConfigMap samples 10% of all CloudEvents:
To access the traces, you use either the Zipkin or Jaeger tool. Details about using these tools to access traces are provided in the Knative Serving observability section:
86
+
<!--
87
+
TODO - Renable and redo the images when the following test is enabled again
0 commit comments