@opencensus/instrumentation-ioredis
Advanced tools
Changelog
0.0.13 - 2019-05-20
This release has a breaking change. Please test your code accordingly after upgrading.
startChildSpan(nameOrOptions?: string|SpanOptions, kind?: SpanKind)
interface, now only SpanOptions
object interface is supported.Changelog
0.0.12 - 2019-05-13
defaultAttributes
config to Tracer.start(config)
DoubleCumulative
, LongCumulative
, , DerivedDoubleCumulative
, DerivedLongCumulative
) APIs.TracerBase
as a separate @opencensus/nodejs-base
package.This release has a breaking change. Please test your code accordingly after upgrading.
startChildSpan(name?: string, kind?: types.SpanKind)
interface// Multi argument interface
const span = tracer.startChildSpan('my-span', types.SpanKind.SERVER);
// Or options object interface
const span = tracer.startChildSpan({
name: 'my-span',
kind: types.SpanKind.SERVER
});
// Only options object interface is supported
const span = tracer.startChildSpan({
name: 'my-span',
kind: types.SpanKind.SERVER
});
Changelog
0.0.11 - 2019-04-08
Changelog
0.0.10 - 2019-04-03
compressedSize
and uncompressedSize
params to Span.addMessageEvent
tags
, status
and annotation
in Zipkin exporter.SpanOptions
) as an argument for startChildSpan
function, similar to startRootSpan
.ConfigStream
behavior from exporter-ocagent. This was unstable and is not currently supported by any other language instrumentation.55678
to match the default OC Agent port.--strictNullChecks
and --noUnusedLocals
Compiler Options on [opencensus-instrumentation-http], [opencensus-instrumentation-grpc] and [opencensus-propagation-tracecontext] packages.--strictNullChecks
and --noUnusedLocals
Compiler Options on [opencensus-exporter-zipkin] packages.--strictNullChecks
and --noUnusedLocals
Compiler Options on [opencensus-exporter-instana] package.globalStats.unregisterExporter()
.--strictNullChecks
and --noUnusedLocals
Compiler Options on [opencensus-exporter-jaeger] packages.TagMetadata
that defines the properties associated with a Tag
.--strictNullChecks
and --noUnusedLocals
Compiler Options on [opencensus-core] package.addMessageEvent()
. The field id
is now number instead of string.MetricOptions
to simplify all addXGauge.