mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-03-02 22:57:00 -05:00
Support Unix sockets #3553
Labels
No labels
A:accessibility
A:api
A:cert-expiry
A:core
A:dashboard
A:deployment
A:documentation
A:domain expiry
A:incidents
A:maintenance
A:metrics
A:monitor
A:notifications
A:reports
A:settings
A:status-page
A:ui/ux
A:user-management
Stale
ai-slop
blocked
blocked-upstream
bug
cannot-reproduce
dependencies
discussion
duplicate
feature-request
feature-request
good first issue
hacktoberfest
help
help wanted
house keeping
invalid
invalid-format
invalid-format
question
releaseblocker 🚨
security
spam
type:enhance-existing
type:new
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/uptime-kuma#3553
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lotigara on GitHub (Aug 19, 2024).
📑 I have found these related issues/pull requests
Related issues/pulls are only about monitoring Docker containers, while this issue is about monitoring Unix sockets on host system.
🏷️ Feature Request Type
New monitor
🔖 Feature description
It is about supporting Unix sockets on Unix(-like) systems, usually located in
/var/run/*.sock.✔️ Solution
I want to be able to select
Unix socketmonitor type when creating such and filesystem path where my socket is located.❓ Alternatives
No response
📝 Additional Context
The app to be monitored is Weblate. It's installed via YunoHost and configured to use Unix socket. As YunoHost overwrites config files on each update of app, I can't just re-configure Weblate to use TCP.
N.B.: Please do not suggest not using YunoHost nor Unix sockets or using
local_settings.py, because there are many apps that use Unix sockets.@CommanderStorm commented on GitHub (Aug 19, 2024):
What would you like to monitor specifically? (to prevent an XY-Problem)
@lotigara commented on GitHub (Aug 19, 2024):
Edited, see first post.
@cbdonohue commented on GitHub (Aug 19, 2024):
Could you do a proxy like
socat TCP-LISTEN:12345,reuseaddr,fork UNIX-CONNECT:/var/run/weblate.sockto convert between TCP and unix sockets?