We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After update from 0.30.1 to 0.31.0, query parameter query.replica-label doesn't run as expected.
query.replica-label
containers: - name: query image: registry.cn-hangzhou.aliyuncs.com/zhangrongjie/thanos:v0.31.0 imagePullPolicy: "IfNotPresent" securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: false runAsNonRoot: true runAsUser: 1001 args: - query - --log.level=info - --log.format=logfmt - --grpc-address=0.0.0.0:10901 - --http-address=0.0.0.0:10902 - --query.replica-label=replica - --query.replica-label=prometheus_replica - --store=dnssrv+_grpc._tcp.thanos-prod-storegateway-headless.thanos-prod.svc.cluster.local - --store=dnssrv+_grpc._tcp.thanos-prod-ruler-headless.thanos-prod.svc.cluster.local - --store=dnssrv+_grpc._tcp.thanos-prod-receive-headless.thanos-prod.svc.cluster.local - --query.lookback-delta=5m - --query.auto-downsampling - --query.partial-response
when query receive, the result is:
when query storegateway, the result is:
We can see the prometheus_replica label doesn't be duplicated on storegateway.
prometheus_replica
Then we delete - --query.replica-label=prometheus_replica, the query result become normal:
- --query.replica-label=prometheus_replica
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanos version
After update from 0.30.1 to 0.31.0, query parameter
query.replica-label
doesn't run as expected.Config
when query receive, the result is:
when query storegateway, the result is:
We can see the
prometheus_replica
label doesn't be duplicated on storegateway.Then we delete
- --query.replica-label=prometheus_replica
, the query result become normal:The text was updated successfully, but these errors were encountered: