v1.3.0-alpha.1
· 阅读需 10 分钟
Release date: September 03, 2026
GreptimeDB v1.3.0-alpha.1 adds a telemetry entity-relationships graph, expands Native Histogram query coverage, and updates Dashboard for early validation.
👍 Highlights
-
Telemetry entity relationships graph. GreptimeDB derives service-call relationships from OTLP traces at query time. To add application entities, declare their identity columns on the source table:
ALTER TABLE app_metrics SET
'greptime.semantic.entity.service.id' = 'service_name',
'greptime.semantic.entity.service.scope' = 'env';To maintain dependencies that traces do not observe, insert a declared edge:
INSERT INTO greptime_private.semantic_relationships_declared
(observed_at, src_type, src_id, rel_type, dst_type, dst_id,
provenance, scope, generation_id, confidence)
VALUES
(now(), 'service', 'frontend', 'depends_on', 'service', 'users-db',
'declared', '', '', 1.0);