Automate Your Site Checks with Cron (and WPCron)
Want to monitor all your cron jobs on your WordPress site? You can do this, but it’s messy. Really messy.
Automate Your Site Checks with Cron (and WPCron)
Want to monitor all your cron jobs on your WordPress site? You can do this, but it’s messy. Really messy.
The Nextcloud pod as seen under the Podman containers menu in Cockpit.
In a termninal, I can run:
$ sudo podman healthcheck run nextcloud-app
to run the healthcheck on a single container, or run:
$ sudo podman ps
to see the health state for all running containers.
4) caddy:latest
The caddy image doesn't have any built-in healthcheck, and even `curl` is missing.
Luckily `wget` is available, and I use it to call Nextcloud's status page. This does check for more than the health of the caddy service itself.
Add the following in the [Container] section of the nextcloud-web.container:
...
HealthCmd=wget --quiet --spider --tries=1 https://cloud.example.com/status.php || exit 1
HealthStartPeriod=10s
HealthInterval=30s
HealthTimeout=5s
HealthRetries=5
Notify=healthy
...
3) nextcloud:fpm-alpine
This one wasn't obvious, but I was able to put something together, inspired by a closed github issue. The HealthCmd uses the built-in `occ status` command.
Add the following in the [Container] section of the nextcloud-app.container:
...
HealthCmd=php occ status 2>/dev/null | grep -e "installed: true" -e "maintenance: false" -e "needsDbUpgrade: false" | wc -l | [ "`cat`" = "3" ] || exit 1
HealthStartPeriod=20s
HealthInterval=60s
HealthTimeout=10s
HealthRetries=5
Notify=healthy
...
2) valkey/valkey:alpine
I've recently switched from redis to valkey, but they are compatible. I'll use the redis-cli tool to ping the service.
Add the following in the [Container] section of the nextcloud-redis.container:
...
HealthCmd=redis-cli ping || exit 1
HealthStartPeriod=10s
HealthInterval=30s
HealthTimeout=30s
HealthRetries=3
Notify=healthy
...
#podman #nextcloud #quadlets #healthcheck #redis #valkey
https://redis.io/learn/operate/redis-at-scale/talking-to-redis/command-line-tool
1) mariadb:10.11
This one was easy, since healthcheck is documented.
Add the following in the [Container] section of the nextcloud-db.container:
...
HealthCmd=healthcheck.sh --connect --innodb_initialized || exit 1
HealthStartPeriod=10s
HealthInterval=10s
HealthTimeout=5s
HealthRetries=3
Notify=healthy
...
I'm running a Nextcloud pod, based on quadlets. Now I want to add healthchecks to each container. At least it will look pretty in Cockpit...
In systemd unit files, the healthcheck is called a HealthCmd. Sometimes you're lucky and the corresponding Dockerfile has a healthcheck defined you can use, other times you have to make your own healthcheck.
I'm using 4 container images:
1) mariadb:10.11
2) valkey/valkey:alpine
3) nextcloud:fpm-alpine
4) caddy:latest
(The fifth container, a proxy server, mentioned in the repository below, is running on another host)
688 - Tu contenedor Docker podría estar muerto y tu sin enterarte
el #healthcheck es una característica de #docker para conocer la salud de un servicio, porque tu contenedor puede estar corriendo y el servicio muerto
Este es un tema que tendría que haber abordado hace mucho tiempo, pero que, como en otras cosas de la vida, vas dejando. Y al igual que sucede en la
Tu contenedor Docker podría estar muerto y tu sin enterarte n
el #healthcheck es una característica de #docker para conocer la salud de un servicio, porque tu contenedor puede estar corriendo y el servicio muerto
Escucha: https://atareao.es/podcast/tu-contenedor-docker-podria-estar-muerto-y-tu-sin-enterarte/
Feed: https://atareao.es/mp3-feed/
Cute Bears, Uptime Kuma, and Docker
Chilling on my couch with an iPad and I built out my own replacement for UptimeMonitor.
White House Doctor Confirms Donald Trump in Excellent Physical and Cognitive Health Condition
#cognitivefunction #donaldtrump #healthcheck #presidency #WhiteHouse
https://blazetrends.com/white-house-doctor-confirms-donald-trump-in-excellent-physical-and-cognitive-health-condition/?fsp_sid=11444
Как сделать livenessProbe для Kafka-консьюмеров и перестать перезапускать их вручную
Kafka-консьюмеры не всегда работают так стабильно, как хотелось бы. Иногда они просто зависают — без ошибок, без падений, но и без обработки сообщений. LivenessProbe в Kubernetes помогает автоматически перезапускать зависшие сервисы, но с Kafka-консьюмерами всё не так просто: стандартного решения для них нет. В этой статье разберём, как правильно реализовать livenessProbe для консьюмеров с помощью паттерна Heartbeat , чтобы не перезапускать их вручную.
Medical Thermometer Market is Driven by Rising Incidences of Fever
The Global Medical Thermometer Market is estimated to be valued at USD 2.39 Bn in 2025 and is expected to exhibit a CAGR of 8.6% over the forecast period 2025-2032.
Medical Thermometer Market- https://timessquarereporter.com/health/medical-thermometer-market-is-estimated-to-witness-high-growth-owing-to-technological-advancements-in-temperature-measurement
#CoherentMarketInsights #HealthCheck #MedicalThermometerMarket #MedicalThermometerMarketSize #MedicalThermometer
Don't delay your health! Learn when to schedule essential cancer screenings based on age, risk factors, and the latest guidelines. Early detection saves lives. Find out what's right for you.
https://www.mrmed.in/health-library/cancer-care/best-time-for-cancer-screening
#CancerScreening #EarlyDetection #CancerPrevention #MensHealth #WomensHealth #HealthCheck #KnowYourRisk #CancerAwareness
Health checks in ASP.NET Core are used to check the health of the application. It is used to check the status of the application and its dependencies at regular intervals.
The app is considered alive and healthy if it can respond at the health endpoints.
Check out https://ilovedotnet.org/blogs/implementing-health-checks-in-asp-net-webapi/ for exact steps..
Click to join our WhatsApp Channel for free to get notified of dotnet content once every week - https://www.whatsapp.com/channel/0029VaAGMV2LtOj5S5MHd23h.
#Earth may have breached seven of nine #planetary boundaries, #healthcheck shows. #Ocean #acidification close to critical threshold, say scientists, posing #threat to #marine #ecosystems and #global liveability. https://www.theguardian.com/environment/2024/sep/23/earth-breach-planetary-boundaries-health-check-oceans #climatecrisis #oceans #seas
Yes, I think this is possible.
For a completely DIY approach, use @termux which gives you a full Linux shell.
For a more polished setup I would look into @owntracks and I would cc @jpmens who might elaborate on same to see if it is flexible enough to do the needful.
Termux would need `cron` to work, I have not tried that myself, or maybe you do a while true sleep 600 style loop.
#gps #xmpp #dns #healthcheck #PortableOps #OwnTracks #selfhosting
I was trying to get Badger let me check suspicious lumpy bumps (quite probably mats).
However, after recent events.
Failed miserably - well not so much fur the cats - they got extra #noms
Please don't look at my laundry… it is clean just not put away.
#Cats #RescueCats #HealthCheck #Kitten #TuxedoCat #IndoorCats #Tonkinese #EmptyBowlSyndrome
Healthchecks business: Report of a small one person tech operation. It's a great service!
https://blog.healthchecks.io/2024/07/running-one-man-saas-9-years-in/
#lifestylebusiness #via:hackernews #healthcheck #uptime #devops #ping #sass #+