@page "/admin/system/diagnose" @using MoonCore.Attributes @using MoonCore.Helpers @attribute [RequirePermission("admin.system.diagnose")] @inject HttpApiClient ApiClient @inject DownloadService DownloadService
Diagnose

If you're experiencing issues or need help via our Discord, you're in the right place here! By pressing the button below, Moonlight will run all available diagnostic checks and package the results into a downloadable zip file. The report includes useful information about your system, plugins, and environment, making it easier to identify problems or share with support.

Generate diagnose
@code { private async Task GenerateFrontend(WButton _) { var stream = await ApiClient.GetStream("api/admin/system/diagnose"); await DownloadService.DownloadStream("diagnose.zip", stream); } } @code { }