mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
* Add LastScrapeDuration to targets endpoint Signed-off-by: Dustin Hooten <dhooten@splunk.com> * Add Scrape job name to targets endpoint Signed-off-by: Dustin Hooten <dhooten@splunk.com> * Implement the /targets page in react Signed-off-by: Dustin Hooten <dhooten@splunk.com> * Add state query param to targets endpoint Signed-off-by: Dustin Hooten <dhooten@splunk.com> * Use state filter in api call Signed-off-by: Dustin Hooten <dhooten@splunk.com> * api feedback Signed-off-by: Dustin Hooten <dhooten@splunk.com> * pr feedback frontend Signed-off-by: Dustin Hooten <dhooten@splunk.com> * Implement and use localstorage hook Signed-off-by: Dustin Hooten <dhooten@splunk.com> * PR feedback Signed-off-by: Dustin Hooten <dhooten@splunk.com>
11 lines
344 B
TypeScript
11 lines
344 B
TypeScript
import Alerts from './Alerts';
|
|
import Config from './Config';
|
|
import Flags from './Flags';
|
|
import Rules from './Rules';
|
|
import Services from './Services';
|
|
import Status from './Status';
|
|
import Targets from './targets/Targets';
|
|
import PanelList from './PanelList';
|
|
|
|
export { Alerts, Config, Flags, Rules, Services, Status, Targets, PanelList };
|