(Created page with "== データの説明 == 次の表には、名前(IDなど)、データタイプ (BIGINT, BINARY, BIT, DATETIME, ENUM, INT, VARCHARなど)、 ''concurrent_users'' 表の...") |
(Created page with "{|border="1" style="border-collapse:collapse" cellpadding="5" |'''列名''' |'''データタイプ''' |'''内容''' |- |'''num_users''' |INT |''start_time'' および''end_tim...") |
||
Line 8: | Line 8: | ||
{|border="1" style="border-collapse:collapse" cellpadding="5" | {|border="1" style="border-collapse:collapse" cellpadding="5" | ||
− | |''' | + | |'''列名''' |
− | |''' | + | |'''データタイプ''' |
− | |''' | + | |'''内容''' |
|- | |- | ||
|'''num_users''' | |'''num_users''' | ||
|INT | |INT | ||
− | | | + | |''start_time'' および''end_time''によって指定された期間中にシステムにログインしたユーザの数 |
|- | |- | ||
|'''users''' | |'''users''' | ||
|JSON array | |JSON array | ||
− | | | + | |''start_time'' および''end_time''によって指定された期間中にシステムにログインしたユーザの名前のリスト |
Users are specified as JSON array of ''[username1, username2, … usernameN]'' where ''N = num_users''. | Users are specified as JSON array of ''[username1, username2, … usernameN]'' where ''N = num_users''. |
Revision as of 06:25, 13 September 2019
concurrent_users
concurrent_users 表は、過去にシステムを使用していたユーザーの数を追跡します。ログインしたユーザーの数がゼロ以外の値から変更されるたびに(つまり、最初のユーザー以外のユーザーがログインまたはいずれかのユーザーがログアウトするたびに)、1分間以上に1回の頻度で新しい行が追加されます(1分以内に初回のログイン/ログアウトが行われた後、その同じ1分以内に行われるすべてのログイン/ログアウトがまとめられ、1分後に1件のレコードとして書き込まれます)。 日次統計のリセット時間においても新しいレコードが自動的に作成されます。
データの説明
次の表には、名前(IDなど)、データタイプ (BIGINT, BINARY, BIT, DATETIME, ENUM, INT, VARCHARなど)、 concurrent_users 表の各メトリック(つまり、列)の説明が含まれます。
列名 | データタイプ | 内容 |
num_users | INT | start_time およびend_timeによって指定された期間中にシステムにログインしたユーザの数 |
users | JSON array | start_time およびend_timeによって指定された期間中にシステムにログインしたユーザの名前のリスト
Users are specified as JSON array of [username1, username2, … usernameN] where N = num_users. |
start_time | TIMESTAMP | Start time of the interval for which the num_users and users data in this record remains valid.
Time is given in Universal Coordinated Time (UTC), and the time is rounded to a minute. Note that it is normal for this time to differ by a few seconds from the time of state changes reported in the agent_activity table. |
end_time | TIMESTAMP | End time of the interval for which the num_users and users data in this record remains valid.
Time is given in Universal Coordinated Time (UTC), and the time is rounded to a minute. Note that it is normal for this time to differ by a few seconds from the time of state changes reported in the agent_activity table. |