12a13
> disable_host_header_fallback: true
15,19d15
< dimensions:
< destination_port: string(destination.port)
< request_host: request.host
< response_code: string(response.code)
< response_code_details: response.code_details
20a17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
istiod: | |
telemetry: | |
enabled: true | |
v2: | |
enabled: true | |
metadataExchange: | |
wasmEnabled: false | |
prometheus: | |
enabled: true | |
wasmEnabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
istiod: | |
telemetry: | |
enabled: true | |
v2: | |
enabled: true | |
metadataExchange: | |
wasmEnabled: false | |
prometheus: | |
enabled: true | |
wasmEnabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "poetry-otel-grpc" | |
version = "0.1.0" | |
description = "" | |
authors = ["Maintainer Name <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.9" | |
[tool.poetry.dev-dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r ./manifests/opentelemetry-operator.clusterserviceversion.yaml ../../../../opentelemetry-operator/bundle/manifests/opentelemetry-operator.clusterserviceversion.yaml | |
21c21 | |
< containerImage: quay.io/opentelemetry/opentelemetry-operator:0.21.0 | |
--- | |
> containerImage: quay.io/opentelemetry/opentelemetry-operator | |
24,25c24,25 | |
< operators.operatorframework.io/builder: operator-sdk-v1.3.0 | |
< operators.operatorframework.io/project_layout: go | |
--- | |
> operators.operatorframework.io/builder: operator-sdk-v1.7.1+git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remote_config_sources: | |
vault: | |
# vault connection config | |
zookeeper: | |
# zookeeper connection config | |
# any given config key for any component can be replaced with | |
# $load_from_remote and config loader/parser would replace it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
import time | |
from opentelemetry import trace | |
from opentelemetry.sdk.trace import TracerProvider | |
from opentelemetry.sdk.trace.export import ConsoleSpanExporter | |
from opentelemetry.sdk.trace.export import SimpleExportSpanProcessor | |
tracer_provider = TracerProvider() | |
trace.set_tracer_provider(tracer_provider) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"flag" | |
) | |
var ( | |
listenAddr string | |
) |
I hereby claim:
- I am owais on github.
- I am owais (https://keybase.io/owais) on keybase.
- I have a public key whose fingerprint is 934A 8EDB EB0C 4C8C B468 284F 5525 61F9 327B D797
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dbus | |
import dbus.service | |
import dbus.mainloop.glib | |
from gi.repository import GObject | |
class Service(dbus.service.Object): | |
def __init__(self, message): | |
self._message = message |
NewerOlder