Skip to content

Instantly share code, notes, and snippets.

{
"traces": [
{
"traceID": "7a1d2dd4deaf177e0acf55b3c49032",
"rootServiceName": "mythical-server",
"rootTraceName": "HTTP GET",
"startTimeUnixNano": "1678972751297796608",
"durationMs": 6,
"spanSet": {
"spans": [
$ git diff master
diff --git a/Dockerfile b/Dockerfile
index 8f4eeb5..e5a2ffd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,34 +1,37 @@
-ARG ALPINE_VERSION=3.10
-ARG GO_VERSION=1.13.4
-ARG GRPC_GATEWAY_VERSION=1.12.2
-ARG GRPC_JAVA_VERSION=1.26.0
@joe-elliott
joe-elliott / gist:1a7d30d411a8319540b3f57fa047fca6
Created November 2, 2020 14:56
Default Jaeger OTEL Ingester Configuration
receivers:
kafka:
brokers:
- 127.0.0.1:9092
protocolversion: 0.10.2.0
topic: jaeger-spans
encoding: jaeger_proto
groupid: jaeger-ingester
clientid: jaeger-ingester
exporters:
@joe-elliott
joe-elliott / gist:d7b804d7f6a0356705210f22eea811c3
Created November 2, 2020 14:55
Default Jaeger OTEL Collector Config
receivers:
jaeger:
protocols:
grpc:
netaddr:
endpoint: localhost:14250
transport: ""
thrifthttp:
endpoint: localhost:14268
otlp:
@joe-elliott
joe-elliott / http-grpc-cortex-bridge-without-auth.go
Created July 20, 2020 15:14
HTTP <> GRPC Cortex Distributors
package main
import (
"fmt"
"log"
"net/http"
"github.com/gorilla/mux"
"github.com/weaveworks/common/httpgrpc"
"github.com/weaveworks/common/httpgrpc/server"
@joe-elliott
joe-elliott / http-grpc-cortex-bridge.go
Last active July 17, 2020 14:52
HTTP <> GRPC Cortex Distributors
package main
import (
"fmt"
"log"
"net/http"
"github.com/gorilla/mux"
"github.com/weaveworks/common/httpgrpc"
"github.com/weaveworks/common/httpgrpc/server"