M0rdecay

Results 11 comments of M0rdecay

This is not the best quality code, but I managed to do it like this: ```go npath := "" for seg := e; seg != nil; seg = seg.Parent() {...

This is still an urgent problem that prevents the [creation of alerts in Grafana based on lack of data](https://github.com/grafana/grafana/issues/24979).

Same problem with Filebeat and Logstash 7.7.1. This is a serious trouble if there is periodic work on the network that makes Logstash unavailable for a while.

@danielnelson, you need to support the definition of the destination port, getting them not from labels, but from `spec.ports[%PORT_NAME%]` Example service manifest: ```yaml apiVersion: v1 kind: Service metadata: name: pili...

Or you can use the API of the prometheus operator - https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#servicemonitor But this will require a deployed prometheus operator in the cluster, which, in some scenarios, I would like...

Hello! Any chances new release will be published with this patch? UPD 27.02 Okay, using a raw ConsumerGroup like in [example](https://pkg.go.dev/github.com/segmentio/kafka-go#example-Generation.Start-ConsumerGroupParallelReaders) helps to avoid this error.

Yes, looks like sysinfo_t returns host parameters, it doesn't count cgroup mem limit. Upd. My bad, cgroup limit should be available in `sys/fs/cgroup/memory/memory.limit_in_bytes`

Well, this works for me ```go func sysTotalMemory() uint64 { in := &syscall.Sysinfo_t{} err := syscall.Sysinfo(in) if err != nil { return 0 } // If this is a 32-bit...