Current implementation status
The product has a Diagnostics page, legacy JSON export, full support package zip export, and a standalone internal support package viewer application. The implemented diagnostics endpoints are:admin:read permission.
Export diagnostics from Admin UI
- Open Diagnostics.
- Review health checks and system cards.
- Select Export JSON.
- Attach the downloaded
diagnostics-<timestamp>.jsonfile to the support ticket.
/api/admin/diagnostics/export.
Generate a support package from Admin UI
- Open Diagnostics.
- Select Support Package.
- Select the affected clusters. If no cluster is selected, the server collects all clusters.
- Add a short issue summary with what failed, when it started, and visible symptoms.
- Optionally set a contact email, log tail line count, and whether to include pod logs and metrics.
- Select Download package.
- Send the downloaded
falkordb-support-<timestamp>.zipfile to the support team.
/api/admin/diagnostics/support-package and downloads a zip archive.
Generate a support package from API
Use an authenticated Admin Server session or token appropriate for the environment.clusters or send an empty array to collect all clusters.
What the JSON export contains
The current diagnostics export includes:- Export timestamp.
- Server uptime, package version, Node.js version, platform, architecture, CPU count, and memory summary.
- Health status for Kubernetes API access, KubeBlocks/version catalog access, and audit database access.
- Resource summary with total cluster count.
- Recent audit activity count.
- Recent errors only if the audit service provides them.
What the support package contains
The support package is a zip archive with a redactedmanifest.json, issue context, and navigable folders. Current collectors include:
issue.json: user-provided issue description and optional contact email.manifest.json: schema version, generation metadata, selected scope, content list, warnings, and redaction strategy.system/: runtime, settings, namespaces, storage classes, and FalkorDB version catalog.kubernetes/: nodes, pods, persistent volumes, and persistent volume claims in selected namespaces.platform/kubeblocks/crds.json: KubeBlocks CRD definitions installed in the cluster.platform/kubeblocks/resources/: known KubeBlocks custom resources, split by cluster-scoped resources and namespace-scoped resources for selected cluster namespaces and platform namespaces.platform/kubeblocks/logs/: KubeBlocks controller and data protection controller logs from platform namespaces when log collection is enabled.backups/: backup repository metadata.audit/: recent audit entries.clusters/<namespace>__<name>/: cluster summary, KubeBlocks cluster YAML, pods, ops requests, Redis config, backup resources, restore resources, metrics, and pod logs.
[REDACTED]. Package generation records partial collection failures in manifest.json warnings instead of failing the entire export.
Inspect a support package
The package viewer is a separate internal application inpackages/support-viewer. It does not authenticate to the Admin Server and does not upload the package anywhere; it only reads a local zip in the browser.
For local development:
/support-viewer.html, select Load package, and choose a falkordb-support-*.zip file. The viewer organizes the archive into Overview, Clusters, KubeBlocks, Logs, Kubernetes, System, Backups, Audit, and All Files sections. JSON entries are formatted for inspection, while log entries show line, warning, and error counts beside the selected log tail.
Health status meaning
healthy: all checks passed.degraded: at least one check failed.unhealthy: all checks failed, or the health endpoint hit an unexpected error.