forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
156 additions
and
1 deletion.
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
93 changes: 93 additions & 0 deletions
93
packages/kbn-apm-synthtrace/src/scenarios/distributed_trace.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,93 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { apm, timerange } from '../..'; | ||
import { ApmFields } from '../lib/apm/apm_fields'; | ||
import { Scenario } from '../cli/scenario'; | ||
|
||
import { RunOptions } from '../cli/utils/parse_run_cli_flags'; | ||
import { getSynthtraceEnvironment } from '../lib/utils/get_synthtrace_environment'; | ||
import { httpExitSpan } from '../lib/apm/span'; | ||
|
||
const ENVIRONMENT = getSynthtraceEnvironment(__filename); | ||
|
||
const scenario: Scenario<ApmFields> = async (runOptions: RunOptions) => { | ||
return { | ||
generate: ({ from, to }) => { | ||
const range = timerange(from, to); | ||
const transactionName = '240rpm/75% 1000ms'; | ||
const successfulTimestamps = range.interval('1s').rate(3); | ||
|
||
const opbeansRum = apm.service('opbeans-rum', ENVIRONMENT, 'rum-js').instance('my-instance'); | ||
const opbeansNode = apm | ||
.service('opbeans-node', ENVIRONMENT, 'nodejs') | ||
.instance('my-instance'); | ||
const opbeansGo = apm.service('opbeans-go', ENVIRONMENT, 'go').instance('my-instance'); | ||
|
||
const traces = successfulTimestamps.generator((timestamp) => { | ||
// opbeans-rum | ||
return opbeansRum | ||
.transaction(transactionName) | ||
.duration(400) | ||
.timestamp(timestamp) | ||
.children( | ||
// opbeans-rum -> opbeans-node | ||
opbeansRum | ||
.span( | ||
...httpExitSpan({ | ||
spanName: 'GET /api/products/top', | ||
destinationUrl: 'http://opbeans-node:3000', | ||
}) | ||
) | ||
.duration(300) | ||
.timestamp(timestamp) | ||
|
||
.children( | ||
// opbeans-node | ||
opbeansNode | ||
.transaction('Initial transaction in opbeans-node') | ||
.duration(300) | ||
.timestamp(timestamp) | ||
.children( | ||
opbeansNode | ||
// opbeans-node -> opbeans-go | ||
.span( | ||
...httpExitSpan({ | ||
spanName: 'GET opbeans-go:3000', | ||
destinationUrl: 'http://opbeans-go:3000', | ||
}) | ||
) | ||
.timestamp(timestamp) | ||
.duration(400) | ||
|
||
.children( | ||
// opbeans-go | ||
opbeansGo | ||
|
||
.transaction('Initial transaction in opbeans-go') | ||
.timestamp(timestamp) | ||
.duration(200) | ||
.children( | ||
opbeansGo | ||
.span('custom_operation', 'custom') | ||
.timestamp(timestamp) | ||
.duration(100) | ||
.success() | ||
) | ||
) | ||
) | ||
) | ||
); | ||
}); | ||
|
||
return traces; | ||
}, | ||
}; | ||
}; | ||
|
||
export default scenario; |
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