mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 10:37:41 +08:00
comment the right of the metrics
This commit is contained in:
parent
8d47d2d018
commit
8a1b1a95f3
@ -22,6 +22,7 @@ pub async fn get_metrics(
|
|||||||
let response = create_all_stats(
|
let response = create_all_stats(
|
||||||
(*index_scheduler).clone(),
|
(*index_scheduler).clone(),
|
||||||
(*auth_controller).clone(),
|
(*auth_controller).clone(),
|
||||||
|
// we don't use the filters contained in the `ActionPolicy` because the metrics must have the right to access all the indexes.
|
||||||
&AuthFilter::default(),
|
&AuthFilter::default(),
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ use crate::common::Server;
|
|||||||
|
|
||||||
pub static AUTHORIZATIONS: Lazy<HashMap<(&'static str, &'static str), HashSet<&'static str>>> =
|
pub static AUTHORIZATIONS: Lazy<HashMap<(&'static str, &'static str), HashSet<&'static str>>> =
|
||||||
Lazy::new(|| {
|
Lazy::new(|| {
|
||||||
let mut authorizations = hashmap! {
|
let authorizations = hashmap! {
|
||||||
("POST", "/multi-search") => hashset!{"search", "*"},
|
("POST", "/multi-search") => hashset!{"search", "*"},
|
||||||
("POST", "/indexes/products/search") => hashset!{"search", "*"},
|
("POST", "/indexes/products/search") => hashset!{"search", "*"},
|
||||||
("GET", "/indexes/products/search") => hashset!{"search", "*"},
|
("GET", "/indexes/products/search") => hashset!{"search", "*"},
|
||||||
|
Loading…
Reference in New Issue
Block a user