# 1.Override We support two ways to query metrics: - Connect to StarRocks data warehouse and query metrics from it - Query Prometheus directly and retrieve metrics from it # 2.Starrocks Metric We can implement StarRocks Metric queries similar to Prometheus Metric queries. The only difference is replacing PromQL with SQL and querying through StarRocks API. ## 2.1.Metrics Config Currently, metrics are configured in code through the `StarRocksMetricsService.METRIC_SQL_MAP` dictionary. In the future, they will be configured through database or other methods. Organization structure: Product ID -> Metric Name -> SQL Query ```python METRIC_SQL_MAP: Dict[str, Dict[str, str]] = { "freeleaps": { "daily_registered_users": """ SELECT date_id, product_id, registered_cnt, updated_at FROM dws_daily_registered_users WHERE date_id >= %s AND date_id <= %s AND product_id = %s ORDER BY date_id ASC """, }, "magicleaps": { # Future metrics can be added here } } ``` ## 2.2.API Design ### 2.2.1.Query Metrics by Product ID API: `/api/metrics/starrocks/product/{product_id}/available-metrics` Method: GET Request: ``` product_id=freeleaps ``` Response: ```json { "product_id": "freeleaps", "available_metrics": [ "daily_registered_users" ], "total_count": 1, "description": "List of StarRocks-backed metrics for product 'freeleaps'" } ``` ### 2.2.2.Query Metric Info API: `/api/metrics/starrocks/product/{product_id}/metric/{metric_name}/info` Method: GET Request: ``` product_id=freeleaps metric_name=daily_registered_users ``` Response: ```json { "metric_info": { "product_id": "freeleaps", "metric_name": "daily_registered_users", "sql_query": "SELECT date_id, product_id, registered_cnt, updated_at FROM dws_daily_registered_users WHERE date_id >= %s AND date_id <= %s AND product_id = %s ORDER BY date_id ASC", "description": "Daily registered users count from StarRocks table dws_daily_registered_users" }, "description": "Information about StarRocks metric 'daily_registered_users' in product 'freeleaps'" } ``` ### 2.2.3.Query Metric Data API: `/api/metrics/starrocks/metrics_query` Method: POST Request: ```json { "product_id": "freeleaps", "metric_name": "daily_registered_users", "start_date": "2024-09-10", "end_date": "2024-09-20" } ``` Response: ```json { "metric_name": "daily_registered_users", "data_points": [ { "date": "2024-09-10", "value": 45, "labels": { "product_id": "freeleaps", "metric_type": "daily_registered_users" } }, { "date": "2024-09-11", "value": 52, "labels": { "product_id": "freeleaps", "metric_type": "daily_registered_users" } }, { "date": "2024-09-12", "value": 38, "labels": { "product_id": "freeleaps", "metric_type": "daily_registered_users" } }, ... { "date": "2024-09-19", "value": 67, "labels": { "product_id": "freeleaps", "metric_type": "daily_registered_users" } } ], "total_points": 10, "time_range": { "start": "2024-09-10", "end": "2024-09-19" } } ``` ## 2.3.Technical Implementation ### 2.3.1.StarRocks Client - Uses PyMySQL to connect to StarRocks database - Supports parameterized queries for security - Automatic connection management with context manager - Error handling and logging ### 2.3.2.Data Format - Date format: `YYYY-MM-DD` - Values are returned as integers or floats - Labels include product_id and metric_type for debugging - Results are sorted by date in ascending order ### 2.3.3.Validation - Date range validation (start_date < end_date) - Maximum date range limit (1 year) - Product ID and metric name validation against available mappings - Input format validation for date strings # 3.Prometheus Metric ## 3.1.Metrics Config Currently, metrics are configured in code. In the future, they will be configured through database or other methods. Organization structure: Product ID -> Metric Name -> Metric Query Method (PromQL) ```json { "freeleaps": { // Just for demo "cpu_usage": "100 - (avg by (instance) (irate(node_cpu_seconds_total{mode=\"idle\"}[5m])) * 100)", // Just for demo "memory_usage": "100 - ((node_memory_MemAvailable_bytes / node_memory_MemTotal_bytes) * 100)", // Just for demo "disk_usage": "100 - ((node_filesystem_avail_bytes{mountpoint=\"/\"} / node_filesystem_size_bytes{mountpoint=\"/\"}) * 100)", "latency_ms": "1000*avg(freeleaps_notification_http_request_duration_seconds_sum{handler!=\"none\"} / freeleaps_notification_http_request_duration_seconds_count)", "reliability": "1-sum(rate(freeleaps_notification_http_requests_total{status=\"5xx\"}[1m]))" }, "magicleaps": {} } ``` If we want to add new metrics, theoretically we only need to add one configuration entry (provided that the metric exists in Prometheus and can be queried directly through PromQL without requiring any additional code processing) ## 3.2.API Design ### 3.2.1.Query Metrics by Product ID API: `/api/metrics/prometheus/product/{product_id}/available-metrics` Method: GET Request: ``` product_id=freeleaps ``` Response: ```json { "product_id": "freeleaps", "available_metrics": [ "cpu_usage", "memory_usage", "disk_usage", "latency_ms", "reliability" ], "total_count": 5, "description": "List of metrics with predefined PromQL queries for product 'freeleaps'" } ``` ### 3.2.2.Query Metric Info API: `/api/metrics/prometheus/product/{product_id}/metric/{metric_name}/info` Method: GET Request: ``` product_id=freeleaps metric_name=cpu_usage ``` Response: ```json { "metric_info": { "product_id": "freeleaps", "metric_name": "cpu_usage", "promql_query": "100 - (avg by (instance) (irate(node_cpu_seconds_total{mode=\"idle\"}[5m])) * 100)", "description": "PromQL query for cpu_usage metric in product freeleaps" }, "description": "Information about metric 'cpu_usage' in product 'freeleaps'" } ``` ### 3.2.3.Query Metric Data API: `/api/metrics/prometheus/metrics_query` Method: GET Request: ``` { "product_id":"freeleaps", "metric_name": "latency_ms", "start_time": "2025-09-12T00:00:00Z", "end_time": "2025-09-16T01:00:00Z", "step":"1h" # Interval between data points in the query result } ``` Response: ```json { "metric_name": "latency_ms", "data_points": [ { "date": "2025-09-12T08:00:00Z", "value": 41.37141507698155, "labels": {} # Optional: Additional labels for prometheus, Just for debugging }, { "date": "2025-09-12T09:00:00Z", "value": 41.371992733188385, "labels": {} }, { "date": "2025-09-12T10:00:00Z", "value": 41.37792878125675, "labels": {} }, { "date": "2025-09-12T11:00:00Z", "value": 41.37297490632533, "labels": {} }, ... { "date": "2025-09-16T08:00:00Z", "value": 40.72491916149973, "labels": {} }, { "date": "2025-09-16T09:00:00Z", "value": 40.72186597550194, "labels": {} } ], "total_points": 98, "time_range": { "start": "2025-09-12T00:00:00Z", "end": "2025-09-16T01:00:00Z" }, "step": "1h" } ``` # 4.Universal Metrics In the future, we can create an abstraction layer above StarRocks Metrics and Prometheus Metrics to unify metric queries from both data sources!