提供: Bright Pattern Documentation
移動先: 案内検索
(Created page with "5.3:レポートデータベース仕様/同時接続ユーザー")
 
(Created page with "= concurrent_users= ''concurrent_users'' 表は、過去にシステムを使用していたユーザーの数を追跡します。ログインしたユーザーの数がゼ...")
Line 1: Line 1:
 
= concurrent_users=
 
= concurrent_users=
The ''concurrent_users'' table tracks the number of users that were using the system at any moment in the past. A new row is added every time when a number of logged in users changes from a non-zero value (i.e., when a non-first user logs in or any user logs out), but not more frequently than once a minute. (After a first login/logout within a given minute, all subsequent logins/logouts that happen within that same minute will be aggregated and written as a single record one minute after.) A new record is also created unconditionally at the configured [[contact-center-administrator-guide/ReportingSettings|Reset time for daily statistics]].
+
''concurrent_users'' 表は、過去にシステムを使用していたユーザーの数を追跡します。ログインしたユーザーの数がゼロ以外の値から変更されるたびに(つまり、最初のユーザー以外のユーザーがログインまたはいずれかのユーザーがログアウトするたびに)、1分間以上に1回の頻度で新しい行が追加されます(1分以内に初回のログイン/ログアウトが行われた後、その同じ1分以内に行われるすべてのログイン/ログアウトがまとめられ、1分後に1件のレコードとして書き込まれます)。 [[contact-center-administrator-guide/ReportingSettings|日次統計のリセット時間]]においても新しいレコードが自動的に作成されます。
  
  

Revision as of 06:21, 13 September 2019

• English
• 5.19 • 5.3 • 5.8

concurrent_users

concurrent_users 表は、過去にシステムを使用していたユーザーの数を追跡します。ログインしたユーザーの数がゼロ以外の値から変更されるたびに(つまり、最初のユーザー以外のユーザーがログインまたはいずれかのユーザーがログアウトするたびに)、1分間以上に1回の頻度で新しい行が追加されます(1分以内に初回のログイン/ログアウトが行われた後、その同じ1分以内に行われるすべてのログイン/ログアウトがまとめられ、1分後に1件のレコードとして書き込まれます)。 日次統計のリセット時間においても新しいレコードが自動的に作成されます。


Description of Data

The following table offers the name (i.e., ID), data type (e.g., BIGINT, BINARY, BIT, DATETIME, ENUM, INT, VARCHAR, etc.), and description for each metric (i.e., column) of the concurrent_users table.


Column Name Data Type Description
num_users INT Number of users that were logged into the system in the interval specified by start_time and end_time
users JSON array This is a list of usernames of users that were logged into the system in the interval specified by start_time and 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.

< 前へ | 次へ >