exporter_status
Creates, updates, deletes, gets or lists a exporter_status
resource.
Overview
Name | exporter_status |
Type | Resource |
Id | confluent.schema_registry.exporter_status |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of exporter. |
offset | integer | Offset of the exporter |
state | string | State of the exporter. Could be STARTING, RUNNING or PAUSED |
trace | string | Error trace of the exporter |
ts | integer | Timestamp of the exporter |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_exporter_status_by_name | SELECT | name | Retrieves the status of the schema exporter. |
SELECT
examples
Retrieves the status of the schema exporter.
SELECT
name,
offset,
state,
trace,
ts
FROM confluent.schema_registry.exporter_status
WHERE name = '{{ name }}';