Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update module io_opencensus_go to v0.24.0 #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Jul 3, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io_opencensus_go v0.17.0 -> v0.24.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

census-instrumentation/opencensus-go (io_opencensus_go)

v0.24.0

Compare Source

What's Changed

New Contributors

Full Changelog: census-instrumentation/opencensus-go@v0.23.0...v0.24.0

v0.23.0: OpenCensus Go 0.23.0

Compare Source

No breaking changes

Additions
  • OpenTelemetry interop
    • allow users to replace the trace SDK (#​1238)
    • expose underlying span implementation (#​1240)
  • Expose ability to flush interval reader (#​1248)
  • Add GC stats to runmetrics plugin (#​1207)
  • Dependency upgrades (#​1243)
Fixes
Miscellaneous

v0.22.6

Compare Source

v0.22.5: OpenCensus Go 0.22.5

Compare Source

Changes Since 0.22.4

8e242ed Comment on GRPC latency measure reuse (#​1217)
af30f77 Record a Start Time Per Time Series within a View (#​1220)
3456e1d Made public traceparent/tracestate marshal/unmarshal (#​1218)
d7677d6 Include const labels in baseMetric.upsertEntry (#​1221)
5bb2445 update golang.org/x/text to v0.3.3 (#​1230)
3fb168f Defer IDGenerator initialization until first use (#​1228)

v0.22.4: OpenCensus Go 0.22.4

Compare Source

Changes Since 0.22.3

5fa069b Initialize View Start Time During View Registration (#​1215)
1901b56 Allow custom view.Meters to export metrics for other Resources (#​1212)
785d899 Delete views from measure ref when unregistering (#​1211)
cd9ae5c Remove call to time.Now() on worker thread when handling record reqs (#​1210)
46dfec7 Reduce allocations (#​1204)
d3cf45e Safely reject invalid-length span and trace ids (#​1206)
84d38db Allow creating additional View universes. (#​1196)
84d38db replace gofmt with goimports (#​1197)

v0.22.3: OpenCensus Go 0.22.3

Compare Source

Changes Since 0.22.2

d835ff8 fix config_test to run in any order. (#​1194)
d851005 Added handling of HTTP code 409 when parsing trace status in ochttp (#​1190)
643eada Added test exporter for use in unit tests. (#​1185)

v0.22.2: OpenCensus Go 0.22.2

Compare Source

Changes since v0.22.1

aad2c52 exclude zero bucket from aggregation_data (#​1183)
3b5a343 Added seconds unit (#​1179)
fa651b0 Add runtime metrics support (#​1156)
f58a717 Allow overriding health endpoint check in handler (#​1177)
df0549d add opencensus and opentracing merger note (#​1175)
d7af601 Add New Relic to list of available exporters. (#​1172)
6531013 Remove Gopkg.toml (#​1170)
1b2595d fix appveyor build. (#​1168)
3da91ae Simplify use of time package (#​1167)
ce85b6d Use stats.UnitDimensionless rather than deprecated stats.UnitNone (#​1166)

v0.22.1: OpenCensus Go 0.22.1

Compare Source

Changes since v0.22.0

59d1ce3 Update LRU usage (#​1164)
556cb5b Fix typo in view documentation and remove unnecessary type conversions (#​1162)
c3153da Fix bug in ocgrpc client logging (#​1161)
19caf3a Use time.Since rather than time.Now().Sub (#​1160)
29aa3ca change unit to dimensionless when aggregation is count. (#​1157)
b4a1468 Clean up comments in view.go (#​1152)
19a9151 Map 422 Unprocessable Entity to INVALID_ARGUMENT (#​1149)
df42942 Add deployment key for k8s resource. (#​1148)
f6172e4 Replace tag.NewKey calls with tag.MustNewKey where appropriate (#​1146)
a092815 Fix typo in docs An => A (#​1145)
6325d76 Bump up the version to v0.23.0 (#​1144)

v0.22.0: OpenCensus Go 0.22.0

Compare Source

Important Changes

  • constants for monitored resources are moved to this repo and removed from resource repo
  • Added safe way to create tag Key using MustNewKey

Complete list of changes since release v0.21.0

9c37759 tag: add func MustNewKey to wrap NewKey with panic (#​1141)
766cc5b update comment for cloud resources.
fff365e add constant keys for resources.
54a91f5 Fix a couple of broken links (#​1142)
f24e562 Fix typos and imports. (#​1139)
17d7955 Replace "x/net/context" import with "context" (#​1138)
a2c785e Upgrade dependencies. (#​1137)
3f87460 remove triage-me label from template.
5c6a904 Bump up the version to v0.22.0

v0.21.0: OpenCensus Go 0.21.0

Compare Source

Important changes

Breaking changes

  • Added description field to LabelKey in metricdata package. This is a breaking change. However, the effect should be minimal as it is only used by stackdriver exporter.
  • Prometheus, zipkin and jaeger exporters are removed from go.opencensus.io and are moved contrib.go.opencensus.io. This is another breaking change ONLY if the version is not locked using either go.sum or Gopkg.lock

Features

  • Added support for Cumulative and Derived Cumulative metrics. It is similar to Gauge and Derived Gauge, with key difference that the value of a Cumulative can only go up.
  • Added constant labels for Gauges and Cumulatives.
  • Added example for Gauge and Derived Gauge.
  • Added Log Exporter to export metrics and trace spans to a log file.

Complete list of changes since release v0.20.0

df6e200 Run go mod tidy before merging dev to master.
9328d44 Remove deprecated exemplar package. (#​1124)
beff310 Exemplar: Record with sampled SpanContext in gRPC plugin. (#​1127)
648e9a0 fix buckets in example/quickstart (#​1132)
d00fa0c Added payload size to http server integration (#​1129)
6161d2e Add support for Tag metadata (#​1125)
ed3a3f0 Move exporters out from core. (#​1118)
c31d268 add constant labels to gauges and cumulative metrics (#​1122)
3e65bcb update example to use log exporter. (#​1128)
295a4b8 Add log exporter. (#​1126)
0ac3701 Exemplar: Add new record APIs that take exemplar attachments and SpanContext key. (#​1123)
18733e4 remove Set method for cumulatives. (#​1120)
9a306f3 fix typo in feature request template. (#​1119)
cc78dac update issue template. (#​1117)
4651f24 Add description field to LabelKey (#​1114)
c82de26 add space between error and %v in gauge example. (#​1116)
6bebf56 Fix comment received for #​1110 after it was merged. (#​1113)
a7c47d3 Add derived gauge example. (#​1110)
1c036df Fix TOC and some typos. (#​1111)
a209e58 Remove extraneous err check. (#​1109)
5d1b8af Add gauges example. (#​1107)
aca3e8a Add support for metrics in prometheus exporter (#​1105)
ef4afeb fix race condition in reading record and updating record. (#​1104)
bf1b28d replace missing tag with empty values during metric export. (#​1102)
df5e771 Add support for cumulative. (#​1090)
01ba744 Refactor gauge and registry to accommodate cumulative. (#​1089)
75c0cca run go mod tidy after fixing dependency on google.golang.org/api (#​1097)
a901c1e fix version script to ignore pre-release tags. (#​1098)
8930459 change google.golang.org/api dependency to v0.3.1 (#​1096)
eec2a5d replace +alpha with -alpha. (#​1095)
60399d2 Fix version dependencies with google.golang.org (#​1094)
d0e431e Bump up the version to 0.21.0 (#​1088)

v0.20.2

Compare Source

v0.20.1

Compare Source

v0.20.0: OpenCensus Go 0.20.0

Compare Source

46618d0 Replace deprecated Endpoint of Jaeger example (#​1087)
948b0cb Refactor gauge api with options. (#​1086)
41e54b8 metric type is not set for gauges. (#​1082)
ec71c97 stats worker as metric producer. (#​1078)
5ae9166 Add support for reader. (#​1049)
7396103 http out test cases (#​928)
8a36f74 Exemplar: Use generic interface for attachment values. (#​1070)
ebb7978 Exemplar: Restore previous package to avoid breaking downstream. (#​1071)
6ddd4bc ochttp plugin: makes Body a transparent wrapper (#​1069)
604812a Exemplar: revert wrong implementation. (#​1067)

v0.19.3

Compare Source

v0.19.2: OpenCensus Go 0.19.2

Compare Source

Note: Gauge support is incomplete in this release. It should be available in 0.20.0

3b8e272 (HEAD, tag: v0.19.2) Run command mod tiny (#​1052)
5439521 Minor cleanups in the tests. (#​1066)
4c51322 Fix misspell in the comments. (#​1065)
2656f29 Add support for derived gauges. (#​1060)
05c3ab6 update link type definition to adhere to spec. (#​1062)
084f0af Exporter/Prometheus: Simplify histogram creation. (#​1061)
bf23ae1 (label_keys) During gauge creation return error instead of panic. (#​1057)
d1aebdc refactor ReadAll to Read and fix concurrency issue. (#​1056)
2eaaf3a Add makefile, enforce lint, fix lint errors. (#​1044)
1c9fa34 rename producer to metricproducer package. (#​1053)
127ad9a ochttp plugin: add remote span as parent link instead of child link. (#​1055)
8734d3b Make Add, Delete, GetAll associated with producer.Manager (#​1047)

v0.19.1: OpenCensus Go 0.19.1

Compare Source

f305e5c add metric producer manager. (#​1039)
dc0ac5c exporter/jaeger: ensure non-zero status code sets error tag
22a302c treat 0 bucket bound as an error. (#​1037)
0f56738 fix inconsistent jaeger test. (#​1038)
144687d Use Host from Request instead of Request.URL (#​1036)
62b306a Increase time waited in TestHandlerImplementsHTTPCloseNotify (#​1027)
beafb2a Add support for Float64 Attribute. (#​1033)
6499bfc Add code owners to restrict access. (#​1030)
bf35273 Revert "RFC: add SpanContext.LocalRootSpanID (#​1029)" (#​1031)
57c0993 RFC: add SpanContext.LocalRootSpanID (#​1029)
ed9f155 revert (#​1000) and update prometheus version. (#​1026)
7a32882 (grpc_rpc_started) Add support for child span count. (#​1023)
3cbb6ce Enforce message event and link limits. (#​1022)
ad83cda Enforce annotation limit. (#​1021)
3abc75f Allow setting the http route from HTTP handlers (#​1017)
50686e2 enforce attribute limit (#​1020)
4baeb63 Add option to configure limits for attributes, annotations, message events and links. (#​1015)
1d7c80b fix build error. (#​1019)
6f50dd4 Bump up the version to 0.20.0 (#​1016)

v0.19.0: OpenCensus Go 0.19.0

Compare Source

2b5032d Add metric package containing Gauge support
2f39cd4 Update internal import. (#​1014)
6e8ca2c Guard bundler from buffering too many messages in memory (#​1011)
950a67f Fix data race when registering views multiple times
25040cf Return an error if negative bucket bounds are provided
df705ed Upgrade dependencies; resolve test issue with Prom exporter (#​1000)
8b95f1c Add metric data model and export support (#​977)
9f101dc Improve the accuracy of the response size in ochttp (#​997)
aab39bd Make our user-agent consistent with other user-agents. (#​991)
8b019f3 Remove dead code in Prometheus exporter. (#​990)
aeef0d7 Fix prometheus exporter when tags are missing. (#​989)
fa1e35e Keep pointer receiver name consistency for stats.Measure types (#​982)
296c89c Revert "Add metric API (#​975)" (#​981)
a91cf18 Add metric API (#​975)
91a0276 Update README link to database/sql wrapper (#​972)
94fd1d0 exporter/prometheus: provide ConstLabels (#​962)
4f7fcb4 Add resource package (#​878)
96e75b8 Bump version to 0.19.0 (#​955)

v0.18.0: OpenCensus Go 0.18.0

Compare Source

486d66a zpages: fix Snapshot int->*int64 changes + tests on count (#​952)
ae36bd8 Exemplar implementation (#​917)
b6be004 Always end execution tracer task (#​943)
f261ec0 Allow user to set start options perf HTTP request (#​924)
ae11cd0 Improve W3C Trace Context compliance (#​934)
2b3f775 Set status code attribute for ochttp.Server (#​933)
c50972b Bring ochttp client views in line with spec (#​929)
2269ed7 Add stats.RecordWithTags (#​918)
3500eaa Remove unused exporterutil package (#​919)
3d73a6c Jaeger: allow other endpoint URL paths than the default (#​915)


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@helmsman-bot
Copy link

Can one of the admins verify this patch?

@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.22.0 Update dependency io_opencensus_go to v0.22.1 Sep 4, 2019
@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.22.1 Update dependency io_opencensus_go to v0.22.2 Nov 11, 2019
@google-oss-robot
Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: renovate-bot
To complete the pull request process, please assign robinpercy
You can assign the PR to them by writing /assign @robinpercy in a comment when ready.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.22.2 Update dependency io_opencensus_go to v0.22.3 Feb 9, 2020
@renovate-bot renovate-bot force-pushed the renovate/io_opencensus_go-0.x branch from 0042848 to 40f4c6c Compare July 1, 2020 23:59
@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.22.3 Update dependency io_opencensus_go to v0.22.4 Jul 1, 2020
@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.22.4 Update dependency io_opencensus_go to v0.22.5 Oct 26, 2020
@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.22.5 Update dependency io_opencensus_go to v0.22.6 Feb 2, 2021
@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.22.6 Update dependency io_opencensus_go to v0.23.0 Apr 26, 2021
@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.23.0 Update dependency io_opencensus_go to v0.24.0 Nov 20, 2022
@renovate-bot renovate-bot changed the title Update dependency io_opencensus_go to v0.24.0 Update module io_opencensus_go to v0.24.0 Jul 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants