Tiny add gauge histogram abstraction for engine and router (#16848)
This commit is contained in:
76
python/sglang/srt/utils/gauge_histogram.py
Normal file
76
python/sglang/srt/utils/gauge_histogram.py
Normal file
@@ -0,0 +1,76 @@
|
||||
"""Gauge with gt/le bucket labels for Grafana heatmap visualization.
|
||||
|
||||
Unlike Prometheus Histogram which uses cumulative buckets, this uses
|
||||
non-cumulative buckets (gt < value <= le) suitable for heatmap display.
|
||||
|
||||
Note: Keep in sync with Rust implementation in
|
||||
sgl-model-gateway/src/observability/gauge_histogram.rs
|
||||
"""
|
||||
|
||||
import bisect
|
||||
from typing import Dict, Iterator, List, Tuple, Union
|
||||
|
||||
|
||||
class BucketLabels:
|
||||
"""Bucket label pairs and count computation for a GaugeHistogram."""
|
||||
|
||||
def __init__(self, upper_bounds: List[Union[int, float]]):
|
||||
self._upper_bounds = upper_bounds
|
||||
self._labels: List[Tuple[str, str]] = []
|
||||
for i, upper in enumerate(upper_bounds):
|
||||
lower = upper_bounds[i - 1] if i > 0 else 0
|
||||
self._labels.append((str(lower), str(upper)))
|
||||
self._labels.append((str(upper_bounds[-1]), "+Inf"))
|
||||
|
||||
def __len__(self) -> int:
|
||||
return len(self._labels)
|
||||
|
||||
def __iter__(self) -> Iterator[Tuple[str, str]]:
|
||||
return iter(self._labels)
|
||||
|
||||
def compute_bucket_counts(self, observations: List[Union[int, float]]) -> List[int]:
|
||||
"""Compute how many observations fall into each bucket. O(n) complexity."""
|
||||
counts = [0] * len(self)
|
||||
for v in observations:
|
||||
# bisect_left finds insertion point; values at boundary go to current bucket
|
||||
idx = bisect.bisect_left(self._upper_bounds, v)
|
||||
counts[idx] += 1
|
||||
return counts
|
||||
|
||||
|
||||
class GaugeHistogram:
|
||||
"""Gauge with gt/le bucket labels for Grafana heatmap visualization."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
name: str,
|
||||
documentation: str,
|
||||
labelnames: List[str],
|
||||
bucket_bounds: List[Union[int, float]],
|
||||
multiprocess_mode: str = "mostrecent",
|
||||
):
|
||||
from prometheus_client import Gauge
|
||||
|
||||
self._buckets = BucketLabels(bucket_bounds)
|
||||
|
||||
self._gauge = Gauge(
|
||||
name=name,
|
||||
documentation=documentation,
|
||||
labelnames=list(labelnames) + ["gt", "le"],
|
||||
multiprocess_mode=multiprocess_mode,
|
||||
)
|
||||
|
||||
def set_raw(self, labels: Dict[str, str], values: List[int]):
|
||||
"""Set bucket counts directly."""
|
||||
for (gt, le), count in zip(self._buckets, values):
|
||||
self._gauge.labels(**labels, gt=gt, le=le).set(count)
|
||||
|
||||
def set_by_current_observations(
|
||||
self, labels: Dict[str, str], observations: List[Union[int, float]]
|
||||
):
|
||||
"""Compute bucket counts from observations and set them."""
|
||||
counts = self._buckets.compute_bucket_counts(observations)
|
||||
self.set_raw(labels, counts)
|
||||
|
||||
def buckets(self) -> BucketLabels:
|
||||
return self._buckets
|
||||
194
sgl-model-gateway/src/observability/gauge_histogram.rs
Normal file
194
sgl-model-gateway/src/observability/gauge_histogram.rs
Normal file
@@ -0,0 +1,194 @@
|
||||
//! Gauge with gt/le bucket labels for Grafana heatmap visualization.
|
||||
//!
|
||||
//! Unlike Prometheus Histogram which uses cumulative buckets, this uses
|
||||
//! non-cumulative buckets (gt < value <= le) suitable for heatmap display.
|
||||
//!
|
||||
//! Note: Keep in sync with Python implementation in
|
||||
//! python/sglang/srt/utils/gauge_histogram.py
|
||||
|
||||
use metrics::gauge;
|
||||
|
||||
pub struct BucketLabels {
|
||||
upper_bounds: &'static [u64],
|
||||
le_labels: Vec<&'static str>,
|
||||
gt_labels: Vec<&'static str>,
|
||||
}
|
||||
|
||||
impl BucketLabels {
|
||||
pub fn new(upper_bounds: &'static [u64]) -> Self {
|
||||
let leak_str = |n: u64| Box::leak(n.to_string().into_boxed_str()) as &'static str;
|
||||
|
||||
let mut le_labels: Vec<&'static str> = upper_bounds.iter().map(|&b| leak_str(b)).collect();
|
||||
le_labels.push("+Inf");
|
||||
|
||||
let mut gt_labels: Vec<&'static str> = vec!["0"];
|
||||
gt_labels.extend(upper_bounds.iter().map(|&b| leak_str(b)));
|
||||
|
||||
Self {
|
||||
upper_bounds,
|
||||
le_labels,
|
||||
gt_labels,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn len(&self) -> usize {
|
||||
self.le_labels.len()
|
||||
}
|
||||
|
||||
pub fn iter(&self) -> impl Iterator<Item = (&'static str, &'static str)> + '_ {
|
||||
std::iter::zip(&self.gt_labels, &self.le_labels).map(|(>, &le)| (gt, le))
|
||||
}
|
||||
|
||||
/// Compute bucket counts from observations.
|
||||
pub fn compute_bucket_counts(&self, observations: &[u64]) -> Vec<usize> {
|
||||
let mut counts = vec![0usize; self.len()];
|
||||
for &value in observations {
|
||||
// Equivalent to Python's bisect.bisect_left. O(log n).
|
||||
let idx = self.upper_bounds.partition_point(|&bound| bound < value);
|
||||
counts[idx] += 1;
|
||||
}
|
||||
counts
|
||||
}
|
||||
}
|
||||
|
||||
pub struct GaugeHistogram {
|
||||
name: &'static str,
|
||||
buckets: &'static BucketLabels,
|
||||
}
|
||||
|
||||
impl GaugeHistogram {
|
||||
pub const fn new(name: &'static str, buckets: &'static BucketLabels) -> Self {
|
||||
Self { name, buckets }
|
||||
}
|
||||
|
||||
/// Set bucket counts directly.
|
||||
pub fn set_raw(&self, values: &[usize]) {
|
||||
for ((gt, le), &count) in self.buckets.iter().zip(values.iter()) {
|
||||
gauge!(self.name, "gt" => gt, "le" => le).set(count as f64);
|
||||
}
|
||||
}
|
||||
|
||||
/// Compute bucket counts from observations and set them.
|
||||
pub fn set_by_current_observations(&self, observations: &[u64]) {
|
||||
let counts = self.buckets.compute_bucket_counts(observations);
|
||||
self.set_raw(&counts);
|
||||
}
|
||||
|
||||
pub fn buckets(&self) -> &BucketLabels {
|
||||
self.buckets
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
// --- Bucket Labels Tests ---
|
||||
|
||||
#[test]
|
||||
fn test_bucket_labels_basic() {
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
let pairs: Vec<_> = buckets.iter().collect();
|
||||
assert_eq!(
|
||||
pairs,
|
||||
vec![("0", "10"), ("10", "30"), ("30", "60"), ("60", "+Inf")]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_bucket_labels_single_bound() {
|
||||
let buckets = BucketLabels::new(&[100]);
|
||||
let pairs: Vec<_> = buckets.iter().collect();
|
||||
assert_eq!(pairs, vec![("0", "100"), ("100", "+Inf")]);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_bucket_labels_many_bounds() {
|
||||
let buckets = BucketLabels::new(&[1, 2, 5, 10]);
|
||||
let pairs: Vec<_> = buckets.iter().collect();
|
||||
assert_eq!(
|
||||
pairs,
|
||||
vec![
|
||||
("0", "1"),
|
||||
("1", "2"),
|
||||
("2", "5"),
|
||||
("5", "10"),
|
||||
("10", "+Inf")
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_bucket_labels_len() {
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(buckets.len(), 4);
|
||||
}
|
||||
|
||||
// --- Bucket Counts Tests ---
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_empty() {
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(buckets.compute_bucket_counts(&[]), vec![0, 0, 0, 0]);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_single_value_first_bucket() {
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(buckets.compute_bucket_counts(&[5]), vec![1, 0, 0, 0]);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_single_value_last_bucket() {
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(buckets.compute_bucket_counts(&[100]), vec![0, 0, 0, 1]);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_exact_boundary_values() {
|
||||
// Values at exact boundaries: 10 -> (0,10], 30 -> (10,30], 60 -> (30,60]
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(
|
||||
buckets.compute_bucket_counts(&[10, 30, 60]),
|
||||
vec![1, 1, 1, 0]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_just_above_boundary() {
|
||||
// 11 -> (10,30], 31 -> (30,60], 61 -> (60,+Inf]
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(
|
||||
buckets.compute_bucket_counts(&[11, 31, 61]),
|
||||
vec![0, 1, 1, 1]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_multiple_values_same_bucket() {
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(
|
||||
buckets.compute_bucket_counts(&[1, 2, 3, 4, 5]),
|
||||
vec![5, 0, 0, 0]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_all_overflow() {
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(
|
||||
buckets.compute_bucket_counts(&[100, 200, 300]),
|
||||
vec![0, 0, 0, 3]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_compute_bucket_counts_distribution() {
|
||||
// 5 (<=10), 10 (<=10), 15 (<=30), 40 (<=60), 100 (+Inf)
|
||||
let buckets = BucketLabels::new(&[10, 30, 60]);
|
||||
assert_eq!(
|
||||
buckets.compute_bucket_counts(&[5, 10, 15, 40, 100]),
|
||||
vec![2, 1, 1, 1]
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
//! Observability utilities for logging, metrics, and tracing.
|
||||
|
||||
pub mod events;
|
||||
pub mod gauge_histogram;
|
||||
pub mod inflight_tracker;
|
||||
pub mod logging;
|
||||
pub mod metrics;
|
||||
|
||||
80
test/unit/utils/test_gauge_histogram.py
Normal file
80
test/unit/utils/test_gauge_histogram.py
Normal file
@@ -0,0 +1,80 @@
|
||||
import unittest
|
||||
|
||||
from sglang.srt.utils.gauge_histogram import BucketLabels
|
||||
|
||||
|
||||
class TestBucketLabels(unittest.TestCase):
|
||||
"""Test BucketLabels with hardcoded expected values."""
|
||||
|
||||
def test_labels_basic(self):
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(
|
||||
list(buckets),
|
||||
[("0", "10"), ("10", "30"), ("30", "60"), ("60", "+Inf")],
|
||||
)
|
||||
|
||||
def test_labels_single_bound(self):
|
||||
buckets = BucketLabels([100])
|
||||
self.assertEqual(list(buckets), [("0", "100"), ("100", "+Inf")])
|
||||
|
||||
def test_labels_many_bounds(self):
|
||||
buckets = BucketLabels([1, 2, 5, 10])
|
||||
self.assertEqual(
|
||||
list(buckets),
|
||||
[("0", "1"), ("1", "2"), ("2", "5"), ("5", "10"), ("10", "+Inf")],
|
||||
)
|
||||
|
||||
def test_len(self):
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(len(buckets), 4)
|
||||
|
||||
|
||||
class TestBucketLabelsCounts(unittest.TestCase):
|
||||
"""Test BucketLabels.compute_bucket_counts with hardcoded expected values."""
|
||||
|
||||
def test_empty_observations(self):
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([]), [0, 0, 0, 0])
|
||||
|
||||
def test_single_value_first_bucket(self):
|
||||
# bounds: [10, 30, 60] -> buckets: (0,10], (10,30], (30,60], (60,+Inf]
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([5]), [1, 0, 0, 0])
|
||||
|
||||
def test_single_value_last_bucket(self):
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([100]), [0, 0, 0, 1])
|
||||
|
||||
def test_exact_boundary_values(self):
|
||||
# Values at exact boundaries: 10 -> (0,10], 30 -> (10,30], 60 -> (30,60]
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([10, 30, 60]), [1, 1, 1, 0])
|
||||
|
||||
def test_just_above_boundary(self):
|
||||
# 11 -> (10,30], 31 -> (30,60], 61 -> (60,+Inf]
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([11, 31, 61]), [0, 1, 1, 1])
|
||||
|
||||
def test_multiple_values_same_bucket(self):
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([1, 2, 3, 4, 5]), [5, 0, 0, 0])
|
||||
|
||||
def test_all_overflow(self):
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([100, 200, 300]), [0, 0, 0, 3])
|
||||
|
||||
def test_distribution(self):
|
||||
# 5 (<=10), 10 (<=10), 15 (<=30), 40 (<=60), 100 (+Inf)
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(
|
||||
buckets.compute_bucket_counts([5, 10, 15, 40, 100]), [2, 1, 1, 1]
|
||||
)
|
||||
|
||||
def test_float_values(self):
|
||||
# 9.9 -> (0,10], 10.1 -> (10,30], 30.5 -> (30,60]
|
||||
buckets = BucketLabels([10, 30, 60])
|
||||
self.assertEqual(buckets.compute_bucket_counts([9.9, 10.1, 30.5]), [1, 1, 1, 0])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user