Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Hashing sensible information in cookies, request_url and referer. #494

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions calc_timing.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
select
t.measure_id,
t.measure_session,
t.measure_point,
t.call_count,
(t.time_function / t.call_count) as time_per_call,
t.recursive_call_count,
t.time_total,
t.time_function,
(t.time_total - t.time_function) as time_other,
t.code
from timings as t
order by
t.time_total desc,
t.time_function desc
limit 10;
17 changes: 17 additions & 0 deletions calc_timing_calls.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
select
tc.measure_id,
tc.measure_point,
tc.call_count,
(tc.time_function / tc.call_count) as time_per_call,
tc.recursive_call_count,
tc.time_total,
tc.time_function,
(tc.time_total - tc.time_function) as time_other,
tc.code
from timings_calls as tc
where tc.measure_id = 411
order by
tc.time_total desc,
tc.time_function desc,
time_other desc
limit 5;
Loading