mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-13 22:35:53 +08:00
parent
d7846338ce
commit
a31c4b8339
1
.github/workflows/staging-deployment.yaml
vendored
1
.github/workflows/staging-deployment.yaml
vendored
@ -31,6 +31,7 @@ jobs:
|
|||||||
GCP_ZONE: ${{ secrets.GCP_ZONE }}
|
GCP_ZONE: ${{ secrets.GCP_ZONE }}
|
||||||
GCP_INSTANCE: ${{ secrets.GCP_INSTANCE }}
|
GCP_INSTANCE: ${{ secrets.GCP_INSTANCE }}
|
||||||
CLOUDSDK_CORE_DISABLE_PROMPTS: 1
|
CLOUDSDK_CORE_DISABLE_PROMPTS: 1
|
||||||
|
KAFKA_SPAN_EVAL: true
|
||||||
run: |
|
run: |
|
||||||
read -r -d '' COMMAND <<EOF || true
|
read -r -d '' COMMAND <<EOF || true
|
||||||
echo "GITHUB_BRANCH: ${GITHUB_BRANCH}"
|
echo "GITHUB_BRANCH: ${GITHUB_BRANCH}"
|
||||||
|
@ -3099,7 +3099,7 @@ func (aH *APIHandler) getPartitionOverviewLatencyData(
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
queryRangeParams, err := mq.BuildQueryRangeParams(messagingQueue, "partition_latency")
|
queryRangeParams, err := mq.BuildQueryRangeParams(messagingQueue, "producer-topic-throughput")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
zap.L().Error(err.Error())
|
zap.L().Error(err.Error())
|
||||||
RespondError(w, apiErr, nil)
|
RespondError(w, apiErr, nil)
|
||||||
|
@ -5,7 +5,7 @@ const KafkaQueue = "kafka"
|
|||||||
type MessagingQueue struct {
|
type MessagingQueue struct {
|
||||||
Start int64 `json:"start"`
|
Start int64 `json:"start"`
|
||||||
End int64 `json:"end"`
|
End int64 `json:"end"`
|
||||||
EvalTime int64 `json:"eval_time"`
|
EvalTime int64 `json:"eval_time,omitempty"`
|
||||||
Variables map[string]string `json:"variables,omitempty"`
|
Variables map[string]string `json:"variables,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -254,7 +254,6 @@ func BuildClickHouseQuery(messagingQueue *MessagingQueue, queueType string, quer
|
|||||||
if queryContext == "producer" ||
|
if queryContext == "producer" ||
|
||||||
queryContext == "consumer" ||
|
queryContext == "consumer" ||
|
||||||
queryContext == "consumer_partition_latency" ||
|
queryContext == "consumer_partition_latency" ||
|
||||||
queryContext == "producer-topic-throughput" ||
|
|
||||||
queryContext == "producer-throughput-details" ||
|
queryContext == "producer-throughput-details" ||
|
||||||
queryContext == "consumer-throughput-details" {
|
queryContext == "consumer-throughput-details" {
|
||||||
var ok bool
|
var ok bool
|
||||||
|
Loading…
x
Reference in New Issue
Block a user