Skip to content
Snippets Groups Projects
Verified Commit f188bfb3 authored by Yorick Peterse's avatar Yorick Peterse
Browse files

Added counts to timings per action per day

parent 211987c9
No related branches found
No related tags found
No related merge requests found
CREATE CONTINUOUS QUERY grape_transaction_timings_per_action_per_day ON $DATABASE
BEGIN
SELECT mean("duration") AS duration_mean,
SELECT count("duration") AS count,
mean("duration") AS duration_mean,
percentile("duration", 95) AS duration_95th,
percentile("duration", 99) AS duration_99th,
mean(sql_duration) AS sql_duration_mean,
Loading
Loading
CREATE CONTINUOUS QUERY rails_transaction_timings_per_action_per_day ON $DATABASE
BEGIN
SELECT mean("duration") AS duration_mean,
SELECT count("duration") AS count,
mean("duration") AS duration_mean,
percentile("duration", 95) AS duration_95th,
percentile("duration", 99) AS duration_99th,
mean(sql_duration) AS sql_duration_mean,
Loading
Loading
CREATE CONTINUOUS QUERY sidekiq_transaction_timings_per_action_per_day ON $DATABASE
BEGIN
SELECT mean("duration") AS duration_mean,
SELECT count("duration") AS count,
mean("duration") AS duration_mean,
percentile("duration", 95) AS duration_95th,
percentile("duration", 99) AS duration_99th,
mean(sql_duration) AS sql_duration_mean,
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment