* [bazel] avoid a little boilerplate for @types packages
* [bazel/ts] stop building sourcemaps since they're ignored
(cherry picked from commit
|
||
---|---|---|
.. | ||
src | ||
BUILD.bazel | ||
jest.config.js | ||
package.json | ||
README.md | ||
tsconfig.json |
@elastic/apm-synthtrace
@elastic/apm-synthtrace
is an experimental tool to generate synthetic APM data. It is intended to be used for development and testing of the Elastic APM app in Kibana.
At a high-level, the module works by modeling APM events/metricsets with a fluent API. The models can then be serialized and converted to Elasticsearch documents. In the future we might support APM Server as an output as well.
Usage
This section assumes that you've installed Kibana's dependencies by running yarn kbn bootstrap
in the repository's root folder.
This library can currently be used in two ways:
- Imported as a Node.js module, for instance to be used in Kibana's functional test suite.
- With a command line interface, to index data based on a specified scenario.
Using the Node.js module
Concepts
Service
: a logical grouping for a monitored service. AService
object contains fields likeservice.name
,service.environment
andagent.name
.Instance
: a single instance of a monitored service. E.g., the workload for a monitored service might be spread across multiple containers. AnInstance
object contains fields likeservice.node.name
andcontainer.id
.Timerange
: an object that will return an array of timestamps based on an interval and a rate. These timestamps can be used to generate events/metricsets.Transaction
,Span
,APMError
andMetricset
: events/metricsets that occur on an instance. For more background, see the explanation of the APM data model
Example
import { service, timerange, toElasticsearchOutput } from '@elastic/apm-synthtrace';
const instance = service('synth-go', 'production', 'go').instance('instance-a');
const from = new Date('2021-01-01T12:00:00.000Z').getTime();
const to = new Date('2021-01-01T12:00:00.000Z').getTime();
const traceEvents = timerange(from, to)
.interval('1m')
.rate(10)
.flatMap((timestamp) =>
instance
.transaction('GET /api/product/list')
.timestamp(timestamp)
.duration(1000)
.success()
.children(
instance
.span('GET apm-*/_search', 'db', 'elasticsearch')
.timestamp(timestamp + 50)
.duration(900)
.destination('elasticsearch')
.success()
)
.serialize()
);
const metricsets = timerange(from, to)
.interval('30s')
.rate(1)
.flatMap((timestamp) =>
instance
.appMetrics({
'system.memory.actual.free': 800,
'system.memory.total': 1000,
'system.cpu.total.norm.pct': 0.6,
'system.process.cpu.total.norm.pct': 0.7,
})
.timestamp(timestamp)
.serialize()
);
const esEvents = toElasticsearchOutput(traceEvents.concat(metricsets));
Generating metricsets
@elastic/apm-synthtrace
can also automatically generate transaction metrics, span destination metrics and transaction breakdown metrics based on the generated trace events. If we expand on the previous example:
import {
getTransactionMetrics,
getSpanDestinationMetrics,
getBreakdownMetrics,
} from '@elastic/apm-synthtrace';
const esEvents = toElasticsearchOutput([
...traceEvents,
...getTransactionMetrics(traceEvents),
...getSpanDestinationMetrics(traceEvents),
...getBreakdownMetrics(traceEvents),
]);
CLI
Via the CLI, you can upload scenarios, either using a fixed time range or continuously generating data. Some examples are available in in src/scripts/examples
. Here's an example for live data:
$ node packages/elastic-apm-synthtrace/src/scripts/run packages/elastic-apm-generator/src/examples/01_simple_trace.ts --target=http://admin:changeme@localhost:9200 --live
For a fixed time window:
$ node packages/elastic-apm-synthtrace/src/scripts/run packages/elastic-apm-generator/src/examples/01_simple_trace.ts --target=http://admin:changeme@localhost:9200 --from=now-24h --to=now
The script will try to automatically find bootstrapped APM indices. If these indices do not exist, the script will exit with an error. It will not bootstrap the indices itself.
The following options are supported:
Option | Description | Default |
---|---|---|
--target |
Elasticsearch target, including username/password. | Required |
--from |
The start of the time window. | now - 15m |
--to |
The end of the time window. | now |
--live |
Continously ingest data | false |
--clean |
Clean APM indices before indexing new data. | false |
--workers |
Amount of Node.js worker threads | 5 |
--bucketSize |
Size of bucket for which to generate data. | 15m |
--interval |
The interval at which to index data. | 10s |
--clientWorkers |
Number of simultaneously connected ES clients | 5 |
--batchSize |
Number of documents per bulk index request | 1000 |
--logLevel |
Log level. | info |