-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/85517
- Loading branch information
Showing
193 changed files
with
3,443 additions
and
40,254 deletions.
There are no files selected for viewing
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
34 changes: 0 additions & 34 deletions
34
...k/plugins/apm/public/components/app/service_inventory/ServiceList/__fixtures__/props.json
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
...public/components/app/service_inventory/ServiceList/__fixtures__/service_api_mock_data.ts
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
import { APIReturnType } from '../../../../../services/rest/createCallApmApi'; | ||
|
||
type ServiceListAPIResponse = APIReturnType<'GET /api/apm/services'>; | ||
|
||
export const items: ServiceListAPIResponse['items'] = [ | ||
{ | ||
serviceName: 'opbeans-node', | ||
transactionType: 'request', | ||
agentName: 'nodejs', | ||
transactionsPerMinute: { value: 0, timeseries: [] }, | ||
transactionErrorRate: { value: 46.06666666666667, timeseries: [] }, | ||
avgResponseTime: { value: null, timeseries: [] }, | ||
environments: ['test'], | ||
}, | ||
{ | ||
serviceName: 'opbeans-python', | ||
transactionType: 'page-load', | ||
agentName: 'python', | ||
transactionsPerMinute: { value: 86.93333333333334, timeseries: [] }, | ||
transactionErrorRate: { value: 12.6, timeseries: [] }, | ||
avgResponseTime: { value: 91535.42944785276, timeseries: [] }, | ||
environments: [], | ||
}, | ||
]; |
Oops, something went wrong.