You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello,
every 10s i see moderately high cpu usage about 50% for about 2s (using top, "d.1")
i guess this one:
root 2618 0.0 0.0 1628 768 ? Ss 20:45 0:00 /bin/sh -c bundle exec sidekiqmon processes | grep ${HOSTNAME}
root 2625 0.0 0.3 459788 13232 ? Rl 20:45 0:00 /usr/local/bin/ruby /usr/local/bundle/bin/bundle exec sidekiqmon processes
spawns for every healthcheck
while not critical,some lower powered systems could be overwhelmed?
thanks,
pb
The text was updated successfully, but these errors were encountered:
ok,for now for me this in docker compose: healthcheck: # test: [ "CMD-SHELL", "bundle exec sidekiqmon processes | grep $${HOSTNAME}" ] test: [ "CMD-SHELL", "ps axu|grep -i [s]idekiq\ 7" ]
(sorry,code block making fun of me)
this replaces launching something large every 10s with something much smaller :)
hope it does detect everything,but since i easily miss full disk,i think i'll be okay if it does not detect frozen process
hello,
every 10s i see moderately high cpu usage about 50% for about 2s (using top, "d.1")
i guess this one:
root 2618 0.0 0.0 1628 768 ? Ss 20:45 0:00 /bin/sh -c bundle exec sidekiqmon processes | grep ${HOSTNAME}
root 2625 0.0 0.3 459788 13232 ? Rl 20:45 0:00 /usr/local/bin/ruby /usr/local/bundle/bin/bundle exec sidekiqmon processes
spawns for every healthcheck
while not critical,some lower powered systems could be overwhelmed?
thanks,
pb
The text was updated successfully, but these errors were encountered: