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
@@ -50,21 +50,21 @@ ScaledObject CR, and it provides a limited subset of features as PromQL.
50
50
51
51
#### 1. convert and react on metrics from OpenCensus
52
52
53
-
By specifying an [opencensus receiver](https://github.com/kedify/otel-add-on/blob/v0.0.0-1/helmchart/otel-add-on/values.yaml#L112) in the helm chart values for OTEL collector,
53
+
By specifying an [opencensus receiver](https://github.com/kedify/otel-add-on/blob/v0.0.0-1/helmchart/otel-add-on/values.yaml#L112) in the helm chart values for OTel collector,
54
54
we will get the ability to get those metrics into our scaler.
55
55
56
56
#### 2. convert and react on metrics from any other upstream receiver
57
-
OTEL collector contains [numerous](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver) integrations on the receiver part.
58
-
All of these various receivers open new ways of how to turn metric from OTEL receiver into KEDA scaler. For instance by using
57
+
OTel collector contains [numerous](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver) integrations on the receiver part.
58
+
All of these various receivers open new ways of how to turn metric from OTel receiver into KEDA scaler. For instance by using
59
59
[sqlqueryreceiver](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sqlqueryreceiver), one can achieve similar goals as with
60
60
[MySQL](https://keda.sh/docs/2.15/scalers/mysql/) or [PostgreSQL](https://keda.sh/docs/2.15/scalers/postgresql/) scalers.
61
61
By using [githubreceiver](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/githubreceiver), one can hook to
62
62
metrics from GitBub, etc.
63
63
64
64
#### 3. process the metrics before reaching the scaler
that are being applied on all incoming metrics/spans/traces and one achieve for instance metric [filtering](https://github.com/kedify/otel-add-on/blob/v0.0.0-1/helmchart/otel-add-on/values.yaml#L138-L143)
67
-
this way. So that not all the metric data are passed to scaler's short term memory. This way we can keep the OTEL scaler pretty lightweight.
67
+
this way. So that not all the metric data are passed to scaler's short term memory. This way we can keep the OTel scaler pretty lightweight.
@@ -74,9 +74,9 @@ If the simple metric query is not enough and one requires to combine multiple me
74
74
arithmetic operations on the metrics, there is the [Metrics Generation Processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/metricsgenerationprocessor)
75
75
available as an option
76
76
77
-
#### 4. OTEL patterns (metric pipelines)
78
-
Basically any scenario described in [OTEL patterns](https://github.com/jpkrohling/opentelemetry-collector-deployment-patterns) or [architecture](https://opentelemetry.io/docs/collector/architecture/)
79
-
should be supported. So no matter how the OTEL collectors are deployed, whether it's a fleet of sidecar containers deployed alongside each workload or
77
+
#### 4. OTel patterns (metric pipelines)
78
+
Basically any scenario described in [OTel patterns](https://github.com/jpkrohling/opentelemetry-collector-deployment-patterns) or [architecture](https://opentelemetry.io/docs/collector/architecture/)
79
+
should be supported. So no matter how the OTel collectors are deployed, whether it's a fleet of sidecar containers deployed alongside each workload or
80
80
some complex pipeline that spans multiple Kubernetes clusters, you will be covered.
81
81
82
82
## Installation
@@ -131,9 +131,9 @@ curl -X 'GET' \
131
131
}
132
132
```
133
133
134
-
### Configuration for OTEL collector
134
+
### Configuration for OTel collector
135
135
136
-
This repo has the OTEL collector helm chart as a dependency and some issues in the configuration are guarded
136
+
This repo has the OTel collector helm chart as a dependency and some issues in the configuration are guarded
137
137
by their upstream JSON Schema, but some are not, and it's a good idea to run the validator (especially if it's part
0 commit comments