exporter_status
Creates, updates, deletes, gets or lists an exporter_status resource.
Overview
| Name | exporter_status |
| Type | Resource |
| Id | confluent.schema_registry.exporter_status |
Fields
The following fields are returned by SELECT queries:
- get_exporter_status_by_name
The original request.
| Name | Datatype | Description |
|---|---|---|
name | string | Name of exporter. (example: test-exporter) |
offset | integer (int64) | Offset of the exporter |
state | string | State of the exporter. Could be STARTING, RUNNING or PAUSED (example: RUNNING) |
trace | string | Error trace of the exporter (example: ) |
ts | integer (int64) | Timestamp of the exporter |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_exporter_status_by_name | select | name | Retrieves the status of the schema exporter. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
name | string | Name of the exporter |
SELECT examples
- get_exporter_status_by_name
Retrieves the status of the schema exporter.
SELECT
name,
offset,
state,
trace,
ts
FROM confluent.schema_registry.exporter_status
WHERE name = '{{ name }}' -- required
;