This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
packages/opencensus-exporter-prometheus/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file.
44
55## Unreleased
66
7+
8+ ## 0.0.11 - 2019-04-08
79- Gauge: Add support for constant labels.
810- Add support for Opencensus Span links to Thrift Span references.
11+ - Add Redis and IORedis instrumentation plugins by default.
12+ - Fix(deps): update dependency googleapis to v39.
13+ - Fix error in Opencensus to stackdriver translation (compressedSize -> compressedSizeBytes and uncompressedSize -> uncompressedSizeBytes)
14+ - Remove createScopedRequired usage.
915
1016## 0.0.10 - 2019-04-03
1117- Add optional ` compressedSize ` and ` uncompressedSize ` params to ` Span.addMessageEvent `
Original file line number Diff line number Diff line change 2121 },
2222 "dependencies" : {
2323 "@grpc/proto-loader" : " ^0.4.0" ,
24- "@opencensus/exporter-stackdriver" : " ^0.0.10 " ,
25- "@opencensus/instrumentation-grpc" : " ^0.0.10 " ,
26- "@opencensus/nodejs" : " ^0.0.10 " ,
24+ "@opencensus/exporter-stackdriver" : " ^0.0.11 " ,
25+ "@opencensus/instrumentation-grpc" : " ^0.0.11 " ,
26+ "@opencensus/nodejs" : " ^0.0.11 " ,
2727 "grpc" : " ^1.18.0"
2828 },
2929 "devDependencies" : {
Original file line number Diff line number Diff line change 2020 "fix" : " semistandard --fix"
2121 },
2222 "dependencies" : {
23- "@opencensus/exporter-zipkin" : " ^0.0.10 " ,
24- "@opencensus/nodejs" : " ^0.0.10 " ,
25- "@opencensus/propagation-tracecontext" : " ^0.0.10 " ,
23+ "@opencensus/exporter-zipkin" : " ^0.0.11 " ,
24+ "@opencensus/nodejs" : " ^0.0.11 " ,
25+ "@opencensus/propagation-tracecontext" : " ^0.0.11 " ,
2626 "http" : " *"
2727 },
2828 "devDependencies" : {
Original file line number Diff line number Diff line change 2626 "semistandard" : " ^13.0.1"
2727 },
2828 "dependencies" : {
29- "@opencensus/core" : " ^0.0.10 " ,
30- "@opencensus/exporter-prometheus" : " ^0.0.10 " ,
31- "@opencensus/exporter-stackdriver" : " ^0.0.10 "
29+ "@opencensus/core" : " ^0.0.11 " ,
30+ "@opencensus/exporter-prometheus" : " ^0.0.11 " ,
31+ "@opencensus/exporter-stackdriver" : " ^0.0.11 "
3232 }
3333}
Original file line number Diff line number Diff line change 1414 "lint" : " npm run lint"
1515 },
1616 "dependencies" : {
17- "@opencensus/core" : " 0.0.10 " ,
18- "@opencensus/exporter-stackdriver" : " 0.0.10 " ,
17+ "@opencensus/core" : " 0.0.11 " ,
18+ "@opencensus/exporter-stackdriver" : " 0.0.11 " ,
1919 "express" : " ^4.16.3"
2020 }
2121}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export class PrometheusStatsExporter implements StatsEventListener {
3939 static readonly DEFAULT_OPTIONS = {
4040 port : 9464 ,
4141 startServer : false ,
42- contentType : 'text/plain; text/plain; version=0.0.10 ; charset=utf-8' ,
42+ contentType : 'text/plain; text/plain; version=0.0.11 ; charset=utf-8' ,
4343 prefix : ''
4444 } ;
4545
You can’t perform that action at this time.
0 commit comments