Skip to main content

exporter_status

Creates, updates, deletes, gets or lists an exporter_status resource.

Overview

Nameexporter_status
TypeResource
Idconfluent.schema_registry.exporter_status

Fields

The following fields are returned by SELECT queries:

The original request.

NameDatatypeDescription
namestringName of exporter. (example: test-exporter)
offsetinteger (int64)Offset of the exporter
statestringState of the exporter. Could be STARTING, RUNNING or PAUSED (example: RUNNING)
tracestringError trace of the exporter (example: )
tsinteger (int64)Timestamp of the exporter

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_exporter_status_by_nameselectnameRetrieves 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.

NameDatatypeDescription
namestringName of the 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 }}' -- required
;