{"id":20605112,"url":"https://github.com/arnab-developer/arc.httphealthcheckdashboard","last_synced_at":"2026-05-02T23:31:38.000Z","repository":{"id":40356185,"uuid":"375701025","full_name":"Arnab-Developer/Arc.HttpHealthCheckDashboard","owner":"Arnab-Developer","description":"HTTP health check dashboard library","archived":false,"fork":false,"pushed_at":"2022-05-13T05:41:12.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-26T19:21:09.866Z","etag":null,"topics":["csharp","dotnet","nuget"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Arnab-Developer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-10T13:07:52.000Z","updated_at":"2022-02-20T02:44:54.000Z","dependencies_parsed_at":"2022-08-09T18:01:51.500Z","dependency_job_id":null,"html_url":"https://github.com/Arnab-Developer/Arc.HttpHealthCheckDashboard","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Arnab-Developer%2FArc.HttpHealthCheckDashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Arnab-Developer%2FArc.HttpHealthCheckDashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Arnab-Developer%2FArc.HttpHealthCheckDashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Arnab-Developer%2FArc.HttpHealthCheckDashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Arnab-Developer","download_url":"https://codeload.github.com/Arnab-Developer/Arc.HttpHealthCheckDashboard/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242250932,"owners_count":20096895,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","nuget"],"created_at":"2024-11-16T09:26:33.044Z","updated_at":"2025-10-26T18:40:05.905Z","avatar_url":"https://github.com/Arnab-Developer.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Http health check dashboard\n\nThis is a library for http health check dashboard. It has been hosted in \n[NuGet](https://www.nuget.org/packages/Arc.HttpHealthCheckDashboard/). \nUse below command to install this in your .NET application.\n\n```\ndotnet add package Arc.HttpHealthCheckDashboard\n```\n\nCreate separate classes for each separate http urls to be checked. Create your class which \ninherits `BaseHealthCheck` and it should work with default naming convention. The default \nnaming convention is `[ClassName]HealthCheck`.\n\n```csharp\npublic class [ClassName]HealthCheck : BaseHealthCheck\n{\n    public [ClassName]HealthCheck(IEnumerable\u003cApiDetail\u003e urlDetails, \n        ICommonHealthCheck commonHealthCheck) : base(urlDetails, commonHealthCheck)\n    {\n    }\n}\n```\n\nTo use a different naming convention override the `GetMatch()` method. In below example it is\nusing a different naming convention which is `[ClassName]HC`.\n\n```csharp\npublic class GmailHC : BaseHealthCheck\n{\n    public GmailHC(IEnumerable\u003cApiDetail\u003e urlDetails, ICommonHealthCheck commonHealthCheck)\n        : base(urlDetails, commonHealthCheck)\n    {\n    }\n\n    protected override Predicate\u003cApiDetail\u003e GetMatch()\n    {\n        int indexOfHealthCheck = GetType().Name.IndexOf(\"HC\");\n        string apiNameToTest = GetType().Name.Substring(0, indexOfHealthCheck);\n        return new Predicate\u003cApiDetail\u003e(u =\u003e u.Name == apiNameToTest \u0026\u0026 u.IsEnable);\n    }\n}\n```\n\nThere is a \n[dashboard app](https://github.com/Arnab-Developer/HttpHealthCheckDashboard) \nwhich uses the library to check health of some http endpoints. This is to show \nhow you can use this library in your app.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnab-developer%2Farc.httphealthcheckdashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farnab-developer%2Farc.httphealthcheckdashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnab-developer%2Farc.httphealthcheckdashboard/lists"}