Conversation
…y logic for pipelines
…ing-and-enrichment-pipelines Add log pipelines feature with CRUD, API, and frontend support
- HTTP/TCP/heartbeat monitor types with configurable intervals - BullMQ-free polling: setInterval(30s) in worker.ts - TimescaleDB hypertable for monitor_results + continuous aggregate for uptime - State machine: consecutive failure/success tracking, incident auto-open/resolve - Atomic incident creation guard (WHERE incident_id IS NULL) to prevent duplicates - Project slugs: auto-generated on creation, unique per org - Public status page at /status/[projectSlug] (unauthenticated) - Heartbeat endpoint with both API key and session auth - Security: org membership check on heartbeat session path - ReDoS mitigation: body/pattern length limits in regex assertion - Monitor IDs omitted from public API to prevent UUID enumeration
- fix slug collision in public status page (filter by status_page_public) - wrap createMonitor in transaction (monitor + status inserts) - wire HttpConfig through DB/API/checker (was dead code) - add per-monitor severity (was hardcoded to high) - add status_page_public to projects with toggle endpoint - fix $derived.by in detail page, add refresh + copy buttons - fix default failureThreshold (3 -> 2), add client-side validation - type mapMonitor properly, optimize org membership check - eliminate redundant DB read in processCheckResult - add monitoring table cleanup to test setup - add target validation on monitor update
decouple monitoring from SIEM - monitors no longer create security incidents. new 'monitoring' event type with its own queue job, email template, webhook payload, and channel routes.
…ashboards-with-configurable-panels Feature/151 feature custom dashboards with configurable panels
# Conflicts: # CHANGELOG.md # README.md # package.json # packages/backend/package.json # packages/backend/src/utils/internal-logger.ts # packages/frontend/package.json # packages/frontend/src/hooks.client.ts # packages/frontend/src/hooks.server.ts # packages/frontend/src/lib/components/Footer.svelte # packages/reservoir/package.json # packages/shared/package.json
- add status-incidents service and routes tests (38 tests) - add geoip step unit tests (6 tests) - extend monitoring service with down/recovery path tests - extend monitoring routes with plastic badge and results limit tests - extend maintenances routes with 403 access control tests - extend custom-dashboards routes with panelIds filter and 400 tests - extend log-pipeline routes with PUT validation test - extend pipeline-executor with apache/syslog/logfmt/geoip tests - fix incident-notification test: title and message were swapped
Implement log pipelines and service health monitoring features
…toring, log parsing pipelines, and custom dashboards
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
…for correct organization store hydration
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.
This pull request introduces several major new features and improvements, as well as numerous bug fixes and optimizations across the project. The most significant updates are the addition of service health monitoring and public status pages, a new log parsing and enrichment pipeline system, and highly configurable custom dashboards. The
.dockerignorefile has also been improved to better support multi-package repositories. Numerous smaller fixes and enhancements are included throughout the codebase and user interface.Major Feature Additions:
Infrastructure & Developer Experience:
.dockerignorefor Monorepos:.dockerignoreto explicitly exclude all nestednode_modules,dist,build, and.svelte-kitdirectories, preventing Docker build issues in pnpm-style workspaces and multi-package repositories.Bug Fixes & Optimizations:
These changes collectively deliver major new observability, reliability, and customization capabilities, while also addressing a wide range of bugs and developer workflow improvements.
Closes: #151, Closes: #152, Closes: #153