Socket
Socket
Sign inDemoInstall

@opencensus/instrumentation-redis

Package Overview
Dependencies
8
Maintainers
6
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
Previous1

0.0.13

Diff

Changelog

Source

0.0.13 - 2019-05-20

  • Exporter/Stats/Prometheus: Fix missing tags for HTTP metrics
  • http-instrumentation: add support for the addition of custom attributes to spans
  • Set CurrentRootSpan correctly
  • Chore: update GRPC to 1.12.3
  • Fix: handle infinite loop caused by get traceState()
  • Chore: upgrade engines field to >=8
  • Chore: Fix js-yaml vulnerability from Codecov
  • Change CLS import to do stats type more general

This release has a breaking change. Please test your code accordingly after upgrading.

  • Remove Span's startChildSpan(nameOrOptions?: string|SpanOptions, kind?: SpanKind) interface, now only SpanOptions object interface is supported.
mayurkale22
published 0.0.12 •

Changelog

Source

0.0.12 - 2019-05-13

  • Add defaultAttributes config to Tracer.start(config)
  • http-instrumentation: Handle incoming requests with long request url path.
  • Add Cumulative (DoubleCumulative, LongCumulative, , DerivedDoubleCumulative, DerivedLongCumulative) APIs.
  • Export TracerBase as a separate @opencensus/nodejs-base package.
  • Fix(deps): update dependency nyc to v14.
  • Fix(deps): update dependency grpc to ~1.20.0
  • chore(package): update handlebar to avoid security vulnabirity.
  • Move propagation-binaryformat package to dependencies.
  • Fix(deps): update dependency @grpc/proto-loader to ^0.5.0
  • http-instrumentation: fix propagation errors when using Expect header.
  • Consolidate Span and RootSpan to allow Spans to recursively have children.

This release has a breaking change. Please test your code accordingly after upgrading.

  • removing Tracer's startChildSpan(name?: string, kind?: types.SpanKind) interface
Old code
// 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
});
New code
// Only options object interface is supported
const span = tracer.startChildSpan({
  name: 'my-span',
  kind: types.SpanKind.SERVER
});
mayurkale22
published 0.0.11 •

Changelog

Source

0.0.11 - 2019-04-08

  • Gauge: Add support for constant labels.
  • Add support for Opencensus Span links to Thrift Span references.
  • Add Redis and IORedis instrumentation plugins by default.
  • Fix(deps): update dependency googleapis to v39.
  • Fix error in Opencensus to stackdriver translation (compressedSize -> compressedSizeBytes and uncompressedSize -> uncompressedSizeBytes)
  • Remove createScopedRequired usage.
mayurkale22
published 0.0.10 •

Changelog

Source

0.0.10 - 2019-04-03

  • Add optional compressedSize and uncompressedSize params to Span.addMessageEvent
  • Add support for tags, status and annotation in Zipkin exporter.
  • Add support for Binary propagation format.
  • Add support for object(SpanOptions) as an argument for startChildSpan function, similar to startRootSpan.
  • Add proto files to exporter-ocagent package. Fixes issue #174.
  • Remove ConfigStream behavior from exporter-ocagent. This was unstable and is not currently supported by any other language instrumentation.
  • Change default exporter-ocagent port to 55678 to match the default OC Agent port.
  • Add support for recording gRPC stats.
  • Add support for recording HTTP stats.
  • Enforce --strictNullChecks and --noUnusedLocals Compiler Options on [opencensus-instrumentation-http], [opencensus-instrumentation-grpc] and [opencensus-propagation-tracecontext] packages.
  • Enforce --strictNullChecks and --noUnusedLocals Compiler Options on [opencensus-exporter-zipkin] packages.
  • Add NoRecordRootSpan, NoRecordSpan and NoRecordSpanBase.
  • Enforce --strictNullChecks and --noUnusedLocals Compiler Options on [opencensus-exporter-instana] package.
  • Add an API globalStats.unregisterExporter().
  • Add support for overriding sampling for a span.
  • Enforce --strictNullChecks and --noUnusedLocals Compiler Options on [opencensus-exporter-jaeger] packages.
  • Add support for recording Exemplars.
  • Add TagMetadata that defines the properties associated with a Tag.
  • Add HTTP/W3C text format serializer to Tag propagation component.
  • Enforce --strictNullChecks and --noUnusedLocals Compiler Options on [opencensus-core] package.
  • Please note that there is an API breaking change in methods addMessageEvent(). The field id is now number instead of string.
  • Add support for recording exemplars.
  • Add a NoRecord RootSpan and Span.
  • Add support for child span count.
  • Add [opencensus-instrumentation-ioredis] instrumentation plugin.
  • Make Stackdriver propagation module consistent with other propagations interface.
  • Add support for gRPC tags propagation.
  • Use ts-mocha to run tests.
  • Add MetricOptions to simplify all addXGauge.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc