GreptimeDB: Cloud-Native Observability Database for Metrics, Logs, and Traces
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
GreptimeDB is an open-source, cloud-native database designed for unified observability, handling metrics, logs, and traces. Built in Rust, it offers real-time querying at PB scale with exceptional cost efficiency, supporting SQL and PromQL. It's ideal for large-scale observability platforms and IoT/edge computing environments.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
GreptimeDB is an open-source, cloud-native database that unifies metrics, logs, and traces, enabling real-time observability at any scale, across edge, cloud, and hybrid environments. It delivers sub-second querying at PB scale and exceptional cost efficiency.
Installation
To get started with GreptimeDB, the quickest way is using Docker.
First, pull the latest image:
docker pull greptime/greptimedb
Then, run the container, exposing the necessary ports:
docker run -p 127.0.0.1:4000-4003:4000-4003 \
-v "$(pwd)/greptimedb_data:/greptimedb_data" \
--name greptime --rm \
greptime/greptimedb:latest standalone start \
--http-addr 0.0.0.0:4000 \
--rpc-bind-addr 0.0.0.0:4001 \
--mysql-addr 0.0.0.0:4002 \
--postgres-addr 0.0.0.0:4003
After running, you can access the dashboard at http://localhost:4000/dashboard. For more detailed instructions, refer to the full Install Guide.
Examples
GreptimeDB provides various resources to help you get started and explore its capabilities.
- Quickstart: Follow the Quickstart guide to set up your first instance and ingest data.
- User Guide: Dive deeper into the features and usage with the comprehensive User Guide.
- Demo Scenes: Explore practical use cases and examples in the GreptimeTeam/demo-scene repository.
Why Use GreptimeDB
GreptimeDB stands out as a powerful solution for modern observability needs due to several key features:
- All-in-One Observability: It provides a unified platform for metrics, logs, and traces, natively supporting OpenTelemetry and allowing queries via SQL, PromQL, and Flow. This simplifies your observability stack, potentially replacing multiple tools like Prometheus, Loki, and Tempo.
- High Performance: Built in Rust, GreptimeDB offers rich indexing capabilities (inverted, fulltext, skipping, vector) to deliver sub-second responses even at petabyte scale. It excels in handling large-scale metrics with high cardinality.
- Cost Efficiency: With its compute-storage separation and native object storage support (S3, Azure Blob, etc.), GreptimeDB achieves significantly lower operational and storage costs.
- Cloud-Native & Scalable: Designed for Kubernetes, it offers unlimited cross-cloud scaling and can handle hundreds of thousands of concurrent requests, making it suitable for demanding production environments.
- Developer-Friendly: It provides familiar interfaces like SQL/PromQL, a built-in web dashboard, REST API, MySQL/PostgreSQL protocol compatibility, and native OpenTelemetry support, making it easy for developers to integrate and use.
- Flexible Deployment: GreptimeDB can be deployed anywhere, from ARM-based edge devices (including Android) to cloud environments, with unified APIs and efficient data synchronization.
Links
- GitHub Repository: https://github.com/GreptimeTeam/greptimedb
- Official Website: https://greptime.com/
- Documentation: https://docs.greptime.com/
- Slack Community: https://greptime.com/slack
- Twitter: https://X.com/greptime
Related repositories
Similar repositories that may be relevant next.

Start-Technologies: Monorepo for StartOS and Self-Hosting Solutions
August 13, 2026
Start-Technologies is the comprehensive monorepo by Start9Labs, featuring StartOS as its flagship product. This open-source Linux distribution enables users to run personal servers, facilitating the self-hosting of various services for enhanced data ownership and privacy. It integrates a robust Rust backend, an Angular frontend, and a unique diff-based database for reactive state synchronization.
Cortex-Mem: A Production-Ready Memory Framework for Autonomous AI Systems
August 12, 2026
Cortex-Mem is a production-ready, AI-native memory framework built in Rust, providing intelligent long-term memory for autonomous systems. It features a hierarchical three-tier memory architecture for efficient information management, from extraction and search to automated optimization. This framework empowers AI agents to remember, learn, and personalize interactions across sessions, transforming stateless AI into context-aware partners.

CubeSandbox: Instant, Concurrent, and Secure Sandbox for AI Agents
August 9, 2026
CubeSandbox, developed by TencentCloud, is a high-performance, secure sandbox service built on RustVMM and KVM, designed specifically for AI agents. It offers ultra-fast startup times, hardware-level isolation, and high-density deployment, making it ideal for scalable and secure agent execution environments. The service is also fully compatible with the E2B SDK for seamless integration.
StringWars: Benchmarking High-Performance String Processing in Rust and Python
July 21, 2026
StringWars is a comprehensive GitHub repository dedicated to benchmarking performance-oriented string processing libraries in Rust and Python. It meticulously compares various operations, including substring search, hashing, and edit distances, across both CPUs and GPUs. This project serves as an invaluable resource for developers seeking to identify the fastest and most efficient solutions for critical string manipulation tasks, particularly those leveraging modern SIMD instructions and GPU acceleration.
Source repository
Open the original repository on GitHub.
12 counted GitHub visits