The Open Distro for Elasticsearch Trace Analytics plugin provides instant on dashboards in Kibana for users to quickly analyze their logs. The plugin uses aggregated results from two indices, otel-v1-apm-span-*
and otel-v1-apm-service-map*
created by the otel-trace-raw-processor and service-map-processor, and renders three main views:
-
Dashboard: an overview of the trace groups and two charts: error rate and throughput.
-
Traces: a table of top-level traces with unique trace id's, where users can click on any trace to see its end-to-end performance metrics, service performance metrics, and a span latency metrics in a Gantt chart.
-
Services: a table of the services and a service map, where users can click on a service in the table to see its performance metrics and related services.
Additionally the fields can be sorted and filtered.
Please see our technical documentation to learn more about its features.
-
Download Elasticsearch for the version that matches the Kibana version specified in package.json.
-
Download the Kibana source code for the version specified in package.json you want to set up.
See the Kibana contributing guide for more instructions on setting up your development environment.
-
Change your node version to the version specified in
.node-version
inside the Kibana root directory. -
cd into
plugins
directory in the Kibana source code directory. -
Check out this package from version control into the
plugins
directory. -
Run
yarn kbn bootstrap
insidekibana/plugins/trace-analytics
.
Ultimately, your directory structure should look like this:
.
├── kibana
│ └── plugins
│ └── trace-analytics
To build the plugin's distributable zip simply run yarn build
.
Example output: ./build/opendistroTraceAnalytics-*.zip
-
yarn start
Starts Kibana and includes this plugin. Kibana will be available on
localhost:5601
.
We welcome you to get involved in development, documentation, testing the kibana reports plugin. See our CONTRIBUTING.md and join in.
Since this is a Kibana plugin, it can be useful to review the Kibana contributing guide alongside the documentation around Kibana plugins and plugin development.
Please file an issue to report any bugs you may find, enhancements you may need or questions you may have here.
This code is licensed under the Apache 2.0 License.
Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.