feat: add OneUptime template#1034
Open
Siumauricio wants to merge 1 commit into
Open
Conversation
Adds OneUptime (open-source observability platform: uptime monitoring, status pages, incident management, on-call, logs/traces/metrics) as a template, following upstream's current single-app architecture (app + nginx ingress + postgres + redis + clickhouse + probe). Closes #514 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds OneUptime (https://github.com/OneUptime/oneuptime) as a template — an open-source observability platform: uptime monitoring, status pages, incident management, on-call rotations, and logs/traces/metrics.
Closes #514
Notes on the architecture
OneUptime consolidated its former ~15 microservices into a single
appimage, so the stack is now 6 services, faithful to upstream's currentdocker-compose.yml(pinned to11.5.6):oneuptimeoneuptime/appingressoneuptime/nginx/identity→/api/identity, etc.) and custom-domain cert plumbingprobeoneuptime/probeREGISTER_PROBE_KEYthroughhttp://ingress:7849(hostingressis part of upstream nginx'sserver_name)postgres(15),redis(7.0.12),clickhouse(25.7)Details worth calling out:
ReplicatedMergeTree+Distributed. They're provided via[[config.mounts]].SERVER_NAMES_HASH_BUCKET_SIZE=128on the ingress: generated Dokploy domains (e.g. long*.sslip.iohosts) overflow nginx's default bucket size of 64 and put the ingress in a restart loop.homeservice is not deployed — upstream's nginx only routes to it whenBILLING_ENABLED=true.HTTP_PROTOCOLdefaults tohttp; users should flip it tohttpsonce TLS is enabled on the domain.How it was tested
Local (Docker, clean volumes) and deployed on a Dokploy instance via template import:
/,/accounts,/dashboard,/status→ 200 through the generated domain./identity/*(first user becomes master admin)./probe-ingest/monitor/list(200s in ingress access log).🤖 Generated with Claude Code