Better performance for high-cardinality datasets
Based on SQL, a widely used language developers know and love
PostgreSQL-based, which means rock-solid-reliability
Trusted by great companies
-- What’s the memory consumption for
-- each of my containers right now?
SELECT
time_bucket('10 seconds', time) AS period,
container_id, avg(free_mem), min(free_mem)
FROM metrics
WHERE time > NOW () - interval '10 minutes'
GROUP BY period, container_id
ORDER BY period DESC, container_id;
Timescale is the leading open-source relational database for time-series. It builds on the rock-solid reliability of PostgreSQL, expanding its performance and scalability to meet the demands of data-intensive applications dealing with time-series data. Developers often tell us that Timescale is “PostgreSQL with super-powers”!
No credit card required