Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 71 additions & 41 deletions examples/k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ data:
exporters:
opencensus:
endpoint: "otel-collector.default:55678" # TODO: Update me
processors:
queued_retry:
num_workers: 4
queue_size: 100
retry_on_failure: true
extensions:
zpages: {}
services:
extensions: [zpages]
pipelines:
traces:
receivers: [opencensus]
processors: [queued_retry]
exporters: [opencensus]
---
apiVersion: extensions/v1beta1
kind: DaemonSet
Expand All @@ -32,9 +46,9 @@ spec:
spec:
containers:
- command:
- "/otelsvc_agent_linux"
- "/usr/bin/otelcol"
- "--config=/conf/otel-agent-config.yaml"
image: omnition/opencensus-agent:0.1.6
image: omnition/opentelemetry-collector:v0.2.0
name: otel-agent
resources:
limits:
Expand All @@ -44,11 +58,11 @@ spec:
cpu: 100m
memory: 100Mi
ports:
- containerPort: 55678
- containerPort: 55679
# - containerPort: 14267
# - containerPort: 14268
# - containerPort: 9411
- containerPort: 55678 # Default Opencensus receiver port.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the current ConfigMap for otel-agnet, the open census endpoint is not set

I am not sure if it means the open census receiver is open or not, while the container port 55678 is open here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OpenCensus receiver has a default port so once it is specified in the receiver list it will be accepting traffic on 55678.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the explanation.

- containerPort: 55679 # ZPages endpoint.
# - containerPort: 14267 # Default Jaeger TChannel port.
# - containerPort: 14268 # Default Jaeger HTTP receiver port.
# - containerPort: 9411 # Default Zipkin receiver port.
volumeMounts:
- name: otel-agent-config-vol
mountPath: /conf
Expand Down Expand Up @@ -78,27 +92,38 @@ data:
max_connection_age-grace: 30s
jaeger: {}
zipkin: {}
# Can only use one exporter
# exporters:
# jaeger:
# collector_endpoint: "http://jaeger.default:14268/api/traces"
# zipkin: {}
queued-exporters:
omnition:
batching:
enable: true
timeout: 5s
send_batch_size: 1024
processors:
queued_retry:
num_workers: 16
queue_size: 10000
retry_on_failure: true
opencensus:
compression: "gzip"
endpoint: "ingest.omnition.io:443"
headers: { "x-omnition-api-key":"00000000-0000-0000-0000-000000000001" } # TODO: Update me
num_workers: 8
reconnection_delay: 2s
secure: true
batch:
send_batch_size: 1024
timeout: 5s
extensions:
health_check: {}
exporters:
opencensus:
compression: "gzip"
endpoint: "someopencensus.target.com:443" # Replace with a real endpoint.
num_workers: 8
reconnection_delay: 2s
secure: true
zipkin:
url: "http://somezipkin.target.com:9411/api/v2/spans" # Replace with a real endpoint.
jaeger_grpc:
endpoint: "somejaegergrpc.target.com:55678" # Replace with a real endpoint.
services:
extensions: [health_check]
pipelines:
traces/1:
receivers: [opencensus, zipkin]
processors: [batch, queued_retry]
exporters: [opencensus, zipkin]
traces/2:
receivers: [opencensus, jaeger]
processors: [batch, queued_retry]
exporters: [jaeger_grpc]
---
apiVersion: v1
kind: Service
Expand All @@ -109,16 +134,18 @@ metadata:
component: otel-collector
spec:
ports:
- name: opencensus
- name: opencensus # Default endpoint for Opencensus receiver.
port: 55678
protocol: TCP
targetPort: 55678
# - name: jaeger-tchannel
# port: 14267
# - name: jaeger_thrift_http
# port: 14268
# - name: zipkin
# port: 9411
- name: jaeger_tchannel # Default endpoint for Jaeger TChannel receiver.
port: 14267
- name: jaeger_thrift_http # Default endpoint for Jaeger HTTP receiver.
port: 14268
- name: zipkin # Default endpoint for Zipkin receiver.
port: 9411
- name: metrics # Default endpoint for querying metrics.
port: 8888
selector:
component: otel-collector
---
Expand All @@ -132,7 +159,7 @@ metadata:
spec:
minReadySeconds: 5
progressDeadlineSeconds: 120
replicas: 1
replicas: 1 #TODO - adjust this to your own requirements
template:
metadata:
annotations:
Expand All @@ -145,12 +172,14 @@ spec:
spec:
containers:
- command:
- "/otelsvc_collector_linux"
- "/usr/bin/otelcol"
- "--config=/conf/otel-collector-config.yaml"
# Memory Ballast size should be max 1/3 to 1/2 of memory.
- "--mem-ballast-size-mib=683"
env:
- name: GOGC
value: "80"
image: omnition/opencensus-collector:0.1.6
image: omnition/opentelemetry-collector:v0.2.0
name: otel-collector
resources:
limits:
Expand All @@ -160,10 +189,11 @@ spec:
cpu: 200m
memory: 400Mi
ports:
- containerPort: 55678
# - containerPort: 14267
# - containerPort: 14268
# - containerPort: 9411
- containerPort: 55678 # Default endpoint for Opencensus receiver.
- containerPort: 14267 # Default endpoint for Jaeger TChannel receiver.
- containerPort: 14268 # Default endpoint for Jaeger HTTP receiver.
- containerPort: 9411 # Default endpoint for Zipkin receiver.
- containerPort: 8888 # Default endpoint for querying metrics.
volumeMounts:
- name: otel-collector-config-vol
mountPath: /conf
Expand All @@ -172,11 +202,11 @@ spec:
livenessProbe:
httpGet:
path: /
port: 13133
port: 13133 # Health Check extension default port.
readinessProbe:
httpGet:
path: /
port: 13133
port: 13133 # Health Check extension default port.
volumes:
- configMap:
name: otel-collector-conf
Expand Down