Skip to content
Snippets Groups Projects
Verified Commit f4c02c76 authored by Kristian Klausen's avatar Kristian Klausen :tada:
Browse files

grafana: Make the database for dashboards.al.org stateless

We don't have any state for dashboards.archlinux.org we want to persist,
so to avoid any stale data in the database, start with a new empty
in-memory database every time Grafana starts.
parent dce54587
No related branches found
No related tags found
No related merge requests found
Pipeline #16064 passed
......@@ -106,7 +106,11 @@ enable_gzip = true
;server_cert_name =
# For "sqlite3" only, path relative to data_path setting
{% if grafana_anonymous_access %}
path = ":memory"
{% else %}
;path = grafana.db
{% endif %}
# Max idle conn setting default is 2
;max_idle_conn = 2
......
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