Guillaume Raffin
Guillaume Raffin
Expected: should print the same thing as `bloop about` (which works) Actual: ``` ➜ bloop --version The handling of `about` does not happen in the `Interpreter` ``` Using Scala 2.12.8...
I see two big areas of improvement: - [ ] Parsers: show the erroneous line (and maybe even its content!) - [ ] ObjectConverter: detect when the types mismatch, for...
- [ ] valueMap(): After a search of all the Github projects mentioning night-config, I've found that the only occurrences of `config.valueMap()` are for iterating on the config entries, keys...
Hello! Thanks for the scala library. How can I list the nodes of the cluster? There's `KubernetesClient.pods` but no `KubernetesClient.nodes`. With the java kubernetes client I can call `api.listNode(null, false,...
I was surprised by the `NotSupported` errors I got when calling `total_energy_consumption` on a Pascal GPU. It turns out that [Nvidia's documentation reads](https://docs.nvidia.com/deploy/nvml-api/group__nvmlDeviceQueries.html) "Supports Volta and newer" instead of "Pascal...
What should be done about unsigned integers? ## Context Unsigned integers, as they are currently implemented in SN, are problematic for two (families of) reasons: - bad performance (UInt is...
## Problem Scaphandre is able to analyze qemu/KVM virtual machines (if qemu is started in system mode, it doesn't seem to work in user mode. For instance, it doesn't work...
## Problem The RAPL energy counter is incremented and can overflow. Currently, this overflow is [not handled](https://github.com/hubblo-org/scaphandre/blob/5c8d63c09c1f2e6a934adef469d0bc7a06e694ea/src/sensors/mod.rs#L965). Currently, the energy measurements are "slightly" (potentially a lot?) wrong. Fixing that might...
## Problem For now, Scaphandre works by starting _one_ exporter that will poll _one_ sensor. If one wants to export the data to multiple destinations, another instance of Scaphandre is...
This allows to read _and_ write a PerfEventArray, from userspace _and_ kernel. Thanks to these modifications, one can read perf events from ebpf code! ## Usage 1. open the perf...