mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-06 07:05:13 +08:00
427 lines
14 KiB
Go
427 lines
14 KiB
Go
package kafka
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func generateConsumerSQL(start, end int64, topic, partition, consumerGroup, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
WITH consumer_query AS (
|
|
SELECT
|
|
resource_string_service$$name,
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
COUNT(*) AS total_requests,
|
|
sumIf(1, status_code = 2) AS error_count,
|
|
avg(CASE WHEN has(attributes_number, 'messaging.message.body.size') THEN attributes_number['messaging.message.body.size'] ELSE NULL END) AS avg_msg_size
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 5
|
|
AND attribute_string_messaging$$system = '%s'
|
|
AND attributes_string['messaging.destination.name'] = '%s'
|
|
AND attributes_string['messaging.destination.partition.id'] = '%s'
|
|
AND attributes_string['messaging.kafka.consumer.group'] = '%s'
|
|
GROUP BY resource_string_service$$name
|
|
)
|
|
|
|
SELECT
|
|
resource_string_service$$name AS service_name,
|
|
p99,
|
|
COALESCE((error_count * 100.0) / total_requests, 0) AS error_rate,
|
|
COALESCE(total_requests / %d, 0) AS throughput,
|
|
COALESCE(avg_msg_size, 0) AS avg_msg_size
|
|
FROM
|
|
consumer_query
|
|
ORDER BY
|
|
resource_string_service$$name;
|
|
`, start, end, tsBucketStart, tsBucketEnd, queueType, topic, partition, consumerGroup, timeRange)
|
|
return query
|
|
}
|
|
|
|
// S1 landing
|
|
func generatePartitionLatencySQL(start, end int64, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
WITH partition_query AS (
|
|
SELECT
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
count(*) AS total_requests,
|
|
attributes_string['messaging.destination.name'] AS topic,
|
|
attributes_string['messaging.destination.partition.id'] AS partition
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 4
|
|
AND attribute_string_messaging$$system = '%s'
|
|
GROUP BY topic, partition
|
|
)
|
|
|
|
SELECT
|
|
topic,
|
|
partition,
|
|
p99,
|
|
COALESCE(total_requests / %d, 0) AS throughput
|
|
FROM
|
|
partition_query
|
|
ORDER BY
|
|
topic;
|
|
`, start, end, tsBucketStart, tsBucketEnd, queueType, timeRange)
|
|
return query
|
|
}
|
|
|
|
// S1 consumer
|
|
func generateConsumerPartitionLatencySQL(start, end int64, topic, partition, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
WITH consumer_pl AS (
|
|
SELECT
|
|
attributes_string['messaging.kafka.consumer.group'] AS consumer_group,
|
|
resource_string_service$$name,
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
COUNT(*) AS total_requests,
|
|
sumIf(1, status_code = 2) AS error_count
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 5
|
|
AND attribute_string_messaging$$system = '%s'
|
|
AND attributes_string['messaging.destination.name'] = '%s'
|
|
AND attributes_string['messaging.destination.partition.id'] = '%s'
|
|
GROUP BY consumer_group, resource_string_service$$name
|
|
)
|
|
|
|
SELECT
|
|
consumer_group,
|
|
resource_string_service$$name AS service_name,
|
|
p99,
|
|
COALESCE((error_count * 100.0) / total_requests, 0) AS error_rate,
|
|
COALESCE(total_requests / %d, 0) AS throughput
|
|
FROM
|
|
consumer_pl
|
|
ORDER BY
|
|
consumer_group;
|
|
`, start, end, tsBucketStart, tsBucketEnd, queueType, topic, partition, timeRange)
|
|
return query
|
|
}
|
|
|
|
// S3, producer overview
|
|
func generateProducerPartitionThroughputSQL(start, end int64, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000 // t, svc, rps, byte*, p99, err
|
|
query := fmt.Sprintf(`
|
|
WITH producer_latency AS (
|
|
SELECT
|
|
resource_string_service$$name,
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
attributes_string['messaging.destination.name'] AS topic,
|
|
COUNT(*) AS total_requests,
|
|
sumIf(1, status_code = 2) AS error_count
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 4
|
|
AND attribute_string_messaging$$system = '%s'
|
|
GROUP BY topic, resource_string_service$$name
|
|
)
|
|
|
|
SELECT
|
|
topic,
|
|
resource_string_service$$name AS service_name,
|
|
p99,
|
|
COALESCE((error_count * 100.0) / total_requests, 0) AS error_rate,
|
|
COALESCE(total_requests / %d, 0) AS throughput
|
|
FROM
|
|
producer_latency
|
|
`, start, end, tsBucketStart, tsBucketEnd, queueType, timeRange)
|
|
return query
|
|
}
|
|
|
|
// S3, producer topic/service overview
|
|
func generateProducerTopicLatencySQL(start, end int64, topic, service, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
WITH consumer_latency AS (
|
|
SELECT
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
attributes_string['messaging.destination.partition.id'] AS partition,
|
|
COUNT(*) AS total_requests,
|
|
sumIf(1, status_code = 2) AS error_count
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 4
|
|
AND resource_string_service$$name = '%s'
|
|
AND attribute_string_messaging$$system = '%s'
|
|
AND attributes_string['messaging.destination.name'] = '%s'
|
|
GROUP BY partition
|
|
)
|
|
|
|
SELECT
|
|
partition,
|
|
p99,
|
|
COALESCE((error_count * 100.0) / total_requests, 0) AS error_rate,
|
|
COALESCE(total_requests / %d, 0) AS throughput
|
|
FROM
|
|
consumer_latency
|
|
`, start, end, tsBucketStart, tsBucketEnd, service, queueType, topic, timeRange)
|
|
return query
|
|
}
|
|
|
|
// S3 consumer overview
|
|
func generateConsumerLatencySQL(start, end int64, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
WITH consumer_latency AS (
|
|
SELECT
|
|
resource_string_service$$name,
|
|
attributes_string['messaging.destination.name'] AS topic,
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
COUNT(*) AS total_requests,
|
|
sumIf(1, status_code = 2) AS error_count,
|
|
SUM(attributes_number['messaging.message.body.size']) AS total_bytes
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 5
|
|
AND attribute_string_messaging$$system = '%s'
|
|
GROUP BY topic, resource_string_service$$name
|
|
)
|
|
|
|
SELECT
|
|
topic,
|
|
resource_string_service$$name AS service_name,
|
|
p99,
|
|
COALESCE((error_count * 100.0) / total_requests, 0) AS error_rate,
|
|
COALESCE(total_requests / %d, 0) AS ingestion_rate,
|
|
COALESCE(total_bytes / %d, 0) AS byte_rate
|
|
FROM
|
|
consumer_latency
|
|
ORDER BY
|
|
topic;
|
|
`, start, end, tsBucketStart, tsBucketEnd, queueType, timeRange, timeRange)
|
|
return query
|
|
}
|
|
|
|
// S3 consumer topic/service
|
|
func generateConsumerServiceLatencySQL(start, end int64, topic, service, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
WITH consumer_latency AS (
|
|
SELECT
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
attributes_string['messaging.destination.partition.id'] AS partition,
|
|
COUNT(*) AS total_requests,
|
|
sumIf(1, status_code = 2) AS error_count
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 5
|
|
AND resource_string_service$$name = '%s'
|
|
AND attribute_string_messaging$$system = '%s'
|
|
AND attributes_string['messaging.destination.name'] = '%s'
|
|
GROUP BY partition
|
|
)
|
|
|
|
SELECT
|
|
partition,
|
|
p99,
|
|
COALESCE((error_count * 100.0) / total_requests, 0) AS error_rate,
|
|
COALESCE(total_requests / %d, 0) AS throughput
|
|
FROM
|
|
consumer_latency
|
|
`, start, end, tsBucketStart, tsBucketEnd, service, queueType, topic, timeRange)
|
|
return query
|
|
}
|
|
|
|
// s4
|
|
func generateProducerConsumerEvalSQL(start, end int64, queueType string, evalTime int64) string {
|
|
query := fmt.Sprintf(`
|
|
WITH trace_data AS (
|
|
SELECT
|
|
p.resource_string_service$$name AS producer_service,
|
|
c.resource_string_service$$name AS consumer_service,
|
|
p.trace_id,
|
|
p.timestamp AS producer_timestamp,
|
|
c.timestamp AS consumer_timestamp,
|
|
p.durationNano AS durationNano,
|
|
(toUnixTimestamp64Nano(c.timestamp) - toUnixTimestamp64Nano(p.timestamp)) + p.durationNano AS time_difference
|
|
FROM
|
|
signoz_traces.distributed_signoz_index_v3 p
|
|
INNER JOIN
|
|
signoz_traces.distributed_signoz_index_v3 c
|
|
ON p.trace_id = c.trace_id
|
|
AND c.parent_span_id = p.span_id
|
|
WHERE
|
|
p.kind = 4
|
|
AND c.kind = 5
|
|
AND toUnixTimestamp64Nano(p.timestamp) BETWEEN '%d' AND '%d'
|
|
AND toUnixTimestamp64Nano(c.timestamp) BETWEEN '%d' AND '%d'
|
|
AND c.attribute_string_messaging$$system = '%s'
|
|
AND p.attribute_string_messaging$$system = '%s'
|
|
)
|
|
|
|
SELECT
|
|
producer_service,
|
|
consumer_service,
|
|
COUNT(*) AS total_spans,
|
|
SUM(time_difference > '%d') AS breached_spans,
|
|
((breached_spans) * 100.0) / total_spans AS breach_percentage,
|
|
arraySlice(
|
|
arrayMap(x -> x.1,
|
|
arraySort(
|
|
x -> -x.2,
|
|
groupArrayIf((trace_id, time_difference), time_difference > '%d')
|
|
)
|
|
),
|
|
1, 10
|
|
) AS top_traceIDs
|
|
FROM trace_data
|
|
GROUP BY
|
|
producer_service,
|
|
consumer_service
|
|
`, start, end, start, end, queueType, queueType, evalTime, evalTime)
|
|
return query
|
|
}
|
|
|
|
func generateProducerSQL(start, end int64, topic, partition, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
WITH producer_query AS (
|
|
SELECT
|
|
resource_string_service$$name,
|
|
quantile(0.99)(durationNano) / 1000000 AS p99,
|
|
count(*) AS total_count,
|
|
sumIf(1, status_code = 2) AS error_count
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 4
|
|
AND attribute_string_messaging$$system = '%s'
|
|
AND attributes_string['messaging.destination.name'] = '%s'
|
|
AND attributes_string['messaging.destination.partition.id'] = '%s'
|
|
GROUP BY resource_string_service$$name
|
|
)
|
|
|
|
SELECT
|
|
resource_string_service$$name AS service_name,
|
|
p99,
|
|
COALESCE((error_count * 100.0) / total_count, 0) AS error_percentage,
|
|
COALESCE(total_count / %d, 0) AS throughput
|
|
FROM
|
|
producer_query
|
|
ORDER BY
|
|
resource_string_service$$name;
|
|
`, start, end, tsBucketStart, tsBucketEnd, queueType, topic, partition, timeRange)
|
|
return query
|
|
}
|
|
|
|
func generateNetworkLatencyThroughputSQL(start, end int64, consumerGroup, partitionID, queueType string) string {
|
|
timeRange := (end - start) / 1000000000
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
SELECT
|
|
attributes_string['messaging.client_id'] AS client_id,
|
|
resources_string['service.instance.id'] AS service_instance_id,
|
|
resource_string_service$$name AS service_name,
|
|
count(*) / %d AS throughput
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d'
|
|
AND kind = 5
|
|
AND attribute_string_messaging$$system = '%s'
|
|
AND attributes_string['messaging.kafka.consumer.group'] = '%s'
|
|
AND attributes_string['messaging.destination.partition.id'] = '%s'
|
|
GROUP BY service_name, client_id, service_instance_id
|
|
ORDER BY throughput DESC
|
|
`, timeRange, start, end, tsBucketStart, tsBucketEnd, queueType, consumerGroup, partitionID)
|
|
return query
|
|
}
|
|
|
|
func onboardProducersSQL(start, end int64, queueType string) string {
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
SELECT
|
|
COUNT(*) = 0 AS entries,
|
|
COUNT(IF(attribute_string_messaging$$system = '%s', 1, NULL)) = 0 AS queue,
|
|
COUNT(IF(kind = 4, 1, NULL)) = 0 AS kind,
|
|
COUNT(IF(has(attributes_string, 'messaging.destination.name'), 1, NULL)) = 0 AS destination,
|
|
COUNT(IF(has(attributes_string, 'messaging.destination.partition.id'), 1, NULL)) = 0 AS partition
|
|
FROM
|
|
signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d';`, queueType, start, end, tsBucketStart, tsBucketEnd)
|
|
return query
|
|
}
|
|
|
|
func onboardConsumerSQL(start, end int64, queueType string) string {
|
|
tsBucketStart := (start / 1000000000) - 1800
|
|
tsBucketEnd := end / 1000000000
|
|
query := fmt.Sprintf(`
|
|
SELECT
|
|
COUNT(*) = 0 AS entries,
|
|
COUNT(IF(attribute_string_messaging$$system = '%s', 1, NULL)) = 0 AS queue,
|
|
COUNT(IF(kind = 5, 1, NULL)) = 0 AS kind,
|
|
COUNT(resource_string_service$$name) = 0 AS svc,
|
|
COUNT(IF(has(attributes_string, 'messaging.destination.name'), 1, NULL)) = 0 AS destination,
|
|
COUNT(IF(has(attributes_string, 'messaging.destination.partition.id'), 1, NULL)) = 0 AS partition,
|
|
COUNT(IF(has(attributes_string, 'messaging.kafka.consumer.group'), 1, NULL)) = 0 AS cgroup,
|
|
COUNT(IF(has(attributes_number, 'messaging.message.body.size'), 1, NULL)) = 0 AS bodysize,
|
|
COUNT(IF(has(attributes_string, 'messaging.client_id'), 1, NULL)) = 0 AS clientid,
|
|
COUNT(IF(has(resources_string, 'service.instance.id'), 1, NULL)) = 0 AS instanceid
|
|
FROM signoz_traces.distributed_signoz_index_v3
|
|
WHERE
|
|
timestamp >= '%d'
|
|
AND timestamp <= '%d'
|
|
AND ts_bucket_start >= '%d'
|
|
AND ts_bucket_start <= '%d' ;`, queueType, start, end, tsBucketStart, tsBucketEnd)
|
|
return query
|
|
}
|