Karim Radhouani

Results 185 comments of Karim Radhouani

Hi, this came up a couple of times. There are two options to get a smaller binary: 1) Build a thin version of the client, removing most outside dependencies and...

The merge processor works on events received as part of the same gNMI Subscribe Response. In your case each one of those values is received in a separate gNMI Subscribe...

The implementation is based on this comment: https://github.com/openconfig/reference/issues/89#issuecomment-1218222727 If you think this is not right or needs to be clarified I suggest starting a discussion in [openconfig/reference](https://github.com/openconfig/reference)

Typically keys must have values if your gNMI server is backed by a YANG schema: https://datatracker.ietf.org/doc/html/rfc7950#section-7.8.2 ``` The combined values of all the leafs specified in the key are used...

That HTTP request looks like it's coming from another gNMIc instance, are you running a cluster ?

TLS cannot be disabled per URL. Prometheus supports TLS on the client side: ```yaml scrape_configs: - job_name: 'telemetry' scheme: https tls_config: ca_file: 'ca.crt' cert_file: 'client.crt' key_file: 'client.key' static_configs: - targets:...

`--skip-verify` has nothing to do with the client certificate. It simply instructs the client to not verify the server certificate. > Currently, when I don't provide a client certificate, I...

Also, what kind of error do you get back?