Skip to content

Commit

Permalink
Fix broken graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
cachedout committed Jan 16, 2020
1 parent cf9df91 commit a8020e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { FormattedMessage } from '@kbn/i18n/react';
export function ApmServerInstance({ summary, metrics, ...props }) {
const seriesToShow = [
metrics.apm_server_requests,
metrics.apm_server_responses_valid,
metrics.apm_server_responses,
metrics.apm_server_responses_errors,
metrics.apm_transformations,

Expand All @@ -31,7 +31,7 @@ export function ApmServerInstance({ summary, metrics, ...props }) {

metrics.apm_acm_requests,

metrics.apm_acm_responses_valid,
metrics.apm_acm_responses,
metrics.apm_acm_responses_errors,

metrics.apm_cpu,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const metricSet = [
'apm_server_responses_valid_ok',
'apm_server_responses_valid_accepted'
],
name: 'apm_server_responses_valid'
name: 'apm_server_responses'
},
{
keys: [
Expand Down

0 comments on commit a8020e6

Please sign in to comment.