pipelines
The pipelines table contains GreptimeDB Pipeline information.
USE greptime_private;
SELECT * FROM pipelines;
The output is as follows:
+----------------+--------+--------------+----------------------------------------------------------------------------------------------------------------------------------+----------------------------+
| name           | schema | content_type | pipeline                                                                                                                         | created_at                 |
+----------------+--------+--------------+----------------------------------------------------------------------------------------------------------------------------------+----------------------------+
| nginx_pipeline |        | yaml         | transform:                                                                                                                       | 2025-07-03 07:23:15.227539 |
                                            - fields:
                                                - response_size
                                                type: int32
                                            - fields:
                                                - timestamp
                                                type: time
                                                index: timestamp 
+----------------+--------+--------------+----------------------------------------------------------------------------------------------------------------------------------+----------------------------+
name: The name of the pipeline;schema: Deprecated. If you create the pipeline afterv0.15, this field should be an empty string.content_type: The type of the pipeline;pipeline: The content of the pipeline;created_at: The creation time of the pipeline;
For more details, please refer to the Manage Pipelines documentation.