Skip to content
Snippets Groups Projects
Commit ec990d56 authored by Cam Saül's avatar Cam Saül Committed by GitHub
Browse files

Merge pull request #3234 from metabase/dont-log-calls-to-health-or-logs

Don't log API calls to /health or /util/logs :pencil:
parents 88121d1e cfb084cd
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@
(check-404 (db/exists? entity, :id id)))
(defn check-superuser
"Check that `*current-user*` is a superuser or throw a 403."
"Check that `*current-user*` is a superuser or throw a 403. This doesn't require a DB call."
[]
(check-403 *is-superuser?*))
......
......@@ -262,8 +262,10 @@
(defn log-api-call
"Middleware to log `:request` and/or `:response` by passing corresponding OPTIONS."
[handler & options]
(fn [request]
(if-not (api-call? request)
(fn [{:keys [uri], :as request}]
(if (or (not (api-call? request))
(= uri "/api/health") ; don't log calls to /health or /util/logs because they clutter up
(= uri "/api/util/logs")) ; the logs (especially the window in admin) with useless lines
(handler request)
(let [start-time (System/nanoTime)]
(db/with-call-counting [call-count]
......
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