Brecht
Brecht
This results in problems with packages such as better-sqlite3 when building dependencies: ```sh yarn node -e 'console.log(process.config)' -> node_module_version: 115, node -e 'console.log(process.config)' -> node_module_version: 120, ``` Error: ``` node_modules/better-sqlite3/build/Release/better_sqlite3.node'...
Yes indeed. Seeing [this comment](https://github.com/cachix/devenv/issues/478#issuecomment-1663735284), would it be possible to do something similar for this snippet? ``` { overlays = [ (final: prev: { nodejs = pkgs.nodejs_21; }) ]; }...
Current workarounds to make it work, not using nodejs-slim pkg, or overlay in flake: ```nix { pkgs, lib, config, inputs, ... }: { languages.javascript = rec { package = pkgs.nodejs_21;...
Hi @Anon258 thanks for the detailed research! > It seems HTTP_SERVER_TOTAL_REQUESTS, HTTP_SERVER_TOTAL_RESPONSES and HTTP_SERVER_TOTAL_FAILURES are not listed as metrics in this This is totally expected as currently opentelemetry is mainly...
Problem here is not only that we have missing extensions, but also that the order of the ones we set is wrong. Something we will have to fix, and think...
So far extensions found that are missing - RECORD_SIZE_LIMIT - APPLICATION_LAYER_PROTOCOL_SETTINGS (blocked on updating rama-boring) - DELEGATED_CREDENTIAL - ENCRYPTED_CLIENT_HELLO (will probably open separate issue for this one, as it might...
> Can you open a PR to already enable this at least in case the extension is found in the client config for boring? Similar how we do it for...
Example website that shows if you have this enabled: https://defo.ie/ech-check.php Dns record with google that shows this: (`ech=` part in data response) https://dns.google/query?name=defo.ie&rr_type=HTTPS&ecs=
Two main things: - Better testing for this once we have acme server (did not find time to complete that one yet) - Implementing more API, currently the API only...
@GlenDC I'm going to pick this one up. Plan is to split up the work in multiple stages. Will probably follow these steps, but depending on how it goes it...