View http-grpc-cortex-bridge.go
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 ( | |
"fmt" | |
"log" | |
"net/http" | |
"github.com/gorilla/mux" | |
"github.com/weaveworks/common/httpgrpc" | |
"github.com/weaveworks/common/httpgrpc/server" |
View http-grpc-cortex-bridge-without-auth.go
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 ( | |
"fmt" | |
"log" | |
"net/http" | |
"github.com/gorilla/mux" | |
"github.com/weaveworks/common/httpgrpc" | |
"github.com/weaveworks/common/httpgrpc/server" |
View gist:d7b804d7f6a0356705210f22eea811c3
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
receivers: | |
jaeger: | |
protocols: | |
grpc: | |
netaddr: | |
endpoint: localhost:14250 | |
transport: "" | |
thrifthttp: | |
endpoint: localhost:14268 | |
otlp: |
View gist:1a7d30d411a8319540b3f57fa047fca6
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
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: |
View jaeger-proto-diff
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
$ 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 |