mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 11:30:36 +00:00
Fixes https://github.com/scylladb/scylladb/issues/13578 Now that the documentation is versioned, we can remove the .. versionadded:: and .. versionchanged:: information (especially that the latter is hard to maintain and now outdated), as well as the outdated information about experimental features in very old releases. This commit removes that information and nothing else. Closes #13680
37 lines
1.7 KiB
ReStructuredText
37 lines
1.7 KiB
ReStructuredText
Clients Table
|
|
==============
|
|
|
|
This document describes how to work with Scylla's client table, which provides real-time information on CQL clients **currently** connected to the Scylla cluster.
|
|
|
|
Viewing - List Active CQL connections
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
.. code-block:: cql
|
|
|
|
SELECT address, port FROM system.clients;
|
|
|
|
Example output:
|
|
|
|
.. code-block:: cql
|
|
|
|
address | port
|
|
------------+-------
|
|
172.17.0.2 | 33296
|
|
172.17.0.2 | 33298
|
|
|
|
|
|
Significant columns in the Client table:
|
|
|
|
================================================ =================================================================================
|
|
Parameter Description
|
|
================================================ =================================================================================
|
|
address (PK) Client's IP address
|
|
------------------------------------------------ ---------------------------------------------------------------------------------
|
|
port (CK) Client's outgoing port number
|
|
------------------------------------------------ ---------------------------------------------------------------------------------
|
|
username Username - when Authentication is used
|
|
------------------------------------------------ ---------------------------------------------------------------------------------
|
|
shard_id Scylla node shard handing the connection
|
|
================================================ =================================================================================
|
|
|