Geoffroy Couprie
Geoffroy Couprie
# I'll let you find a nice crate name :) ## Description (original idea from @jtanguy) This is a library, written in Rust, compiled to webasm (so it can be...
# Timeline ## Description The [Snabb Switch project](https://github.com/snabbco/snabb), written in Lua, has a lot of innovative concepts, and one I really like is the [Timeline](https://github.com/snabbco/snabb/blob/timeline/src/core/timeline.md) logging. It separates the data...
when hovering the pointer above the chart, there's no tooltip appearing to indicate the values of the nearest points
there is none :D Just an accumulation of graphs. Let's find a way to make it look nice! I'm open to any idea and pull requests here. There's only one...
The metrics are only stored in memory and there's no persistence. Should we add a way to store them on the disk? If yes, how?
Right now, the metrics are stored in a very naive way: ```rust pub struct Metrics { series: HashMap, counter: usize, } pub struct Serie { pub metric_type: MetricType, pub values:...
Right now, we can only query on the metric's key, and cannot filter by period (only a past limit), by tag value, and we cannot aggregate results (mean, sum, percentiles,...
Most commits applied cleanly and immediately. * 838c28f09d6a657741ca854e1431231f9cafbbc3 took 10mn to fix up (config schema update) --- **Checklist** Complete the checklist (and note appropriate exceptions) before the PR is marked...
Both of those functions were used to initialize a planner with a new schema, but their implementation diverged with the introduction of the API schema generation and the new planner....