- listLoginUsers
- 语法
- 类别
- 描述
- 参数
- 返回值
- 错误
- 示例
listLoginUsers
语法
System.listLoginUsers( [options], [filter] )
类别
System
描述
列出登录用户的信息
参数
参数名 | 参数类型 | 默认值 | 描述 | 是否必填 |
---|---|---|---|---|
options | JSON | 默认不显示详细信息 | 显示模式 | 否 |
filter | JSON | 默认显示全部登录用户信息 | 筛选条件 | 否 |
options 参数详细说明如下:
属性 | 值类型 | 是否必填 | 格式 | 描述 |
---|---|---|---|---|
detail | Bool | 否 | { detail: true } | 是否显示详细信息 |
Note:
filter 参数支持对结果中的某些字段进行 and 、 or 、not 和精确匹配计算,对结果集进行筛选。
返回值
返回登录用户的消息。
错误
如果出错则抛异常,并输出错误信息,可以通过getLastErrMsg()获取错误信息或通过getLastError()获取错误码。关于错误处理可以参考常见错误处理指南。
常见错误可参考错误码。
示例
- 列出所有登录用户的信息;
- > System.listLoginUsers()
- {
- "user": "sequoiadb"
- }
- {
- "user": "username"
- }
- ...
- 对结果进行筛选:
- > System.listLoginUsers( { detail: true }, { "tty": "tty1" } )
- {
- "user": "sequoiadb",
- "time": "2019-05-10 18:37",
- "from": "",
- "tty": "tty1"
- }