-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[APM] Service overview: Dependencies table #83416
Merged
dgieselaar
merged 22 commits into
elastic:master
from
dgieselaar:service-overview-dependencies-table
Dec 10, 2020
Merged
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
44a2203
[APM] Service overview dependencies table
dgieselaar 1ec8bd7
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 788f1fc
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 54ddee2
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar a4917e8
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 9ca351d
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 74d5e19
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 4e0f1eb
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar e35bb80
Use top_hits instead of collapse
dgieselaar 6ccb4cf
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar d304420
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 12d9c7d
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 3de214b
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar c412c91
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar c5eed84
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar dab72cd
Make sure result of mergeFn overrides existing item
dgieselaar 8464326
Review feedback
dgieselaar 981c3ff
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar a6687a0
Review feedback
dgieselaar 70b6b72
API tests
dgieselaar e24e3f3
Merge branch 'master' of github.com:elastic/kibana into service-overv…
dgieselaar 981635a
Merge branch 'master' into service-overview-dependencies-table
kibanamachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
x-pack/plugins/apm/common/__snapshots__/elasticsearch_fieldnames.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
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 | ||||
---|---|---|---|---|---|---|
|
@@ -18,12 +18,11 @@ import { isRumAgentName } from '../../../../common/agent_name'; | |||||
import { ChartPointerEventContextProvider } from '../../../context/chart_pointer_event/chart_pointer_event_context'; | ||||||
import { TransactionBreakdownChart } from '../../shared/charts/transaction_breakdown_chart'; | ||||||
import { TransactionErrorRateChart } from '../../shared/charts/transaction_error_rate_chart'; | ||||||
import { ServiceMapLink } from '../../shared/Links/apm/ServiceMapLink'; | ||||||
import { SearchBar } from '../../shared/search_bar'; | ||||||
import { ServiceOverviewErrorsTable } from './service_overview_errors_table'; | ||||||
import { ServiceOverviewDependenciesTable } from './service_overview_dependencies_table'; | ||||||
import { ServiceOverviewThroughputChart } from './service_overview_throughput_chart'; | ||||||
import { ServiceOverviewTransactionsTable } from './service_overview_transactions_table'; | ||||||
import { TableLinkFlexItem } from './table_link_flex_item'; | ||||||
|
||||||
/** | ||||||
* The height a chart should be if it's next to a table with 5 rows and a title. | ||||||
|
@@ -98,30 +97,7 @@ export function ServiceOverview({ | |||||
</EuiFlexItem> | ||||||
<EuiFlexItem grow={6}> | ||||||
<EuiPanel> | ||||||
<EuiFlexGroup> | ||||||
<EuiFlexItem> | ||||||
<EuiTitle size="xs"> | ||||||
<h2> | ||||||
{i18n.translate( | ||||||
'xpack.apm.serviceOverview.dependenciesTableTitle', | ||||||
{ | ||||||
defaultMessage: 'Dependencies', | ||||||
} | ||||||
)} | ||||||
</h2> | ||||||
</EuiTitle> | ||||||
</EuiFlexItem> | ||||||
<TableLinkFlexItem> | ||||||
<ServiceMapLink serviceName={serviceName}> | ||||||
{i18n.translate( | ||||||
'xpack.apm.serviceOverview.dependenciesTableLinkText', | ||||||
{ | ||||||
defaultMessage: 'View service map', | ||||||
} | ||||||
)} | ||||||
</ServiceMapLink> | ||||||
</TableLinkFlexItem> | ||||||
</EuiFlexGroup> | ||||||
<ServiceOverviewDependenciesTable serviceName={serviceName} /> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we could drop the
Suggested change
|
||||||
</EuiPanel> | ||||||
</EuiFlexItem> | ||||||
</EuiFlexGroup> | ||||||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great improvements in this file! 😉