-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove search until ValkeySearch arrives
- Loading branch information
Showing
2 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react'; | ||
import { AppRootProps } from '@grafana/data'; | ||
import { css } from '@emotion/css'; | ||
|
||
export function App(props: AppRootProps) { | ||
return ( | ||
<div style={{ paddingTop: '2em' }}> | ||
<h2>Performance Co-Pilot App</h2> | ||
This app integrates metrics from Performance Co-Pilot. | ||
<br /> | ||
<br /> | ||
It includes the following data sources: | ||
<ul | ||
className={css` | ||
margin-left: 2em; | ||
`} | ||
> | ||
<li> | ||
<strong>PCP Valkey</strong> for fast, scalable time series aggregation across multiple hosts | ||
</li> | ||
<li> | ||
<strong>PCP Vector</strong> for live, on-host metrics analysis, with container support | ||
</li> | ||
<li> | ||
<strong>PCP bpftrace</strong> for system introspection using bpftrace scripts | ||
</li> | ||
</ul> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import { AppPlugin } from '@grafana/data'; | ||
import { AppConfig } from './components/appconfig/config'; | ||
import { AppSettings } from './components/appconfig/types'; | ||
import { Search } from './components/search/Search'; | ||
import { App } from './components/app/App'; | ||
|
||
export const plugin = new AppPlugin<AppSettings>() | ||
.addConfigPage({ id: 'config', title: 'Config', icon: 'cog', body: AppConfig }) | ||
.setRootPage(Search); | ||
.setRootPage(App); |