Giter VIP home page Giter VIP logo

isucon8-qualify's People

Contributors

keitatata avatar kkenya avatar matsuhei avatar

Watchers

 avatar  avatar  avatar

isucon8-qualify's Issues

slow-query

Count: 2  Time=4.37s (8s)  Lock=0.00s (0s)  Rows_sent=191824.0 (383648), Rows_examined=767315.0 (1534630), isucon[isucon]@localhost
  SELECT r.*, s.rank AS sheet_rank, s.num AS sheet_num, s.price AS sheet_price, e.id AS event_id, e.price AS event_price FROM reservations r INNER JOIN sheets s ON s.id = r.sheet_id INNER JOIN events e ON e.id = r.event_id ORDER BY reserved_at ASC FOR UPDATE
Count: 6  Time=0.56s (3s)  Lock=0.00s (0s)  Rows_sent=5.0 (30), Rows_examined=191836.2 (1151017), isucon[isucon]@localhost
  SELECT event_id FROM reservations WHERE user_id = N GROUP BY event_id ORDER BY MAX(IFNULL(canceled_at, reserved_at)) DESC LIMIT N
Count: 6  Time=0.55s (3s)  Lock=0.00s (0s)  Rows_sent=1.0 (6), Rows_examined=191839.8 (1151039), isucon[isucon]@localhost
  SELECT IFNULL(SUM(e.price + s.price), N) FROM reservations r INNER JOIN sheets s ON s.id = r.sheet_id INNER JOIN events e ON e.id = r.event_id WHERE r.user_id = N AND r.canceled_at IS NULL
Count: 6  Time=0.11s (0s)  Lock=0.00s (0s)  Rows_sent=5.0 (30), Rows_examined=191824.5 (1150947), isucon[isucon]@localhost
  SELECT r.*, s.rank AS sheet_rank, s.num AS sheet_num FROM reservations r INNER JOIN sheets s ON s.id = r.sheet_id WHERE r.user_id = N ORDER BY IFNULL(r.canceled_at, r.reserved_at) DESC LIMIT N
Count: 1  Time=0.06s (0s)  Lock=0.02s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO reservations (id, event_id, sheet_id, user_id, reserved_at, canceled_at) VALUES (N, N, N, N, "S", "S"),
(長いので以下略)
Count: 8  Time=0.01s (0s)  Lock=0.00s (0s)  Rows_sent=1585.2 (12682), Rows_examined=4755.8 (38046), isucon[isucon]@localhost
  SELECT r.*, s.rank AS sheet_rank, s.num AS sheet_num, s.price AS sheet_price, e.price AS event_price FROM reservations r INNER JOIN sheets s ON s.id = r.sheet_id INNER JOIN events e ON e.id = r.event_id WHERE r.event_id = 'S' ORDER BY reserved_at ASC FOR UPDATE
