@opencensus/web-types
Advanced tools
Changelog
0.0.7 - 2019-09-09
@opencensus/web-propagation-b3
package
and the ability to pass it in via startTracing({ propagation: Propagation })
.
Thanks @edvinasbartkus!Changelog
0.0.6 - 2019-08-26
Changelog
0.0.5 - 2019-08-09
Changelog
0.0.4 - 2019-08-06
Rename @opencensus/web-all
to @opencensus/web-scripts
so now this package
is only in charge of bundling OC Web to allow importing it as <script> tag.
To use OC Web as an npm dependency, there are several options: @opencensus/web-initial-load
to instrument with only the initial page load module, @opencensus/web-instrumentation-zone
to instrument it with all the OC Web functionality plus the Zone.js
library and
@opencensus/web-instrumentation-zone-peer-dep
also exports all the functionality but Zone.js
is a peer dependency.
Implementation of User interaction tracing monkey-patching the Zone.js
library. This includes
some features like: automatic tracing for click events and route transitions, custom spans,
automatic spans for HTTP requests and Browser performance data, relate user interaction traces
back the the initial page load trace and sampling.
Changelog
0.0.3 - 2019-06-08
@opencensus/core
package version 0.0.13
.SpanOptions
) as an argument for startChildSpan
function, similar to startRootSpan
.addMessageEvent()
. The field id
is now number instead of string.Changelog
0.0.2 - 2019-04-29
Fix: add JS bundles and source maps to the NPM files for @opencensus/web-all
(#66), which were incorrectly not included before. This enables linking the JS
bundles in <script>
tags via the unpkg.com or jsdelivr.com CDNs for NPM files.
Changelog
0.0.1 - 2019-04-26
@opencensus/core
package of [opencensus-node][opencensus-node-url]Tracer
and Span
implementations. The tracer only supports a single
root span at a time within a browser tab.traceparent
global variable in
[trace context W3C draft format][trace-context-url].