mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 12:05:41 +01:00
add host metric
This commit is contained in:
parent
05f70c26b3
commit
04ea0bc68d
1 changed files with 4 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ import WorldMap from 'components/metrics/WorldMap';
|
|||
import CountriesTable from 'components/metrics/CountriesTable';
|
||||
import EventsTable from 'components/metrics/EventsTable';
|
||||
import EventsChart from 'components/metrics/EventsChart';
|
||||
import HostsTable from 'components/metrics/HostsTable';
|
||||
|
||||
export default function WebsiteTableView({ websiteId }: { websiteId: string }) {
|
||||
const [countryData, setCountryData] = useState();
|
||||
|
|
@ -36,6 +37,9 @@ export default function WebsiteTableView({ websiteId }: { websiteId: string }) {
|
|||
<EventsTable {...tableProps} />
|
||||
<EventsChart websiteId={websiteId} />
|
||||
</GridRow>
|
||||
<GridRow columns="three">
|
||||
<HostsTable {...tableProps} />
|
||||
</GridRow>
|
||||
</Grid>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue