import { useAsync } from 'react-use'; import { getBackendSrv } from '@grafana/runtime'; import { Alert } from '@grafana/ui'; import { Page } from 'app/core/components/Page/Page'; import { Trans } from 'app/core/internationalization'; import { AdminSettingsTable } from './AdminSettingsTable'; export type Settings = { [key: string]: { [key: string]: string } }; function AdminSettings() { const { loading, value: settings } = useAsync(() => getBackendSrv().get('/api/admin/settings'), []); return ( These system settings are defined in grafana.ini or custom.ini (or overridden in ENV variables). To change these you currently need to restart Grafana. {loading && } {settings && } ); } export default AdminSettings;