<a id="ksqldb-reference-describe-connector"></a>

# DESCRIBE CONNECTOR statement in ksqlDB for Confluent Platform

## Synopsis

```sql
DESCRIBE CONNECTOR connector_name;
```

## Description

Describe a connector. If the connector is one of the supported
connectors, this statement also lists the tables and streams that were
automatically imported to ksqlDB.

## Example

```sql
DESCRIBE CONNECTOR "my-jdbc-connector";
```

Your output should resemble:

```none
Name                 : jdbc-connector
Class                : io.confluent.connect.jdbc.JdbcSourceConnector
Type                 : source
State                : RUNNING
WorkerId             : 10.200.7.69:8083

 Task ID | State   | Error Trace
---------------------------------
 0       | RUNNING |
---------------------------------

 ksqlDB Source Name     | Kafka Topic | Type
--------------------------------------------
 JDBC_CONNECTOR_USERS | jdbc-users  | TABLE
--------------------------------------------

 Related Topics
----------------
 jdbc-users
----------------
```
