Mike Hanby

Results 11 comments of Mike Hanby

I just installed Auditbeat 7.14 via RPM (from elastic.co) on a RHEL 7 system and encountered the same issue. Auditbeat worked running it interactively but not via Systemd: ```shell /usr/share/auditbeat/bin/auditbeat...

Thanks for sharing the `ZSH_HIGHLIGHT_MAXLENGTH` variable. Pasting blocks of script to the terminal was so slow I was about to disable the plugin.

The OP is referencing the Grafana dashboard [System Process Metrics #8378](https://grafana.com/grafana/dashboards/8378-system-processes-metrics/) There are 2 graphs at the top that don't work, while all of the other graphs do have data....

And the above client config comes from this blog: https://vimalselvam.com/post/prometheus-capturing-username-in-process-exporter/

> @sumitsharma16 try use: > > ``` > topk(5,(rate(namedprocess_namegroup_cpu_seconds_total{groupname=~"$processes",instance=~"$host"}[$interval]) > + > rate(namedprocess_namegroup_thread_cpu_seconds_total{groupname=~"$processes",instance=~"$host"}[$interval])) > or > (irate(namedprocess_namegroup_cpu_seconds_total{groupname=~"$processes",instance=~"$host"}[5m]) > + > irate(namedprocess_namegroup_cpu_seconds_total{groupname=~"$processes",instance=~"$host"}[5m]))) > ``` > > It's work for me Thanks,...

This appears to work ``` topk(5, rate(namedprocess_namegroup_cpu_seconds_total{groupname=~"$processes",instance=~"$host"}[$interval]) or ( irate(namedprocess_namegroup_cpu_seconds_total{groupname=~"$processes",instance=~"$host"}[5m]))) ```

Happened to me on a Mac today after rebooting. After a lot testing, I finally decided to change the following in my `~/.tmux.conf.local` file - From ```shell set -g @plugin...

I ran a few tests and it appears that calling `nhcmain_finish` works to bypass the code that drain/un-drains the node, however I believe that this would also bypass processing checks...

> So if you wanted the check to pass but disallow "undraining" of the node, you can do something like ONLINE_NODE=: and then return 0 from your check. This would...

Perhaps the following should be a Github issue by itself, but starting the convo here as it relates to the troubleshooting comment above. Here's a recent comment added to a...