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
Events: | |
Type Reason Age From Message | |
---- ------ ---- ---- ------- | |
Normal Scheduled 14m default-scheduler Successfully assigned kube-system/cilium-4mnj8 to node1 | |
Normal Pulled 14m kubelet, node1 Container image "docker.io/library/busybox:1.28.4" already present on machine | |
Normal Created 14m kubelet, node1 Created container | |
Normal Started 14m kubelet, node1 Started container | |
Normal Pulled 12m (x7 over 14m) kubelet, node1 Successfully pulled image "docker.io/cilium/cilium:v1.4.1" | |
Warning Failed 12m (x7 over 14m) kubelet, node1 Error: Couldn't find key disable-ipv4 in ConfigMap kube-system/cilium-config | |
Normal Pulling 3m56s (x44 over 14m) kubelet, node1 pulling image "docker.io/cilium/cilium:v1.4.1" |
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
apiVersion: v1 | |
data: | |
clean-cilium-bpf-state: "false" | |
clean-cilium-state: "false" | |
cluster-id: "1" | |
cluster-name: default | |
ct-global-max-entries-other: "262144" | |
ct-global-max-entries-tcp: "524288" | |
debug: "False" | |
enable-ipv4: "true" |
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
{"level":"error","ts":1586419223.85151,"caller":"app/span_processor.go:138","msg":"process is empty for the span","stacktrace":"github.com/jaegertracing/jaeger/cmd/collector/app.(*spanProcessor).saveSpan\n\tgithub.com/jaegertracing/jaeger@/cmd/collector/app/span_processor.go:138\ngithub.com/jaegertracing/jaeger/cmd/collector/app.ChainedProcessSpan.func1\n\tgithub.com/jaegertracing/jaeger@/cmd/collector/app/model_consumer.go:35\ngithub.com/jaegertracing/jaeger/cmd/collector/app.(*spanProcessor).processItemFromQueue\n\tgithub.com/jaegertracing/jaeger@/cmd/collector/app/span_processor.go:175\ngithub.com/jaegertracing/jaeger/cmd/collector/app.NewSpanProcessor.func1\n\tgithub.com/jaegertracing/jaeger@/cmd/collector/app/span_processor.go:75\ngithub.com/jaegertracing/jaeger/pkg/queue.(*BoundedQueue).StartConsumers.func1\n\tgithub.com/jaegertracing/jaeger@/pkg/queue/bounded_queue.go:77"} | |
{"level":"error","ts":1586419223.8609579,"caller":"app/span_processor.go:138","msg":"process is empty for the span","stacktrace":"g |
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
openapi: 3.0.1 | |
info: | |
title: Auslieferung | |
version: v1 | |
servers: | |
- url: /api/v1 | |
# TODO add security OIDC? | |
paths: | |
/deliveries: |
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 frauddetectionservice | |
import org.apache.kafka.clients.consumer.ConsumerConfig.* | |
import org.apache.kafka.clients.consumer.KafkaConsumer | |
import org.apache.kafka.common.serialization.StringDeserializer | |
import org.apache.kafka.common.serialization.ByteArrayDeserializer | |
import hipstershop.Demo.* | |
import io.opentelemetry.api.common.AttributeKey | |
import io.opentelemetry.api.common.Attributes | |
import io.opentelemetry.api.trace.Span |