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 hidden or 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 ( | |
"fmt" | |
"math/rand" | |
"slices" | |
"strconv" | |
"time" | |
) |
This file contains hidden or 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
Game State: | |
Score: 0 | |
Dealer: Player 4 (Team 2) | |
Deck: A♠️ 5♦️ 10♦️ 5♣️ Q♠️ 10♠️ K♥️ 10♥️ K♦️ 9♠️ 3♦️ 5♥️ 6♦️ J♥️ A♣️ 10♣️ J♣️ 8♣️ 7♠️ 8♦️ 7♦️ J♠️ 6♥️ 3♥️ 5♠️ 7♥️ Q♥️ 3♠️ 9♥️ 4♠️ 7♣️ 6♠️ K♠️ 4♦️ 9♦️ Q♦️ 8♥️ 8♠️ 9♣️ Q♣️ A♦️ K♣️ A♥️ J♦️ 3♣️ 4♥️ 4♣️ 6♣️ | |
Enter your bid (0 to pass) | |
> Player 1:6 | |
Enter your bid (0 to pass) |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 | |
) |
NewerOlder