Karim Radhouani

Results 185 comments of Karim Radhouani

some sort of temporary workaround here: https://github.com/openconfig/gnmic/issues/419#issuecomment-2288642468

Hi, If the value statement is missing under an enum is it automatically assigned (sequentially) https://datatracker.ietf.org/doc/html/rfc7950#section-9.6.4.2 ``` If a value is not specified, then one will be automatically assigned. If...

That's because gNMIc uses golang's default logger which didn't support structured logging until [go1.21](https://go.dev/blog/slog). There is a bit of work needed to switch to slog

How do you see this working? Currently, Poll needs manual intervention to trigger the poll requests.

OK, so this is specific to a file output? If that's the case, maybe a simple file redirect will do the trick.

That is expected, it is Go's encoding/json package default behavior. It escapes `>`, `

Sure, what kind of metrics are you thinking about? Maybe just a `gnmic_cluster_locker_up{locker="consul"}`

> [@karimra](https://github.com/karimra) `gnmic_cluster_locker_up{locker="consul"}` sounds good! Happy to PR if needed Go for it, thanks!

Do you see some logs on your plugin side? Something like this maybe: `gob: type not registered for interface: int64` ?

The number of workers is simply the number of incoming (gNMI) messages that the Prometheus output can process in parallel. "Process" here means converting to event format, apply the processors,...