SHOW STREAMS statement in ksqlDB for Confluent Platform

Synopsis

SHOW | LIST STREAMS [EXTENDED];
Copy

Description

List the defined streams.

Example

-- See the list of streams currently registered:
SHOW STREAMS;

-- See extended information about currently registered streams:
LIST STREAMS EXTENDED;
Copy