diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-05 10:29:45 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-10 13:25:06 +0200 |
commit | 633958c7b1ce9c83df5159051fd299b484d0d797 (patch) | |
tree | 906246beab76ee6981af03fb31ce04421cd6b6ab /src/util | |
parent | 5768bf362262f78376af14517c4921941986192e (diff) | |
download | garage-633958c7b1ce9c83df5159051fd299b484d0d797.tar.gz garage-633958c7b1ce9c83df5159051fd299b484d0d797.zip |
Refactor admin API to be in api/admin and use common code
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/config.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util/config.rs b/src/util/config.rs index 4d66bfe4..99ebce31 100644 --- a/src/util/config.rs +++ b/src/util/config.rs @@ -121,6 +121,10 @@ pub struct WebConfig { pub struct AdminConfig { /// Address and port to bind for admin API serving pub api_bind_addr: Option<SocketAddr>, + /// Bearer token to use to scrape metrics + pub metrics_token: Option<String>, + /// Bearer token to use to access Admin API endpoints + pub admin_token: Option<String>, /// OTLP server to where to export traces pub trace_sink: Option<String>, } |