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

[Stack Monitoring] Additional APM metrics #43998

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6df80e3
Add new APM metrics and modify existing metrics
cachedout Aug 26, 2019
f4d77f0
Reorder APM graphs
cachedout Aug 26, 2019
b944721
Consistent titles
cachedout Aug 26, 2019
8d0b091
Consistent scheme for lables, descriptions, and titles
cachedout Aug 26, 2019
2f73c97
Fix dups in internationalization strings
cachedout Aug 26, 2019
d79d0c5
Resolve field differences in APM test
cachedout Aug 26, 2019
3be0ca0
Various test and fixture updates
cachedout Aug 27, 2019
fc7b799
Correct naming in fixtures
cachedout Sep 23, 2019
204e553
Change forbidden field to unathorized, per review feedback
cachedout Sep 24, 2019
67228b6
Change default message per review comment
cachedout Sep 24, 2019
6addd47
Change title per review
cachedout Sep 24, 2019
c8d3de8
Review feedback
cachedout Sep 24, 2019
d13f9d1
Change message to review comment
cachedout Sep 24, 2019
7e6646c
Remove CORS mention per review
cachedout Sep 24, 2019
4a9075c
Set proper message
cachedout Sep 24, 2019
e269087
review comment
cachedout Sep 24, 2019
b7178a4
Review feedback
cachedout Sep 24, 2019
c67b509
Update snapshot
cachedout Sep 24, 2019
fa726c8
Correct duplicate description
cachedout Sep 24, 2019
a34efe4
Adjust fixture
cachedout Sep 25, 2019
2078244
Update instance fixture
cachedout Sep 26, 2019
cf9df91
Review feedback
cachedout Oct 1, 2019
a8020e6
Fix broken graphs
cachedout Oct 2, 2019
f0283b3
Update test fixtures
cachedout Oct 2, 2019
010d6df
Correct mistaken commit to kibana.yml
cachedout Oct 4, 2019
53d2116
Lint fixes
cachedout Jan 17, 2020
7e10a6b
Merge branch 'master' into apm_events
elasticmachine Jan 27, 2020
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,18 @@ import { FormattedMessage } from '@kbn/i18n/react';

export function ApmServerInstance({ summary, metrics, ...props }) {
const seriesToShow = [
metrics.apm_responses_valid,
metrics.apm_responses_errors,
metrics.apm_server_requests,
metrics.apm_server_responses,
metrics.apm_server_responses_errors,
metrics.apm_transformations,

metrics.apm_output_events_rate_success,
metrics.apm_output_events_rate_failure,

metrics.apm_requests,
metrics.apm_transformations,
metrics.apm_acm_requests,

metrics.apm_acm_responses,
metrics.apm_acm_responses_errors,

metrics.apm_cpu,
metrics.apm_memory,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,18 @@ import { FormattedMessage } from '@kbn/i18n/react';

export function ApmOverview({ stats, metrics, ...props }) {
const seriesToShow = [
metrics.apm_responses_valid,
metrics.apm_responses_errors,
metrics.apm_server_requests,
metrics.apm_server_responses,
metrics.apm_server_responses_errors,
metrics.apm_transformations,

metrics.apm_output_events_rate_success,
metrics.apm_output_events_rate_failure,

metrics.apm_requests,
metrics.apm_transformations,
metrics.apm_acm_requests,

metrics.apm_acm_responses,
metrics.apm_acm_responses_errors,

metrics.apm_cpu,
metrics.apm_memory,
Expand Down
Loading