Right now the default name is used which is "Unknown"

It would be nice to set a friendly name for any new connection by passing it in the client properties.
export interface ConnectionParams {
hostname: string;
port: number;
...
connectionName?: string;
}