Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Service map backend links #107317

Merged
merged 20 commits into from
Aug 6, 2021
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions x-pack/plugins/apm/common/service_map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ export interface Connection {
destination: ConnectionNode;
}

export interface ServiceNodeStats {
avgMemoryUsage: number | null;
avgCpuUsage: number | null;
export interface NodeStats {
avgMemoryUsage?: number | null;
avgCpuUsage?: number | null;
transactionStats: {
avgTransactionDuration: number | null;
avgRequestsPerMinute: number | null;
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

116 changes: 0 additions & 116 deletions x-pack/plugins/apm/public/components/app/service_map/Popover/Info.tsx

This file was deleted.

Loading