mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* building ui * saving alertmanager urls * add actions and api call to get external ams * add list to add modal * add validation and edit/delete * work on merging results * merging results * get color for status heart * adding tests * tests added * rename * add pollin and status * fix list sync * fix polling * add info icon with actual tooltip * fix test * Accessibility things * fix strict error * delete public/dist files * Add API tests for invalid URL * start redo admin test * Fix for empty configuration and test * remove admin test * text updates after review * suppress appevent error * fix tests * update description Co-authored-by: gotjosh <josue@grafana.com> * fix text plus go lint * updates after pr review * Adding docs * Update docs/sources/alerting/unified-alerting/fundamentals/alertmanager.md Co-authored-by: gotjosh <josue@grafana.com> * Update docs/sources/alerting/unified-alerting/fundamentals/alertmanager.md Co-authored-by: gotjosh <josue@grafana.com> * Update docs/sources/alerting/unified-alerting/fundamentals/alertmanager.md Co-authored-by: gotjosh <josue@grafana.com> * Update docs/sources/alerting/unified-alerting/fundamentals/alertmanager.md Co-authored-by: gotjosh <josue@grafana.com> * Update docs/sources/alerting/unified-alerting/fundamentals/alertmanager.md Co-authored-by: gotjosh <josue@grafana.com> * Update docs/sources/alerting/unified-alerting/fundamentals/alertmanager.md Co-authored-by: gotjosh <josue@grafana.com> * Update docs/sources/alerting/unified-alerting/fundamentals/alertmanager.md Co-authored-by: gotjosh <josue@grafana.com> * prettier * updates after docs feedback Co-authored-by: gotjosh <josue.abreu@gmail.com> Co-authored-by: gotjosh <josue@grafana.com>
14 lines
530 B
TypeScript
14 lines
530 B
TypeScript
import React from 'react';
|
|
import { AlertingPageWrapper } from './components/AlertingPageWrapper';
|
|
import AlertmanagerConfig from './components/admin/AlertmanagerConfig';
|
|
import { ExternalAlertmanagers } from './components/admin/ExternalAlertmanagers';
|
|
|
|
export default function Admin(): JSX.Element {
|
|
return (
|
|
<AlertingPageWrapper pageId="alerting-admin">
|
|
<AlertmanagerConfig test-id="admin-alertmanagerconfig" />
|
|
<ExternalAlertmanagers test-id="admin-externalalertmanagers" />
|
|
</AlertingPageWrapper>
|
|
);
|
|
}
|