OpenTelemetry JavaScript Client
Go to file
Olivier Albertini 8567061992 feat(plugin-https): patch https requests (#379)
* feat(plugin-https): patch https requests

closes #375
add tests

Signed-off-by: Olivier Albertini <olivier.albertini@montreal.ca>

* docs(plugin-https): add jaeger image

Signed-off-by: Olivier Albertini <olivier.albertini@montreal.ca>

* fix: add mayurkale22 recommendations

Signed-off-by: Olivier Albertini <olivier.albertini@montreal.ca>

* fix: add markwolff recommendations

Signed-off-by: Olivier Albertini <olivier.albertini@montreal.ca>

* fix: file name utils

* fix: add danielkhan and bg451 recommendations

Signed-off-by: Olivier Albertini <olivier.albertini@montreal.ca>
2019-10-03 14:43:09 -07:00
.circleci ci: add docs tests (#188) 2019-08-13 08:16:01 -07:00
.github chore: tag more reviewers (#230) 2019-08-30 08:17:07 -07:00
doc chore: add development guide (#358) 2019-09-27 20:54:01 +02:00
examples feat(plugin-https): patch https requests (#379) 2019-10-03 14:43:09 -07:00
packages feat(plugin-https): patch https requests (#379) 2019-10-03 14:43:09 -07:00
.commitlintrc.yml chore: add commitlint and husky (#128) 2019-07-25 09:36:15 -07:00
.editorconfig Add EditorConfig file (#24) 2019-06-17 10:18:40 -07:00
.gitignore fix: / update gitignore (#170) 2019-08-07 09:03:50 -07:00
.npmignore Initial skeleton (#2) 2019-06-10 10:23:16 -07:00
.nycrc refactor: unit tests (#198) 2019-08-13 23:06:49 -07:00
CONTRIBUTING.md chore: add commitlint and husky (#128) 2019-07-25 09:36:15 -07:00
LICENSE Initial commit 2019-05-09 22:01:44 -04:00
README.md chore: rename opentelemetry-basic-tracer -> opentelemetry-tracer-basic (#380) 2019-10-01 10:27:11 -07:00
codecov.yml 🤖Add codecov (#64) 2019-07-02 09:21:09 -07:00
lerna.json Bump version to 0.1.0 (#388) 2019-10-03 09:41:31 -07:00
package.json Bump version to 0.1.0 (#388) 2019-10-03 09:41:31 -07:00
tslint.base.js chore: set explicit naming convention (#262) 2019-09-17 09:56:13 -07:00

README.md

OpenTelemetry - distributed tracing and stats collection framework

Gitter chat CircleCI Coverage Status Apache License

About this project

This is the JavaScript version of OpenTelemetry, a framework for collecting traces, metrics and logs from applications.

This project is currently in Alpha stage. Its APIs can change at any time and it is not intended to be used in production scenarios!

Quick start

To get started, see @opentelemetry/tracer-basic for an SDK that supports creating traces through manual instrumentation or @opentelemetry/node-sdk which provides auto-instrumentation for Node.js applications.

Release Schedule

OpenTelemetry JS is under active development. This release isn't guaranteed to conform to a specific version of the specification, and future releases will not attempt to maintain backwards compatibility with the alpha release.

Component Version Target Date
Tracing API Alpha September 30 2019
Tracing SDK Alpha September 30 2019
Metrics API Alpha tbd
Metrics SDK Alpha tbd
Jaeger Trace Exporter Alpha September 30 2019
Zipkin Trace Exporter Alpha September 30 2019
Prometheus Metrics Exporter Alpha tbd
OpenTracing Bridge Alpha September 30 2019
OpenCensus Bridge Alpha tbd

Contributing

We'd love your help!. Use tags up-for-grabs and good first issue to get started with the project. Follow CONTRIBUTING guide to report issues or submit a proposal.

We have a weekly SIG meeting! See the community page for meeting details and notes.

Packages

API

Package Description
@opentelemetry/types This package provides TypeScript interfaces and enums for the OpenTelemetry core trace and metrics model. It is intended for use both on the server and in the browser.
@opentelemetry/core This package provides default and no-op implementations of the OpenTelemetry types for trace and metrics. It's intended for use both on the server and in the browser.

Implementation / SDKs

Package Description
@opentelemetry/tracer-basic This module provides a full control over instrumentation and span creation. It doesn't load async_hooks or any instrumentation plugin by default. It is intended for use both on the server and in the browser.
@opentelemetry/node-sdk This module provides automatic tracing for Node.js applications. It is intended for use on the server only.

Exporters

OpenTelemetry is vendor-agnostic and can upload data to any backend with various exporter implementations. Even though, OpenTelemetry provides support for many backends, vendors/users can also implement their own exporters for proprietary and unofficially supported backends. Currently, OpenTelemetry supports:

Plugins

OpenTelemetry can collect tracing data automatically using plugins. Vendors/Users can also create and use their own. Currently, OpenTelemetry supports automatic tracing for:

To request automatic tracing support for a module not on this list, please file an issue. Alternatively, you can write a plugin yourself.

Shims

Package Description
@opentelemetry/shim-opentracing OpenTracing shim allows existing OpenTracing instrumentation to report to OpenTelemetry

License

Apache 2.0 - See LICENSE for more information.