forked from grafana/tempo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CHANGE] tempo-query: switch from grpcPlugin to standalone (grafana#3840
) * tempo-query: switch from grpcPlugin to standalone Jaeger 1.58 no longer supports gRPC storage plugins. Signed-off-by: Benedikt Bongartz <[email protected]> * add changelog entry Signed-off-by: Benedikt Bongartz <[email protected]> * update vendor Signed-off-by: Benedikt Bongartz <[email protected]> * fix: panic when requesting dependencies Signed-off-by: Benedikt Bongartz <[email protected]> * integration/e2e: adapt tempo-query test Signed-off-by: Benedikt Bongartz <[email protected]> * changelog: update Signed-off-by: Benedikt Bongartz <[email protected]> --------- Signed-off-by: Benedikt Bongartz <[email protected]>
- Loading branch information
1 parent
b262af0
commit 9cfa39f
Showing
22 changed files
with
145 additions
and
1,330 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
FROM jaegertracing/jaeger-query:1.57.0 | ||
FROM alpine:3.20 as certs | ||
RUN apk --update add ca-certificates | ||
ARG TARGETARCH | ||
COPY bin/linux/tempo-query-${TARGETARCH} /tempo-query | ||
|
||
ENV SPAN_STORAGE_TYPE=grpc-plugin \ | ||
GRPC_STORAGE_PLUGIN_BINARY=/tempo-query | ||
RUN addgroup -g 10001 -S tempo && \ | ||
adduser -u 10001 -S tempo -G tempo | ||
|
||
# Ensure /tmp dir exists, hashicorp plugins need a /tmp dir to exist. | ||
RUN mkdir -p /tmp | ||
USER 10001:10001 | ||
|
||
ARG TARGETARCH | ||
COPY bin/linux/tempo-query-${TARGETARCH} /tempo-query | ||
|
||
ENTRYPOINT ["/tempo-query"] |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
address: "0.0.0.0:7777" | ||
backend: tempo:3200 | ||
services_query_duration: 1h |
Oops, something went wrong.