Dario Heinisch
Dario Heinisch
@irevoire Currently we do: ```rust crate::metrics::MEILISEARCH_HTTP_RESPONSE_TIME_SECONDS .with_label_values(&[&request_method, metric_group]) .start_timer(), ``` Do you want that request_method is one of `Get`, `Post`, `Delete`, `Patch` and then maybe also add `All` so that...
The only issue with this is that you then group routes together that do different things for instance for https://www.meilisearch.com/docs/reference/api/settings#dictionary we have 1 route with 3 different operation and the...
Not every route is handled the same by the engine only the POST & GET for search is, right? But for instance getting, updating & resetting a settings re different...
Ah awesome! Should the docs of `set_scale` maybe be adjusted so that future users know about it?
@paupino Yes some clearer docs would be nice. Maybe we can also add a code example directly to the docs as example. I personally think a coding example with comments...
Could you maybe try the following: In line [68](https://github.com/cjbassi/ytop/blob/74f697f6dca75e8d126d815e43a09d696fb3ede6/src/widgets/temp.rs#L68) of [src/widgets/temp.rs](https://github.com/cjbassi/ytop/blob/master/src/widgets/temp.rs) could you change it to: ```diff + let mut sys = System::new_all(); + sys.refresh_all(); - let sys = System::new_all();...
Otherwise it could be an issue with the following library: [sysinfo](https://github.com/GuillaumeGomez/sysinfo) as this library is used to get the temperature on mac os.
Could you please run the following on your mac pro @iliyan61 : ```rust // main.rs use sysinfo::{ComponentExt, System, SystemExt}; fn main() { let mut sys = System::new_all(); sys.refresh_all(); let sensor_data...
Homebrew only installs the binary, so you cannot find the directory. If you clone the repo, you would be able to edit it, but I guess without knowledge of rust...
Should be fixed!