Skip to main content

exporter_status

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

Overview

Nameexporter_status
TypeResource
Idconfluent.schema_registry.exporter_status

Fields

NameDatatypeDescription
namestringName of exporter.
offsetintegerOffset of the exporter
statestringState of the exporter. Could be STARTING, RUNNING or PAUSED
tracestringError trace of the exporter
tsintegerTimestamp of the exporter

Methods

NameAccessible byRequired ParamsDescription
get_exporter_status_by_nameSELECTnameRetrieves 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 }}';