mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
8 lines
222 B
MySQL
8 lines
222 B
MySQL
|
SELECT
|
||
|
'metric' || toString(number) as name,
|
||
|
number as value,
|
||
|
if(number % 2 == 0, 'info ' || toString(number), NULL) as help,
|
||
|
if(number % 3 == 0, 'counter', NULL) as type
|
||
|
FROM numbers(5)
|
||
|
FORMAT Prometheus
|