Interface UserOptions

Contains user roles and other user related information

interface UserOptions {
    connsInUse: number;
    name: string;
    readInfo: number[];
    roles: string[];
    writeInfo: number[];
}

Properties

connsInUse: number

Number of currently open connections.

name: string

Name of the admin.User.

readInfo: number[]

Array of read statistics. Array may be null. Current statistics by offset are:

  • 0: read quota in records per second
  • 1: single record read command rate (TPS)
  • 2: read scan/query record per second rate (RPS)
  • 3: number of limitless read scans/queries
Future server releases may add additional statistics.
roles: string[]

Array of assigned role names.

writeInfo: number[]

Array of write statistics. Array may be null. Current statistics by offset are:

  • 0: write quota in records per second
  • 1: single record write command rate (TPS)
  • 2: write scan/query record per second rate (RPS)
  • 3: number of limitless write scans/queries
Future server releases may add additional statistics.
MMNEPVFCICPMFPCPTTAAATR