Count: 19  Time=0.01s (0s)  Lock=0.09s (1s)  Rows_sent=1.0 (19), Rows_examined=2260.9 (42958), isucon[isucon]@localhost
  SELECT * FROM sheets WHERE id NOT IN (SELECT sheet_id FROM reservations WHERE event_id = N AND canceled_at IS NULL FOR UPDATE) AND `rank` = 'S' ORDER BY RAND() LIMIT N
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  CREATE TABLE IF NOT EXISTS users (
  id          INTEGER UNSIGNED PRIMARY KEY AUTO_INCREMENT,
  nickname    VARCHAR(N) NOT NULL,
  login_name  VARCHAR(N) NOT NULL,
  pass_hash   VARCHAR(N) NOT NULL,
  UNIQUE KEY login_name_uniq (login_name)
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
  
  Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO sheets (id, `rank`, num, price) VALUES (N, "S", N, N),
  (長いので以下略)
  
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  CREATE TABLE IF NOT EXISTS events (
  id          INTEGER UNSIGNED PRIMARY KEY AUTO_INCREMENT,
  title       VARCHAR(N)     NOT NULL,
  public_fg   TINYINT(N)       NOT NULL,
  closed_fg   TINYINT(N)       NOT NULL,
  price       INTEGER UNSIGNED NOT NULL
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  CREATE TABLE IF NOT EXISTS sheets (
  id          INTEGER UNSIGNED PRIMARY KEY AUTO_INCREMENT,
  `rank`      VARCHAR(N)     NOT NULL,
  num         INTEGER UNSIGNED NOT NULL,
  price       INTEGER UNSIGNED NOT NULL,
  UNIQUE KEY rank_num_uniq (`rank`, num)
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  CREATE TABLE IF NOT EXISTS reservations (
  id          INTEGER UNSIGNED PRIMARY KEY AUTO_INCREMENT,
  event_id    INTEGER UNSIGNED NOT NULL,
  sheet_id    INTEGER UNSIGNED NOT NULL,
  user_id     INTEGER UNSIGNED NOT NULL,
  reserved_at DATETIME(N)      NOT NULL,
  canceled_at DATETIME(N)      DEFAULT NULL,
  KEY event_id_and_sheet_id_idx (event_id, sheet_id)
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
Count: 208  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1000.0 (208000), Rows_examined=2000.0 (416000), isucon[isucon]@localhost
  SELECT * FROM sheets ORDER BY `rank`, num
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  CREATE TABLE IF NOT EXISTS administrators (
  id          INTEGER UNSIGNED PRIMARY KEY AUTO_INCREMENT,
  nickname    VARCHAR(N) NOT NULL,
  login_name  VARCHAR(N) NOT NULL,
  pass_hash   VARCHAR(N) NOT NULL,
  UNIQUE KEY login_name_uniq (login_name)
  ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
Count: 51  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  COMMIT
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO administrators (id, nickname, login_name, pass_hash) VALUES (N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S"),(N, "S", "S", "S")
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  CREATE DATABASE torb
Count: 29  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (29), Rows_examined=419.0 (12150), isucon[isucon]@localhost
  SELECT COUNT(*) FROM sheets WHERE `rank` = 'S'
Count: 208000  Time=0.00s (16s)  Lock=0.00s (3s)  Rows_sent=0.6 (129175), Rows_examined=7.9 (1645036), isucon[isucon]@localhost
  SELECT * FROM reservations WHERE event_id = N AND sheet_id = N AND canceled_at IS NULL GROUP BY event_id, sheet_id HAVING reserved_at = MIN(reserved_at)
Count: 21  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.8 (17), Rows_examined=0.8 (17), isucon[isucon]@localhost
  SELECT * FROM administrators WHERE login_name = 'S'
Count: 7  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (7), Rows_examined=4.0 (28), isucon[isucon]@localhost
  SELECT * FROM reservations WHERE event_id = N AND sheet_id = N AND canceled_at IS NULL GROUP BY event_id HAVING reserved_at = MIN(reserved_at) FOR UPDATE
Count: 5  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (5), Rows_examined=0.0 (0), isucon[isucon]@localhost
  select @@version_comment limit N
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=1.0 (1), isucon[isucon]@localhost
  UPDATE events SET public_fg = true, closed_fg = false WHERE id = N
Count: 57  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.9 (53), Rows_examined=0.9 (53), isucon[isucon]@localhost
  SELECT * FROM users WHERE login_name = 'S'
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO events (id, title, public_fg, closed_fg, price) VALUES (N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N),(N, "S", "S", "S", N)
Count: 7  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=1.0 (7), isucon[isucon]@localhost
  UPDATE reservations SET canceled_at = 'S' WHERE id = N
Count: 19  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO reservations (event_id, sheet_id, user_id, reserved_at) VALUES (N, N, N, 'S')
Count: 2  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO users (login_name, pass_hash, nickname) VALUES ('S', SHA2('S', N), 'S')
Count: 35  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (35), Rows_examined=1.0 (35), isucon[isucon]@localhost
  SELECT id, nickname FROM administrators WHERE id = N
Count: 144  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (144), Rows_examined=1.0 (144), isucon[isucon]@localhost
  SELECT id, nickname FROM users WHERE id = N
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO events (title, public_fg, closed_fg, price) VALUES ('S', false, N, N)
Count: 19  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=18.9 (359), Rows_examined=18.9 (359), isucon[isucon]@localhost
  SELECT * FROM events ORDER BY id ASC
Count: 1  Time=0.00s (0s)  Lock=0.01s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  DROP DATABASE IF EXISTS torb
Count: 65  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.9 (60), Rows_examined=0.9 (60), isucon[isucon]@localhost
  SELECT * FROM events WHERE id = 'S'
Count: 6  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (6), Rows_examined=1.0 (6), isucon[isucon]@localhost
  SELECT id, nickname FROM users WHERE id = 'S'
Count: 8  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.9 (7), Rows_examined=0.9 (7), isucon[isucon]@localhost
  SELECT * FROM sheets WHERE `rank` = 'S' AND num = 'S'
Count: 148  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (148), Rows_examined=1.0 (148), isucon[isucon]@localhost
  SELECT * FROM events WHERE id = N
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  SET NAMES utf8mb4
Count: 75  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=1.0 (75), Rows_examined=0.0 (0), isucon[isucon]@localhost
  SELECT SHA2('S', N)
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  INSERT INTO reservations (id, event_id, sheet_id, user_id, reserved_at, canceled_at) VALUES (N, N, N, N, "S", "S")
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  ROLLBACK
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  BEGIN
Count: 50  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), isucon[isucon]@localhost
  START TRANSACTION
Count: 7  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), 2users@localhost
  #
Count: 1  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), 0users@0hosts
  administrator command: Ping
Count: 6  Time=0.00s (0s)  Lock=0.00s (0s)  Rows_sent=0.0 (0), Rows_examined=0.0 (0), 0users@0hosts
  administrator command: Quit

テーブル構造

MariaDB [torb]> desc administrators;
+------------+------------------+------+-----+---------+----------------+
| Field      | Type             | Null | Key | Default | Extra          |
+------------+------------------+------+-----+---------+----------------+
| id         | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
| nickname   | varchar(128)     | NO   |     | NULL    |                |
| login_name | varchar(128)     | NO   | UNI | NULL    |                |
| pass_hash  | varchar(128)     | NO   |     | NULL    |                |
+------------+------------------+------+-----+---------+----------------+
4 rows in set (0.01 sec)
MariaDB [torb]> desc events;
+-----------+------------------+------+-----+---------+----------------+
| Field     | Type             | Null | Key | Default | Extra          |
+-----------+------------------+------+-----+---------+----------------+
| id        | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
| title     | varchar(128)     | NO   |     | NULL    |                |
| public_fg | tinyint(1)       | NO   |     | NULL    |                |
| closed_fg | tinyint(1)       | NO   |     | NULL    |                |
| price     | int(10) unsigned | NO   |     | NULL    |                |
+-----------+------------------+------+-----+---------+----------------+
5 rows in set (0.00 sec)
MariaDB [torb]> desc reservations;
+-------------+------------------+------+-----+---------+----------------+
| Field       | Type             | Null | Key | Default | Extra          |
+-------------+------------------+------+-----+---------+----------------+
| id          | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
| event_id    | int(10) unsigned | NO   | MUL | NULL    |                |
| sheet_id    | int(10) unsigned | NO   |     | NULL    |                |
| user_id     | int(10) unsigned | NO   |     | NULL    |                |
| reserved_at | datetime(6)      | NO   |     | NULL    |                |
| canceled_at | datetime(6)      | YES  |     | NULL    |                |
+-------------+------------------+------+-----+---------+----------------+
6 rows in set (0.00 sec)
MariaDB [torb]> desc sheets
    -> ;
+-------+------------------+------+-----+---------+----------------+
| Field | Type             | Null | Key | Default | Extra          |
+-------+------------------+------+-----+---------+----------------+
| id    | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
| rank  | varchar(128)     | NO   | MUL | NULL    |                |
| num   | int(10) unsigned | NO   |     | NULL    |                |
| price | int(10) unsigned | NO   |     | NULL    |                |
+-------+------------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)
MariaDB [torb]> desc users ;
+------------+------------------+------+-----+---------+----------------+
| Field      | Type             | Null | Key | Default | Extra          |
+------------+------------------+------+-----+---------+----------------+
| id         | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
| nickname   | varchar(128)     | NO   |     | NULL    |                |
| login_name | varchar(128)     | NO   | UNI | NULL    |                |
| pass_hash  | varchar(128)     | NO   |     | NULL    |                |
+------------+------------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)
MariaDB [torb]> 

alp --cnt

+-------+--------+-----------------------------------------+-----+-----+-----+-----+-----+--------+--------+---------+--------+--------+--------+--------+--------+--------------+--------------+---------------+--------------+
| COUNT | METHOD |                   URI                   | 1XX | 2XX | 3XX | 4XX | 5XX |  MIN   |  MAX   |   SUM   |  AVG   |   P1   |  P50   |  P99   | STDDEV |  MIN(BODY)   |  MAX(BODY)   |   SUM(BODY)   |  AVG(BODY)   |
+-------+--------+-----------------------------------------+-----+-----+-----+-----+-----+--------+--------+---------+--------+--------+--------+--------+--------+--------------+--------------+---------------+--------------+
|   265 | POST   | /api/actions/login                      |   0 | 249 |   0 |  16 |   0 |  0.002 |  2.995 |  12.524 |  0.047 |  0.006 |  0.007 |  0.010 |  0.293 |       30.000 |       41.000 |      9728.000 |       36.709 |
|    92 | GET    | /css/admin.css                          |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |      684.000 |      684.000 |     62928.000 |      684.000 |
|    92 | GET    | /css/bootstrap.min.css                  |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.013 |   0.097 |  0.001 |  0.003 |  0.000 |  0.007 |  0.002 |   140930.000 |   140930.000 |  12965560.000 |   140930.000 |
|    92 | GET    | /css/layout.css                         |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |      707.000 |      707.000 |     65044.000 |      707.000 |
|    92 | GET    | /favicon.ico                            |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     1092.000 |     1092.000 |    100464.000 |     1092.000 |
|    92 | GET    | /js/admin.js                            |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     8454.000 |     8454.000 |    777768.000 |     8454.000 |
|    92 | GET    | /js/app.js                              |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |    10204.000 |    10204.000 |    938768.000 |    10204.000 |
|    92 | GET    | /js/bootstrap-waitingfor.min.js         |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     2074.000 |     2074.000 |    190808.000 |     2074.000 |
|    92 | GET    | /js/bootstrap.bundle.min.js             |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |    70682.000 |    70682.000 |   6502744.000 |    70682.000 |
|    92 | GET    | /js/fetch.min.js                        |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     7337.000 |     7337.000 |    675004.000 |     7337.000 |
|    92 | GET    | /js/jquery-3.3.1.slim.min.js            |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |    69917.000 |    69917.000 |   6432364.000 |    69917.000 |
|    92 | GET    | /js/vue.min.js                          |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.005 |   0.010 |  0.000 |  0.000 |  0.000 |  0.000 |  0.001 |    86452.000 |    86452.000 |   7953584.000 |    86452.000 |
|    91 | POST   | /admin/api/actions/login                |   0 |  67 |   0 |  24 |   0 |  0.001 |  0.431 |   1.296 |  0.014 |  0.003 |  0.006 |  0.010 |  0.044 |       27.000 |       42.000 |      3238.000 |       35.582 |
|    88 | POST   | /api/events/11/actions/reserve          |   0 |  75 |   0 |  13 |   0 |  0.001 |  9.053 | 236.394 |  2.686 |  0.255 |  1.573 |  1.955 |  2.103 |       24.000 |       46.000 |      3761.000 |       42.739 |
|    69 | GET    | /                                       |   0 |  69 |   0 |   0 |   0 |  0.853 | 21.125 | 602.881 |  8.737 |  0.912 |  4.764 | 14.174 |  5.087 |    14336.000 |    15233.000 |   1022288.000 |    14815.768 |
|    62 | GET    | /api/events/10                          |   0 |  62 |   0 |   0 |   0 |  0.338 |  9.494 | 163.699 |  2.640 |  1.523 |  3.086 |  3.125 |  1.426 |    52877.000 |    52942.000 |   3280556.000 |    52912.194 |
|    48 | POST   | /api/users                              |   0 |  38 |   0 |  10 |   0 |  0.002 |  2.087 |   4.074 |  0.085 |  0.009 |  0.003 |  0.030 |  0.341 |       22.000 |       38.000 |      1577.000 |       32.854 |
|    32 | GET    | /admin/                                 |   0 |  30 |   0 |   0 |   2 |  0.012 | 30.002 |  97.893 |  3.059 |  5.942 |  0.017 |  0.016 |  7.312 |       11.000 |    20365.000 |    396796.000 |    12399.875 |
|    18 | POST   | /admin/api/events                       |   0 |   9 |   0 |   9 |   0 |  0.003 |  3.848 |  12.568 |  0.698 |  0.001 |  0.002 |  0.005 |  1.172 |       32.000 |    11978.000 |    108054.000 |     6003.000 |
|    16 | POST   | /api/actions/logout                     |   0 |   8 |   0 |   8 |   0 |  0.001 |  0.008 |   0.034 |  0.002 |  0.003 |  0.002 |  0.003 |  0.002 |       26.000 |       26.000 |       208.000 |       13.000 |
|    16 | GET    | /admin/api/reports/events/11/sales      |   0 |  15 |   0 |   0 |   1 |  1.631 |  4.389 |  44.423 |  2.776 |  1.898 |  2.327 |  3.150 |  0.760 |      129.000 |      960.000 |      8816.000 |      551.000 |
|    16 | POST   | /admin/api/actions/logout               |   0 |   8 |   0 |   8 |   0 |  0.001 |  0.006 |   0.037 |  0.002 |  0.003 |  0.001 |  0.002 |  0.002 |       32.000 |       32.000 |       256.000 |       16.000 |
|    15 | GET    | /admin/api/events/19                    |   0 |  10 |   0 |   5 |   0 |  0.001 |  0.403 |   2.645 |  0.176 |  0.000 |  0.001 |  0.258 |  0.130 |       32.000 |    11975.000 |    119889.000 |     7992.600 |
|    12 | GET    | /api/events/19                          |   0 |   7 |   0 |   5 |   0 |  0.236 |  1.518 |   4.773 |  0.398 |  0.553 |  0.245 |  0.263 |  0.350 |       21.000 |    11932.000 |     83619.000 |     6968.250 |
|    11 | GET    | /admin/api/events/20                    |   0 |   3 |   0 |   8 |   0 |  0.002 |  2.891 |   6.437 |  0.585 |  0.002 |  0.002 |  0.003 |  0.993 |       21.000 |    11978.000 |     36127.000 |     3284.273 |
|    11 | POST   | /admin/api/events/20/actions/edit       |   0 |   3 |   0 |   8 |   0 |  0.002 |  4.653 |  12.331 |  1.121 |  0.002 |  0.005 |  0.003 |  1.838 |       21.000 |    11977.000 |     36124.000 |     3284.000 |
|    10 | POST   | /admin/api/events/19/actions/edit       |   0 |   5 |   0 |   5 |   0 |  0.001 |  0.514 |   2.437 |  0.244 |  0.001 |  0.001 |  0.001 |  0.243 |       32.000 |    11974.000 |     60022.000 |     6002.200 |
|    10 | GET    | /admin/api/reports/sales                |   0 |  10 |   0 |   0 |   0 |  6.420 |  7.996 |  69.750 |  6.975 |  7.399 |  7.590 |  6.729 |  0.508 | 13877467.000 | 13877959.000 | 138776725.000 | 13877672.500 |
|     9 | GET    | /admin/api/reports/events/19/sales      |   0 |   9 |   0 |   0 |   0 |  1.384 |  3.495 |  22.541 |  2.505 |  1.577 |  2.148 |  3.168 |  0.686 |       67.000 |       67.000 |       603.000 |       67.000 |
|     8 | GET    | /admin/api/reports/events/10/sales      |   0 |   8 |   0 |   0 |   0 |  1.857 |  4.718 |  22.695 |  2.837 |  1.857 |  2.405 |  2.022 |  0.879 |   923478.000 |   923502.000 |   7387899.000 |   923487.375 |
|     8 | GET    | /api/events/20                          |   0 |   0 |   0 |   8 |   0 |  0.001 |  2.824 |   7.265 |  0.908 |  0.002 |  0.003 |  0.002 |  1.183 |       21.000 |       21.000 |       168.000 |       21.000 |
|     7 | POST   | /api/events/0/actions/reserve           |   0 |   0 |   0 |   7 |   0 |  0.002 |  0.007 |   0.024 |  0.003 |  0.003 |  0.002 |  0.003 |  0.002 |       25.000 |       25.000 |       175.000 |       25.000 |
|     6 | GET    | /initialize                             |   0 |   6 |   0 |   0 |   0 |  1.648 |  1.854 |  10.471 |  1.745 |  1.648 |  1.815 |  1.854 |  0.075 |        0.000 |        0.000 |         0.000 |        0.000 |
|     5 | POST   | /api/events/10/actions/reserve          |   0 |   5 |   0 |   0 |   0 |  0.317 |  0.461 |   1.871 |  0.374 |  0.317 |  0.461 |  0.353 |  0.050 |       45.000 |       46.000 |       227.000 |       45.400 |
|     5 | GET    | /admin/api/reports/events/20/sales      |   0 |   5 |   0 |   0 |   0 |  1.844 |  3.166 |  13.924 |  2.785 |  1.844 |  3.031 |  3.128 |  0.492 |       67.000 |       67.000 |       335.000 |       67.000 |
|     2 | DELETE | /api/events/11/sheets/S/87/reservation  |   0 |   0 |   0 |   2 |   0 |  0.248 |  1.451 |   1.699 |  0.850 |  0.248 |  0.248 |  0.248 |  0.602 |       25.000 |       25.000 |        50.000 |       25.000 |
|     1 | DELETE | /api/events/10/sheets/C/217/reservation |   0 |   1 |   0 |   0 |   0 |  3.311 |  3.311 |   3.311 |  3.311 |  3.311 |  3.311 |  3.311 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | GET    | /api/users/433                          |   0 |   1 |   0 |   0 |   0 |  3.553 |  3.553 |   3.553 |  3.553 |  3.553 |  3.553 |  3.553 |  0.000 |     2492.000 |     2492.000 |      2492.000 |     2492.000 |
|     1 | DELETE | /api/events/10/sheets/C/479/reservation |   0 |   1 |   0 |   0 |   0 |  0.308 |  0.308 |   0.308 |  0.308 |  0.308 |  0.308 |  0.308 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/82/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | DELETE | /api/events/11/sheets/D/82/reservation  |   0 |   0 |   0 |   1 |   0 |  0.296 |  0.296 |   0.296 |  0.296 |  0.296 |  0.296 |  0.296 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/0/sheets/C/82/reservation   |   0 |   0 |   0 |   1 |   0 |  0.003 |  0.003 |   0.003 |  0.003 |  0.003 |  0.003 |  0.003 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/496/reservation |   0 |   1 |   0 |   0 |   0 |  0.254 |  0.254 |   0.254 |  0.254 |  0.254 |  0.254 |  0.254 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/S/100/reservation |   0 |   0 |   0 |   1 |   0 |  0.259 |  0.259 |   0.259 |  0.259 |  0.259 |  0.259 |  0.259 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | GET    | /api/users/1090                         |   0 |   1 |   0 |   0 |   0 | 21.518 | 21.518 |  21.518 | 21.518 | 21.518 | 21.518 | 21.518 |  0.000 |     2482.000 |     2482.000 |      2482.000 |     2482.000 |
|     1 | GET    | /api/users/3270                         |   0 |   1 |   0 |   0 |   0 | 23.734 | 23.734 |  23.734 | 23.734 | 23.734 | 23.734 | 23.734 |  0.000 |     2639.000 |     2639.000 |      2639.000 |     2639.000 |
|     1 | GET    | /api/users/1694                         |   0 |   1 |   0 |   0 |   0 | 25.522 | 25.522 |  25.522 | 25.522 | 25.522 | 25.522 | 25.522 |  0.000 |     2552.000 |     2552.000 |      2552.000 |     2552.000 |
|     1 | DELETE | /api/events/11/sheets/D/238/reservation |   0 |   0 |   0 |   1 |   0 |  0.276 |  0.276 |   0.276 |  0.276 |  0.276 |  0.276 |  0.276 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | GET    | /api/users/467                          |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | DELETE | /api/events/10/sheets/C/490/reservation |   0 |   1 |   0 |   0 |   0 |  2.636 |  2.636 |   2.636 |  2.636 |  2.636 |  2.636 |  2.636 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/22/reservation  |   0 |   1 |   0 |   0 |   0 |  0.248 |  0.248 |   0.248 |  0.248 |  0.248 |  0.248 |  0.248 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/0/sheets/C/431/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/D/431/reservation |   0 |   0 |   0 |   1 |   0 |  0.286 |  0.286 |   0.286 |  0.286 |  0.286 |  0.286 |  0.286 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/S/61/reservation  |   0 |   0 |   0 |   1 |   0 |  0.493 |  0.493 |   0.493 |  0.493 |  0.493 |  0.493 |  0.493 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/431/reservation |   0 |   0 |   0 |   1 |   0 |  0.001 |  0.001 |   0.001 |  0.001 |  0.001 |  0.001 |  0.001 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | GET    | /api/users/4501                         |   0 |   1 |   0 |   0 |   0 |  5.357 |  5.357 |   5.357 |  5.357 |  5.357 |  5.357 |  5.357 |  0.000 |     2485.000 |     2485.000 |      2485.000 |     2485.000 |
|     1 | DELETE | /api/events/10/sheets/C/22/reservation  |   0 |   1 |   0 |   0 |   0 |  0.527 |  0.527 |   0.527 |  0.527 |  0.527 |  0.527 |  0.527 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/320/reservation |   0 |   1 |   0 |   0 |   0 |  2.351 |  2.351 |   2.351 |  2.351 |  2.351 |  2.351 |  2.351 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/305/reservation |   0 |   1 |   0 |   0 |   0 |  2.373 |  2.373 |   2.373 |  2.373 |  2.373 |  2.373 |  2.373 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/448/reservation |   0 |   1 |   0 |   0 |   0 |  2.967 |  2.967 |   2.967 |  2.967 |  2.967 |  2.967 |  2.967 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/0/sheets/C/238/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | GET    | /api/users/3194                         |   0 |   0 |   0 |   0 |   1 | 30.002 | 30.002 |  30.002 | 30.002 | 30.002 | 30.002 | 30.002 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/1434                         |   0 |   0 |   0 |   0 |   1 | 30.003 | 30.003 |  30.003 | 30.003 | 30.003 | 30.003 | 30.003 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | DELETE | /api/events/11/sheets/C/192/reservation |   0 |   1 |   0 |   0 |   0 |  2.012 |  2.012 |   2.012 |  2.012 |  2.012 |  2.012 |  2.012 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | GET    | /api/users/3159                         |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/583                          |   0 |   0 |   0 |   0 |   1 | 30.008 | 30.008 |  30.008 | 30.008 | 30.008 | 30.008 | 30.008 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | DELETE | /api/events/11/sheets/C/303/reservation |   0 |   1 |   0 |   0 |   0 |  0.237 |  0.237 |   0.237 |  0.237 |  0.237 |  0.237 |  0.237 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | GET    | /api/users/274                          |   0 |   1 |   0 |   0 |   0 | 26.494 | 26.494 |  26.494 | 26.494 | 26.494 | 26.494 | 26.494 |  0.000 |     2524.000 |     2524.000 |      2524.000 |     2524.000 |
|     1 | DELETE | /api/events/11/sheets/C/127/reservation |   0 |   1 |   0 |   0 |   0 |  0.232 |  0.232 |   0.232 |  0.232 |  0.232 |  0.232 |  0.232 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/0/sheets/C/67/reservation   |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/D/67/reservation  |   0 |   0 |   0 |   1 |   0 |  0.277 |  0.277 |   0.277 |  0.277 |  0.277 |  0.277 |  0.277 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/S/57/reservation  |   0 |   0 |   0 |   1 |   0 |  0.238 |  0.238 |   0.238 |  0.238 |  0.238 |  0.238 |  0.238 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/67/reservation  |   0 |   0 |   0 |   1 |   0 |  0.001 |  0.001 |   0.001 |  0.001 |  0.001 |  0.001 |  0.001 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | GET    | /api/users/1255                         |   0 |   1 |   0 |   0 |   0 |  3.776 |  3.776 |   3.776 |  3.776 |  3.776 |  3.776 |  3.776 |  0.000 |     2533.000 |     2533.000 |      2533.000 |     2533.000 |
|     1 | DELETE | /api/events/10/sheets/C/181/reservation |   0 |   1 |   0 |   0 |   0 |  0.328 |  0.328 |   0.328 |  0.328 |  0.328 |  0.328 |  0.328 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/417/reservation |   0 |   1 |   0 |   0 |   0 |  1.548 |  1.548 |   1.548 |  1.548 |  1.548 |  1.548 |  1.548 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | GET    | /api/users/3724                         |   0 |   1 |   0 |   0 |   0 | 20.736 | 20.736 |  20.736 | 20.736 | 20.736 | 20.736 | 20.736 |  0.000 |     2541.000 |     2541.000 |      2541.000 |     2541.000 |
|     1 | GET    | /api/users/4245                         |   0 |   1 |   0 |   0 |   0 | 22.945 | 22.945 |  22.945 | 22.945 | 22.945 | 22.945 | 22.945 |  0.000 |     2559.000 |     2559.000 |      2559.000 |     2559.000 |
|     1 | DELETE | /api/events/10/sheets/C/17/reservation  |   0 |   1 |   0 |   0 |   0 |  3.174 |  3.174 |   3.174 |  3.174 |  3.174 |  3.174 |  3.174 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | GET    | /api/users/552                          |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/4085                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/3387                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | DELETE | /api/events/11/sheets/C/326/reservation |   0 |   1 |   0 |   0 |   0 |  0.246 |  0.246 |   0.246 |  0.246 |  0.246 |  0.246 |  0.246 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/0/sheets/C/405/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/D/405/reservation |   0 |   0 |   0 |   1 |   0 |  0.281 |  0.281 |   0.281 |  0.281 |  0.281 |  0.281 |  0.281 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/S/60/reservation  |   0 |   0 |   0 |   1 |   0 |  0.245 |  0.245 |   0.245 |  0.245 |  0.245 |  0.245 |  0.245 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/405/reservation |   0 |   0 |   0 |   1 |   0 |  0.001 |  0.001 |   0.001 |  0.001 |  0.001 |  0.001 |  0.001 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | GET    | /api/users/1750                         |   0 |   1 |   0 |   0 |   0 |  3.377 |  3.377 |   3.377 |  3.377 |  3.377 |  3.377 |  3.377 |  0.000 |     2575.000 |     2575.000 |      2575.000 |     2575.000 |
|     1 | DELETE | /api/events/10/sheets/C/59/reservation  |   0 |   1 |   0 |   0 |   0 |  0.295 |  0.295 |   0.295 |  0.295 |  0.295 |  0.295 |  0.295 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/459/reservation |   0 |   1 |   0 |   0 |   0 |  1.345 |  1.345 |   1.345 |  1.345 |  1.345 |  1.345 |  1.345 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/72/reservation  |   0 |   1 |   0 |   0 |   0 |  2.237 |  2.237 |   2.237 |  2.237 |  2.237 |  2.237 |  2.237 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | GET    | /api/users/1537                         |   0 |   1 |   0 |   0 |   0 | 25.213 | 25.213 |  25.213 | 25.213 | 25.213 | 25.213 | 25.213 |  0.000 |     2579.000 |     2579.000 |      2579.000 |     2579.000 |
|     1 | GET    | /api/users/2100                         |   0 |   1 |   0 |   0 |   0 | 25.216 | 25.216 |  25.216 | 25.216 | 25.216 | 25.216 | 25.216 |  0.000 |     2515.000 |     2515.000 |      2515.000 |     2515.000 |
|     1 | GET    | /api/users/4951                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/2328                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/2349                         |   0 |   0 |   0 |   0 |   1 | 30.002 | 30.002 |  30.002 | 30.002 | 30.002 | 30.002 | 30.002 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/2852                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/700                          |   0 |   0 |   0 |   0 |   1 | 30.009 | 30.009 |  30.009 | 30.009 | 30.009 | 30.009 | 30.009 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/1359                         |   0 |   1 |   0 |   0 |   0 | 26.724 | 26.724 |  26.724 | 26.724 | 26.724 | 26.724 | 26.724 |  0.000 |     2493.000 |     2493.000 |      2493.000 |     2493.000 |
|     1 | DELETE | /api/events/11/sheets/C/262/reservation |   0 |   1 |   0 |   0 |   0 |  0.256 |  0.256 |   0.256 |  0.256 |  0.256 |  0.256 |  0.256 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/0/sheets/C/462/reservation  |   0 |   0 |   0 |   1 |   0 |  0.003 |  0.003 |   0.003 |  0.003 |  0.003 |  0.003 |  0.003 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/D/462/reservation |   0 |   0 |   0 |   1 |   0 |  0.293 |  0.293 |   0.293 |  0.293 |  0.293 |  0.293 |  0.293 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/S/52/reservation  |   0 |   0 |   0 |   1 |   0 |  0.259 |  0.259 |   0.259 |  0.259 |  0.259 |  0.259 |  0.259 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/462/reservation |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | GET    | /api/users/2531                         |   0 |   1 |   0 |   0 |   0 |  3.966 |  3.966 |   3.966 |  3.966 |  3.966 |  3.966 |  3.966 |  0.000 |     2558.000 |     2558.000 |      2558.000 |     2558.000 |
|     1 | DELETE | /api/events/10/sheets/S/30/reservation  |   0 |   1 |   0 |   0 |   0 |  0.299 |  0.299 |   0.299 |  0.299 |  0.299 |  0.299 |  0.299 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/171/reservation |   0 |   1 |   0 |   0 |   0 |  1.522 |  1.522 |   1.522 |  1.522 |  1.522 |  1.522 |  1.522 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/0/sheets/C/176/reservation  |   0 |   0 |   0 |   1 |   0 |  0.008 |  0.008 |   0.008 |  0.008 |  0.008 |  0.008 |  0.008 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/D/176/reservation |   0 |   0 |   0 |   1 |   0 |  1.431 |  1.431 |   1.431 |  1.431 |  1.431 |  1.431 |  1.431 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/C/176/reservation |   0 |   0 |   0 |   1 |   0 |  0.003 |  0.003 |   0.003 |  0.003 |  0.003 |  0.003 |  0.003 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | DELETE | /api/events/11/sheets/C/114/reservation |   0 |   1 |   0 |   0 |   0 |  2.393 |  2.393 |   2.393 |  2.393 |  2.393 |  2.393 |  2.393 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | GET    | /api/users/3027                         |   0 |   1 |   0 |   0 |   0 | 24.407 | 24.407 |  24.407 | 24.407 | 24.407 | 24.407 | 24.407 |  0.000 |     2550.000 |     2550.000 |      2550.000 |     2550.000 |
|     1 | GET    | /api/users/2248                         |   0 |   1 |   0 |   0 |   0 | 24.476 | 24.476 |  24.476 | 24.476 | 24.476 | 24.476 | 24.476 |  0.000 |     2496.000 |     2496.000 |      2496.000 |     2496.000 |
|     1 | GET    | /api/users/3437                         |   0 |   1 |   0 |   0 |   0 | 24.835 | 24.835 |  24.835 | 24.835 | 24.835 | 24.835 | 24.835 |  0.000 |     2492.000 |     2492.000 |      2492.000 |     2492.000 |
|     1 | GET    | /api/users/3442                         |   0 |   1 |   0 |   0 |   0 | 26.910 | 26.910 |  26.910 | 26.910 | 26.910 | 26.910 | 26.910 |  0.000 |     2595.000 |     2595.000 |      2595.000 |     2595.000 |
|     1 | GET    | /api/users/2949                         |   0 |   0 |   0 |   0 |   1 | 30.003 | 30.003 |  30.003 | 30.003 | 30.003 | 30.003 | 30.003 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/1                            |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/270                          |   0 |   1 |   0 |   0 |   0 | 28.145 | 28.145 |  28.145 | 28.145 | 28.145 | 28.145 | 28.145 |  0.000 |     2476.000 |     2476.000 |      2476.000 |     2476.000 |
|     1 | GET    | /api/users/3060                         |   0 |   1 |   0 |   0 |   0 | 16.660 | 16.660 |  16.660 | 16.660 | 16.660 | 16.660 | 16.660 |  0.000 |     2630.000 |     2630.000 |      2630.000 |     2630.000 |
|     1 | GET    | /api/users/4242                         |   0 |   1 |   0 |   0 |   0 | 15.840 | 15.840 |  15.840 | 15.840 | 15.840 | 15.840 | 15.840 |  0.000 |     2547.000 |     2547.000 |      2547.000 |     2547.000 |
+-------+--------+-----------------------------------------+-----+-----+-----+-----+-----+--------+--------+---------+--------+--------+--------+--------+--------+--------------+--------------+---------------+--------------+

alp --avg

+-------+--------+-----------------------------------------+-----+-----+-----+-----+-----+--------+--------+---------+--------+--------+--------+--------+--------+--------------+--------------+---------------+--------------+
| COUNT | METHOD |                   URI                   | 1XX | 2XX | 3XX | 4XX | 5XX |  MIN   |  MAX   |   SUM   |  AVG   |   P1   |  P50   |  P99   | STDDEV |  MIN(BODY)   |  MAX(BODY)   |   SUM(BODY)   |  AVG(BODY)   |
+-------+--------+-----------------------------------------+-----+-----+-----+-----+-----+--------+--------+---------+--------+--------+--------+--------+--------+--------------+--------------+---------------+--------------+
|     1 | GET    | /api/users/700                          |   0 |   0 |   0 |   0 |   1 | 30.009 | 30.009 |  30.009 | 30.009 | 30.009 | 30.009 | 30.009 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/583                          |   0 |   0 |   0 |   0 |   1 | 30.008 | 30.008 |  30.008 | 30.008 | 30.008 | 30.008 | 30.008 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/3159                         |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/552                          |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/1                            |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/467                          |   0 |   0 |   0 |   0 |   1 | 30.004 | 30.004 |  30.004 | 30.004 | 30.004 | 30.004 | 30.004 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/2949                         |   0 |   0 |   0 |   0 |   1 | 30.003 | 30.003 |  30.003 | 30.003 | 30.003 | 30.003 | 30.003 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/1434                         |   0 |   0 |   0 |   0 |   1 | 30.003 | 30.003 |  30.003 | 30.003 | 30.003 | 30.003 | 30.003 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/2349                         |   0 |   0 |   0 |   0 |   1 | 30.002 | 30.002 |  30.002 | 30.002 | 30.002 | 30.002 | 30.002 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/3194                         |   0 |   0 |   0 |   0 |   1 | 30.002 | 30.002 |  30.002 | 30.002 | 30.002 | 30.002 | 30.002 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/4951                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/2328                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/2852                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/4085                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/3387                         |   0 |   0 |   0 |   0 |   1 | 30.001 | 30.001 |  30.001 | 30.001 | 30.001 | 30.001 | 30.001 |  0.000 |       11.000 |       11.000 |        11.000 |       11.000 |
|     1 | GET    | /api/users/270                          |   0 |   1 |   0 |   0 |   0 | 28.145 | 28.145 |  28.145 | 28.145 | 28.145 | 28.145 | 28.145 |  0.000 |     2476.000 |     2476.000 |      2476.000 |     2476.000 |
|     1 | GET    | /api/users/3442                         |   0 |   1 |   0 |   0 |   0 | 26.910 | 26.910 |  26.910 | 26.910 | 26.910 | 26.910 | 26.910 |  0.000 |     2595.000 |     2595.000 |      2595.000 |     2595.000 |
|     1 | GET    | /api/users/1359                         |   0 |   1 |   0 |   0 |   0 | 26.724 | 26.724 |  26.724 | 26.724 | 26.724 | 26.724 | 26.724 |  0.000 |     2493.000 |     2493.000 |      2493.000 |     2493.000 |
|     1 | GET    | /api/users/274                          |   0 |   1 |   0 |   0 |   0 | 26.494 | 26.494 |  26.494 | 26.494 | 26.494 | 26.494 | 26.494 |  0.000 |     2524.000 |     2524.000 |      2524.000 |     2524.000 |
|     1 | GET    | /api/users/1694                         |   0 |   1 |   0 |   0 |   0 | 25.522 | 25.522 |  25.522 | 25.522 | 25.522 | 25.522 | 25.522 |  0.000 |     2552.000 |     2552.000 |      2552.000 |     2552.000 |
|     1 | GET    | /api/users/2100                         |   0 |   1 |   0 |   0 |   0 | 25.216 | 25.216 |  25.216 | 25.216 | 25.216 | 25.216 | 25.216 |  0.000 |     2515.000 |     2515.000 |      2515.000 |     2515.000 |
|     1 | GET    | /api/users/1537                         |   0 |   1 |   0 |   0 |   0 | 25.213 | 25.213 |  25.213 | 25.213 | 25.213 | 25.213 | 25.213 |  0.000 |     2579.000 |     2579.000 |      2579.000 |     2579.000 |
|     1 | GET    | /api/users/3437                         |   0 |   1 |   0 |   0 |   0 | 24.835 | 24.835 |  24.835 | 24.835 | 24.835 | 24.835 | 24.835 |  0.000 |     2492.000 |     2492.000 |      2492.000 |     2492.000 |
|     1 | GET    | /api/users/2248                         |   0 |   1 |   0 |   0 |   0 | 24.476 | 24.476 |  24.476 | 24.476 | 24.476 | 24.476 | 24.476 |  0.000 |     2496.000 |     2496.000 |      2496.000 |     2496.000 |
|     1 | GET    | /api/users/3027                         |   0 |   1 |   0 |   0 |   0 | 24.407 | 24.407 |  24.407 | 24.407 | 24.407 | 24.407 | 24.407 |  0.000 |     2550.000 |     2550.000 |      2550.000 |     2550.000 |
|     1 | GET    | /api/users/3270                         |   0 |   1 |   0 |   0 |   0 | 23.734 | 23.734 |  23.734 | 23.734 | 23.734 | 23.734 | 23.734 |  0.000 |     2639.000 |     2639.000 |      2639.000 |     2639.000 |
|     1 | GET    | /api/users/4245                         |   0 |   1 |   0 |   0 |   0 | 22.945 | 22.945 |  22.945 | 22.945 | 22.945 | 22.945 | 22.945 |  0.000 |     2559.000 |     2559.000 |      2559.000 |     2559.000 |
|     1 | GET    | /api/users/1090                         |   0 |   1 |   0 |   0 |   0 | 21.518 | 21.518 |  21.518 | 21.518 | 21.518 | 21.518 | 21.518 |  0.000 |     2482.000 |     2482.000 |      2482.000 |     2482.000 |
|     1 | GET    | /api/users/3724                         |   0 |   1 |   0 |   0 |   0 | 20.736 | 20.736 |  20.736 | 20.736 | 20.736 | 20.736 | 20.736 |  0.000 |     2541.000 |     2541.000 |      2541.000 |     2541.000 |
|     1 | GET    | /api/users/3060                         |   0 |   1 |   0 |   0 |   0 | 16.660 | 16.660 |  16.660 | 16.660 | 16.660 | 16.660 | 16.660 |  0.000 |     2630.000 |     2630.000 |      2630.000 |     2630.000 |
|     1 | GET    | /api/users/4242                         |   0 |   1 |   0 |   0 |   0 | 15.840 | 15.840 |  15.840 | 15.840 | 15.840 | 15.840 | 15.840 |  0.000 |     2547.000 |     2547.000 |      2547.000 |     2547.000 |
|    69 | GET    | /                                       |   0 |  69 |   0 |   0 |   0 |  0.853 | 21.125 | 602.881 |  8.737 |  0.912 |  4.764 | 14.174 |  5.087 |    14336.000 |    15233.000 |   1022288.000 |    14815.768 |
|    10 | GET    | /admin/api/reports/sales                |   0 |  10 |   0 |   0 |   0 |  6.420 |  7.996 |  69.750 |  6.975 |  7.399 |  7.590 |  6.729 |  0.508 | 13877467.000 | 13877959.000 | 138776725.000 | 13877672.500 |
|     1 | GET    | /api/users/4501                         |   0 |   1 |   0 |   0 |   0 |  5.357 |  5.357 |   5.357 |  5.357 |  5.357 |  5.357 |  5.357 |  0.000 |     2485.000 |     2485.000 |      2485.000 |     2485.000 |
|     1 | GET    | /api/users/2531                         |   0 |   1 |   0 |   0 |   0 |  3.966 |  3.966 |   3.966 |  3.966 |  3.966 |  3.966 |  3.966 |  0.000 |     2558.000 |     2558.000 |      2558.000 |     2558.000 |
|     1 | GET    | /api/users/1255                         |   0 |   1 |   0 |   0 |   0 |  3.776 |  3.776 |   3.776 |  3.776 |  3.776 |  3.776 |  3.776 |  0.000 |     2533.000 |     2533.000 |      2533.000 |     2533.000 |
|     1 | GET    | /api/users/433                          |   0 |   1 |   0 |   0 |   0 |  3.553 |  3.553 |   3.553 |  3.553 |  3.553 |  3.553 |  3.553 |  0.000 |     2492.000 |     2492.000 |      2492.000 |     2492.000 |
|     1 | GET    | /api/users/1750                         |   0 |   1 |   0 |   0 |   0 |  3.377 |  3.377 |   3.377 |  3.377 |  3.377 |  3.377 |  3.377 |  0.000 |     2575.000 |     2575.000 |      2575.000 |     2575.000 |
|     1 | DELETE | /api/events/10/sheets/C/217/reservation |   0 |   1 |   0 |   0 |   0 |  3.311 |  3.311 |   3.311 |  3.311 |  3.311 |  3.311 |  3.311 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/10/sheets/C/17/reservation  |   0 |   1 |   0 |   0 |   0 |  3.174 |  3.174 |   3.174 |  3.174 |  3.174 |  3.174 |  3.174 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|    32 | GET    | /admin/                                 |   0 |  30 |   0 |   0 |   2 |  0.012 | 30.002 |  97.893 |  3.059 |  5.942 |  0.017 |  0.016 |  7.312 |       11.000 |    20365.000 |    396796.000 |    12399.875 |
|     1 | DELETE | /api/events/11/sheets/C/448/reservation |   0 |   1 |   0 |   0 |   0 |  2.967 |  2.967 |   2.967 |  2.967 |  2.967 |  2.967 |  2.967 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     8 | GET    | /admin/api/reports/events/10/sales      |   0 |   8 |   0 |   0 |   0 |  1.857 |  4.718 |  22.695 |  2.837 |  1.857 |  2.405 |  2.022 |  0.879 |   923478.000 |   923502.000 |   7387899.000 |   923487.375 |
|     5 | GET    | /admin/api/reports/events/20/sales      |   0 |   5 |   0 |   0 |   0 |  1.844 |  3.166 |  13.924 |  2.785 |  1.844 |  3.031 |  3.128 |  0.492 |       67.000 |       67.000 |       335.000 |       67.000 |
|    16 | GET    | /admin/api/reports/events/11/sales      |   0 |  15 |   0 |   0 |   1 |  1.631 |  4.389 |  44.423 |  2.776 |  1.898 |  2.327 |  3.150 |  0.760 |      129.000 |      960.000 |      8816.000 |      551.000 |
|    88 | POST   | /api/events/11/actions/reserve          |   0 |  75 |   0 |  13 |   0 |  0.001 |  9.053 | 236.394 |  2.686 |  0.255 |  1.573 |  1.955 |  2.103 |       24.000 |       46.000 |      3761.000 |       42.739 |
|    62 | GET    | /api/events/10                          |   0 |  62 |   0 |   0 |   0 |  0.338 |  9.494 | 163.699 |  2.640 |  1.523 |  3.086 |  3.125 |  1.426 |    52877.000 |    52942.000 |   3280556.000 |    52912.194 |
|     1 | DELETE | /api/events/10/sheets/C/490/reservation |   0 |   1 |   0 |   0 |   0 |  2.636 |  2.636 |   2.636 |  2.636 |  2.636 |  2.636 |  2.636 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     9 | GET    | /admin/api/reports/events/19/sales      |   0 |   9 |   0 |   0 |   0 |  1.384 |  3.495 |  22.541 |  2.505 |  1.577 |  2.148 |  3.168 |  0.686 |       67.000 |       67.000 |       603.000 |       67.000 |
|     1 | DELETE | /api/events/11/sheets/C/114/reservation |   0 |   1 |   0 |   0 |   0 |  2.393 |  2.393 |   2.393 |  2.393 |  2.393 |  2.393 |  2.393 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/305/reservation |   0 |   1 |   0 |   0 |   0 |  2.373 |  2.373 |   2.373 |  2.373 |  2.373 |  2.373 |  2.373 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/320/reservation |   0 |   1 |   0 |   0 |   0 |  2.351 |  2.351 |   2.351 |  2.351 |  2.351 |  2.351 |  2.351 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/72/reservation  |   0 |   1 |   0 |   0 |   0 |  2.237 |  2.237 |   2.237 |  2.237 |  2.237 |  2.237 |  2.237 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/192/reservation |   0 |   1 |   0 |   0 |   0 |  2.012 |  2.012 |   2.012 |  2.012 |  2.012 |  2.012 |  2.012 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     6 | GET    | /initialize                             |   0 |   6 |   0 |   0 |   0 |  1.648 |  1.854 |  10.471 |  1.745 |  1.648 |  1.815 |  1.854 |  0.075 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/417/reservation |   0 |   1 |   0 |   0 |   0 |  1.548 |  1.548 |   1.548 |  1.548 |  1.548 |  1.548 |  1.548 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/171/reservation |   0 |   1 |   0 |   0 |   0 |  1.522 |  1.522 |   1.522 |  1.522 |  1.522 |  1.522 |  1.522 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/D/176/reservation |   0 |   0 |   0 |   1 |   0 |  1.431 |  1.431 |   1.431 |  1.431 |  1.431 |  1.431 |  1.431 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/C/459/reservation |   0 |   1 |   0 |   0 |   0 |  1.345 |  1.345 |   1.345 |  1.345 |  1.345 |  1.345 |  1.345 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|    11 | POST   | /admin/api/events/20/actions/edit       |   0 |   3 |   0 |   8 |   0 |  0.002 |  4.653 |  12.331 |  1.121 |  0.002 |  0.005 |  0.003 |  1.838 |       21.000 |    11977.000 |     36124.000 |     3284.000 |
|     8 | GET    | /api/events/20                          |   0 |   0 |   0 |   8 |   0 |  0.001 |  2.824 |   7.265 |  0.908 |  0.002 |  0.003 |  0.002 |  1.183 |       21.000 |       21.000 |       168.000 |       21.000 |
|     2 | DELETE | /api/events/11/sheets/S/87/reservation  |   0 |   0 |   0 |   2 |   0 |  0.248 |  1.451 |   1.699 |  0.850 |  0.248 |  0.248 |  0.248 |  0.602 |       25.000 |       25.000 |        50.000 |       25.000 |
|    18 | POST   | /admin/api/events                       |   0 |   9 |   0 |   9 |   0 |  0.003 |  3.848 |  12.568 |  0.698 |  0.001 |  0.002 |  0.005 |  1.172 |       32.000 |    11978.000 |    108054.000 |     6003.000 |
|    11 | GET    | /admin/api/events/20                    |   0 |   3 |   0 |   8 |   0 |  0.002 |  2.891 |   6.437 |  0.585 |  0.002 |  0.002 |  0.003 |  0.993 |       21.000 |    11978.000 |     36127.000 |     3284.273 |
|     1 | DELETE | /api/events/10/sheets/C/22/reservation  |   0 |   1 |   0 |   0 |   0 |  0.527 |  0.527 |   0.527 |  0.527 |  0.527 |  0.527 |  0.527 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/S/61/reservation  |   0 |   0 |   0 |   1 |   0 |  0.493 |  0.493 |   0.493 |  0.493 |  0.493 |  0.493 |  0.493 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|    12 | GET    | /api/events/19                          |   0 |   7 |   0 |   5 |   0 |  0.236 |  1.518 |   4.773 |  0.398 |  0.553 |  0.245 |  0.263 |  0.350 |       21.000 |    11932.000 |     83619.000 |     6968.250 |
|     5 | POST   | /api/events/10/actions/reserve          |   0 |   5 |   0 |   0 |   0 |  0.317 |  0.461 |   1.871 |  0.374 |  0.317 |  0.461 |  0.353 |  0.050 |       45.000 |       46.000 |       227.000 |       45.400 |
|     1 | DELETE | /api/events/10/sheets/C/181/reservation |   0 |   1 |   0 |   0 |   0 |  0.328 |  0.328 |   0.328 |  0.328 |  0.328 |  0.328 |  0.328 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/10/sheets/C/479/reservation |   0 |   1 |   0 |   0 |   0 |  0.308 |  0.308 |   0.308 |  0.308 |  0.308 |  0.308 |  0.308 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/10/sheets/S/30/reservation  |   0 |   1 |   0 |   0 |   0 |  0.299 |  0.299 |   0.299 |  0.299 |  0.299 |  0.299 |  0.299 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/D/82/reservation  |   0 |   0 |   0 |   1 |   0 |  0.296 |  0.296 |   0.296 |  0.296 |  0.296 |  0.296 |  0.296 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/10/sheets/C/59/reservation  |   0 |   1 |   0 |   0 |   0 |  0.295 |  0.295 |   0.295 |  0.295 |  0.295 |  0.295 |  0.295 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/D/462/reservation |   0 |   0 |   0 |   1 |   0 |  0.293 |  0.293 |   0.293 |  0.293 |  0.293 |  0.293 |  0.293 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/D/431/reservation |   0 |   0 |   0 |   1 |   0 |  0.286 |  0.286 |   0.286 |  0.286 |  0.286 |  0.286 |  0.286 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/D/405/reservation |   0 |   0 |   0 |   1 |   0 |  0.281 |  0.281 |   0.281 |  0.281 |  0.281 |  0.281 |  0.281 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/D/67/reservation  |   0 |   0 |   0 |   1 |   0 |  0.277 |  0.277 |   0.277 |  0.277 |  0.277 |  0.277 |  0.277 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/D/238/reservation |   0 |   0 |   0 |   1 |   0 |  0.276 |  0.276 |   0.276 |  0.276 |  0.276 |  0.276 |  0.276 |  0.000 |       24.000 |       24.000 |        24.000 |       24.000 |
|     1 | DELETE | /api/events/11/sheets/S/100/reservation |   0 |   0 |   0 |   1 |   0 |  0.259 |  0.259 |   0.259 |  0.259 |  0.259 |  0.259 |  0.259 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/S/52/reservation  |   0 |   0 |   0 |   1 |   0 |  0.259 |  0.259 |   0.259 |  0.259 |  0.259 |  0.259 |  0.259 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/262/reservation |   0 |   1 |   0 |   0 |   0 |  0.256 |  0.256 |   0.256 |  0.256 |  0.256 |  0.256 |  0.256 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/496/reservation |   0 |   1 |   0 |   0 |   0 |  0.254 |  0.254 |   0.254 |  0.254 |  0.254 |  0.254 |  0.254 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/22/reservation  |   0 |   1 |   0 |   0 |   0 |  0.248 |  0.248 |   0.248 |  0.248 |  0.248 |  0.248 |  0.248 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/326/reservation |   0 |   1 |   0 |   0 |   0 |  0.246 |  0.246 |   0.246 |  0.246 |  0.246 |  0.246 |  0.246 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/S/60/reservation  |   0 |   0 |   0 |   1 |   0 |  0.245 |  0.245 |   0.245 |  0.245 |  0.245 |  0.245 |  0.245 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|    10 | POST   | /admin/api/events/19/actions/edit       |   0 |   5 |   0 |   5 |   0 |  0.001 |  0.514 |   2.437 |  0.244 |  0.001 |  0.001 |  0.001 |  0.243 |       32.000 |    11974.000 |     60022.000 |     6002.200 |
|     1 | DELETE | /api/events/11/sheets/S/57/reservation  |   0 |   0 |   0 |   1 |   0 |  0.238 |  0.238 |   0.238 |  0.238 |  0.238 |  0.238 |  0.238 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/303/reservation |   0 |   1 |   0 |   0 |   0 |  0.237 |  0.237 |   0.237 |  0.237 |  0.237 |  0.237 |  0.237 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|     1 | DELETE | /api/events/11/sheets/C/127/reservation |   0 |   1 |   0 |   0 |   0 |  0.232 |  0.232 |   0.232 |  0.232 |  0.232 |  0.232 |  0.232 |  0.000 |        0.000 |        0.000 |         0.000 |        0.000 |
|    15 | GET    | /admin/api/events/19                    |   0 |  10 |   0 |   5 |   0 |  0.001 |  0.403 |   2.645 |  0.176 |  0.000 |  0.001 |  0.258 |  0.130 |       32.000 |    11975.000 |    119889.000 |     7992.600 |
|    48 | POST   | /api/users                              |   0 |  38 |   0 |  10 |   0 |  0.002 |  2.087 |   4.074 |  0.085 |  0.009 |  0.003 |  0.030 |  0.341 |       22.000 |       38.000 |      1577.000 |       32.854 |
|   265 | POST   | /api/actions/login                      |   0 | 249 |   0 |  16 |   0 |  0.002 |  2.995 |  12.524 |  0.047 |  0.006 |  0.007 |  0.010 |  0.293 |       30.000 |       41.000 |      9728.000 |       36.709 |
|    91 | POST   | /admin/api/actions/login                |   0 |  67 |   0 |  24 |   0 |  0.001 |  0.431 |   1.296 |  0.014 |  0.003 |  0.006 |  0.010 |  0.044 |       27.000 |       42.000 |      3238.000 |       35.582 |
|     1 | DELETE | /api/events/0/sheets/C/176/reservation  |   0 |   0 |   0 |   1 |   0 |  0.008 |  0.008 |   0.008 |  0.008 |  0.008 |  0.008 |  0.008 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/0/sheets/C/462/reservation  |   0 |   0 |   0 |   1 |   0 |  0.003 |  0.003 |   0.003 |  0.003 |  0.003 |  0.003 |  0.003 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/0/sheets/C/82/reservation   |   0 |   0 |   0 |   1 |   0 |  0.003 |  0.003 |   0.003 |  0.003 |  0.003 |  0.003 |  0.003 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     7 | POST   | /api/events/0/actions/reserve           |   0 |   0 |   0 |   7 |   0 |  0.002 |  0.007 |   0.024 |  0.003 |  0.003 |  0.002 |  0.003 |  0.002 |       25.000 |       25.000 |       175.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/176/reservation |   0 |   0 |   0 |   1 |   0 |  0.003 |  0.003 |   0.003 |  0.003 |  0.003 |  0.003 |  0.003 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|    16 | POST   | /admin/api/actions/logout               |   0 |   8 |   0 |   8 |   0 |  0.001 |  0.006 |   0.037 |  0.002 |  0.003 |  0.001 |  0.002 |  0.002 |       32.000 |       32.000 |       256.000 |       16.000 |
|     1 | DELETE | /api/events/0/sheets/C/67/reservation   |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|    16 | POST   | /api/actions/logout                     |   0 |   8 |   0 |   8 |   0 |  0.001 |  0.008 |   0.034 |  0.002 |  0.003 |  0.002 |  0.003 |  0.002 |       26.000 |       26.000 |       208.000 |       13.000 |
|     1 | DELETE | /api/events/0/sheets/C/405/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/0/sheets/C/431/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/0/sheets/C/238/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       25.000 |       25.000 |        25.000 |       25.000 |
|     1 | DELETE | /api/events/11/sheets/C/462/reservation |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | DELETE | /api/events/11/sheets/C/82/reservation  |   0 |   0 |   0 |   1 |   0 |  0.002 |  0.002 |   0.002 |  0.002 |  0.002 |  0.002 |  0.002 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | DELETE | /api/events/11/sheets/C/67/reservation  |   0 |   0 |   0 |   1 |   0 |  0.001 |  0.001 |   0.001 |  0.001 |  0.001 |  0.001 |  0.001 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|    92 | GET    | /css/bootstrap.min.css                  |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.013 |   0.097 |  0.001 |  0.003 |  0.000 |  0.007 |  0.002 |   140930.000 |   140930.000 |  12965560.000 |   140930.000 |
|     1 | DELETE | /api/events/11/sheets/C/431/reservation |   0 |   0 |   0 |   1 |   0 |  0.001 |  0.001 |   0.001 |  0.001 |  0.001 |  0.001 |  0.001 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|     1 | DELETE | /api/events/11/sheets/C/405/reservation |   0 |   0 |   0 |   1 |   0 |  0.001 |  0.001 |   0.001 |  0.001 |  0.001 |  0.001 |  0.001 |  0.000 |       26.000 |       26.000 |        26.000 |       26.000 |
|    92 | GET    | /js/vue.min.js                          |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.005 |   0.010 |  0.000 |  0.000 |  0.000 |  0.000 |  0.001 |    86452.000 |    86452.000 |   7953584.000 |    86452.000 |
|    92 | GET    | /js/admin.js                            |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     8454.000 |     8454.000 |    777768.000 |     8454.000 |
|    92 | GET    | /js/bootstrap-waitingfor.min.js         |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     2074.000 |     2074.000 |    190808.000 |     2074.000 |
|    92 | GET    | /js/app.js                              |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |    10204.000 |    10204.000 |    938768.000 |    10204.000 |
|    92 | GET    | /js/fetch.min.js                        |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     7337.000 |     7337.000 |    675004.000 |     7337.000 |
|    92 | GET    | /favicon.ico                            |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |     1092.000 |     1092.000 |    100464.000 |     1092.000 |
|    92 | GET    | /css/layout.css                         |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |      707.000 |      707.000 |     65044.000 |      707.000 |
|    92 | GET    | /js/bootstrap.bundle.min.js             |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |    70682.000 |    70682.000 |   6502744.000 |    70682.000 |
|    92 | GET    | /css/admin.css                          |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |      684.000 |      684.000 |     62928.000 |      684.000 |
|    92 | GET    | /js/jquery-3.3.1.slim.min.js            |   0 |  92 |   0 |   0 |   0 |  0.000 |  0.000 |   0.000 |  0.000 |  0.000 |  0.000 |  0.000 |  0.000 |    69917.000 |    69917.000 |   6432364.000 |    69917.000 |
+-------+--------+-----------------------------------------+-----+-----+-----+-----+-----+--------+--------+---------+--------+--------+--------+--------+--------+--------------+--------------+---------------+--------------+

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.