An open API service for producing an overview of a list of open source projects.

https://github.com/census-instrumentation/opencensus-go

cloud distributed-tracing go golang jaegertracing monitoring opencensus prometheus stats trace zipkin

Score: 36.75501080142339

Last synced: 14 minutes ago
JSON representation

Repository metadata:

A stats collection and distributed tracing framework


Owner metadata:


GitHub Events

Total
Last Year

Committers metadata

Last synced: 3 months ago

Total Commits: 664
Total Committers: 104
Avg Commits per committer: 6.385
Development Distribution Score (DDS): 0.756

Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
JBD b****n@g****m 162
Ramon Nogueira r****n@g****m 108
JBD j****d@g****g 81
rghetia r****a@y****m 64
Emmanuel T Odeke o****e@u****a 35
Yang Song s****3 31
Bogdan Drutu b****u@g****m 11
Emmanuel T Odeke e****l@o****m 10
ferhat elmas e****t@g****m 9
Bas van Beek b****k 7
Ramon N r****n@e****m 7
David Ashpole d****e@g****m 6
Ben Wells b****s@g****m 5
acetechnologist a****t@g****m 5
Ian Milligan i****n@g****m 4
Jean de Klerk d****k@g****m 4
Johan Brandhorst j****t@g****m 4
John Howard h****n@g****m 4
Biling Uliar c****e 3
Bob Potter b****r@g****m 3
Diógenes Falcão d****o@g****m 3
Roger Peppe r****e@g****m 3
jcd2 5****2 3
Matt Ho m****o@g****m 3
Javier Kohen j****n@g****m 2
Merouane Moakil m****l@g****m 2
Bogdan Drutu b****u@g****m 2
Evan Anderson e****n@g****m 2
Freddy f****v 2
Hyang-Ah Hana Kim h****h@g****m 2
and 74 more...

Issue and Pull Request metadata

Last synced: 7 months ago

Total issues: 47
Total pull requests: 56
Average time to close issues: 5 months
Average time to close pull requests: 2 months
Total issue authors: 46
Total pull request authors: 37
Average comments per issue: 2.02
Average comments per pull request: 1.95
Merged pull request: 36
Bot issues: 0
Bot pull requests: 0

Past year issues: 0
Past year pull requests: 0
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 0
Past year pull request authors: 0
Past year average comments per issue: 0
Past year average comments per pull request: 0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/census-instrumentation/opencensus-go

Top Issue Authors

  • odeke-em (2)
  • j2gg0s (1)
  • agsstaff (1)
  • mattwelke (1)
  • bgcint (1)
  • mlesar (1)
  • rohanthewiz (1)
  • ray2011 (1)
  • dm03514 (1)
  • jcchavezs (1)
  • Icarus9913 (1)
  • 0daryo (1)
  • rghetia (1)
  • adamdecaf (1)
  • codyaray (1)

Top Pull Request Authors

  • dashpole (6)
  • howardjohn (5)
  • ian-mi (4)
  • jsuereth (3)
  • punya (3)
  • rakyll (2)
  • bogdandrutu (2)
  • smhendrickson (2)
  • slinkydeveloper (1)
  • zasweq (1)
  • quentin-cha (1)
  • gstroup (1)
  • farexw (1)
  • michaelli321 (1)
  • SSAGAR0001 (1)

Top Issue Labels

  • bug (25)
  • feature-request (11)
  • enhancement (3)
  • P1 (3)
  • up-for-grabs (1)
  • trace (1)
  • grpc (1)
  • P2 (1)
  • docs (1)

Top Pull Request Labels

  • cla: yes (38)
  • cla: no (2)
  • do not merge (1)

Package metadata

proxy.golang.org: go.opencensus.io

Package opencensus contains Go support for OpenCensus.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io#section-documentation
  • Licenses: Apache-2.0
  • Latest release: v0.24.0 (published over 3 years ago)
  • Last Synced: 2026-01-12T02:19:20.149Z (3 months ago)
  • Versions: 37
  • Dependent Packages: 24,929
  • Dependent Repositories: 120,507
  • Docker Downloads: 40,946,584,570
  • Rankings:
    • Dependent repos count: 0.006%
    • Dependent packages count: 0.007%
    • Docker downloads count: 0.009%
    • Average: 0.606%
    • Stargazers count: 1.445%
    • Forks count: 1.562%
proxy.golang.org: github.com/census-instrumentation/opencensus-go

Package opencensus contains Go support for OpenCensus.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/github.com/census-instrumentation/opencensus-go#section-documentation
  • Licenses: Apache-2.0
  • Latest release: v0.24.0 (published over 3 years ago)
  • Last Synced: 2025-12-31T03:03:08.868Z (3 months ago)
  • Versions: 37
  • Dependent Packages: 2
  • Dependent Repositories: 3
  • Rankings:
    • Stargazers count: 1.444%
    • Forks count: 1.563%
    • Dependent repos count: 2.971%
    • Average: 3.608%
    • Dependent packages count: 8.453%
proxy.golang.org: go.opencensus.io/trace

Package trace contains support for OpenCensus distributed tracing. The following assumes a basic familiarity with OpenCensus concepts. See http://opencensus.io To export collected tracing data, register at least one exporter. You can use one of the provided exporters or write your own. By default, traces will be sampled relatively rarely. To change the sampling frequency for your entire program, call ApplyConfig. Use a ProbabilitySampler to sample a subset of traces, or use AlwaysSample to collect a trace on every run: Be careful about using trace.AlwaysSample in a production application with significant traffic: a new trace will be started and exported for every request. A trace consists of a tree of spans. In Go, the current span is carried in a context.Context. It is common to want to capture all the activity of a function call in a span. For this to work, the function must take a context.Context as a parameter. Add these two lines to the top of the function: StartSpan will create a new top-level span if the context doesn't contain another span, otherwise it will create a child span.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/trace#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-22T23:08:56.097Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/trace/propagation

Package propagation implements the binary trace context format.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/trace/propagation#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 4 months ago)
  • Last Synced: 2025-12-11T05:32:59.423Z (4 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/internal/tagencoding

Package tagencoding contains the tag encoding used interally by the stats collector.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/internal/tagencoding#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-31T03:02:51.371Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/resource

Package resource provides functionality for resource, which capture identifying information about the entities for which signals are exported.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/resource#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-31T03:02:54.676Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/metric/metricdata

Package metricdata contains the metrics data model. This is an EXPERIMENTAL package, and may change in arbitrary ways without notice.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/metric/metricdata#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-31T03:02:55.577Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/metric/metricproducer

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/metric/metricproducer#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-31T03:02:56.228Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/trace/tracestate

Package tracestate implements support for the Tracestate header of the W3C TraceContext propagation format.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/trace/tracestate#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-31T03:02:58.815Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/tag

Package tag contains OpenCensus tags. Tags are key-value pairs. Tags provide additional cardinality to the OpenCensus instrumentation data. Tags can be propagated on the wire and in the same process via context.Context. Encode and Decode should be used to represent tags into their binary propagation form.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/tag#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-29T02:27:35.502Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.111%
    • Average: 5.282%
    • Dependent repos count: 5.454%
proxy.golang.org: go.opencensus.io/internal

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/internal#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 4 months ago)
  • Last Synced: 2025-12-10T18:27:08.357Z (4 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: go.opencensus.io/stats

Package stats contains support for OpenCensus stats recording. OpenCensus allows users to create typed measures, record measurements, aggregate the collected data, and export the aggregated data. A measure represents a type of data point to be tracked and recorded. For example, latency, request Mb/s, and response Mb/s are measures to collect from a server. Measure constructors such as Int64 and Float64 automatically register the measure by the given name. Each registered measure needs to be unique by name. Measures also have a description and a unit. Libraries can define and export measures. Application authors can then create views and collect and break down measures by the tags they are interested in. Measurement is a data point to be collected for a measure. For example, for a latency (ms) measure, 100 is a measurement that represents a 100ms latency event. Measurements are created from measures with the current context. Tags from the current context are recorded with the measurements if they are any. Recorded measurements are dropped immediately if no views are registered for them. There is usually no need to conditionally enable and disable recording to reduce cost. Recording of measurements is cheap. Libraries can always record measurements, and applications can later decide on which measurements they want to collect by registering views. This allows libraries to turn on the instrumentation by default. For a given recorded measurement, the associated exemplar is a diagnostic map that gives more information about the measurement. When aggregated using a Distribution aggregation, an exemplar is kept for each bucket in the Distribution. This allows you to easily find an example of a measurement that fell into each bucket. For example, if you also use the OpenCensus trace package and you record a measurement with a context that contains a sampled trace span, then the trace span will be added to the exemplar associated with the measurement. When exported to a supporting back end, you should be able to easily navigate to example traces that fell into each bucket in the Distribution.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/stats#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 5 months ago)
  • Last Synced: 2025-10-29T20:37:06.784Z (5 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: go.opencensus.io/plugin/ochttp

Package ochttp provides OpenCensus instrumentation for net/http package. For server instrumentation, see Handler. For client-side instrumentation, see Transport.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/plugin/ochttp#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 5 months ago)
  • Last Synced: 2025-10-28T20:07:11.243Z (5 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: go.opencensus.io/plugin/ocgrpc

Package ocgrpc contains OpenCensus stats and trace integrations for gRPC. Use ServerHandler for servers and ClientHandler for clients.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/plugin/ocgrpc#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 4 months ago)
  • Last Synced: 2025-11-30T00:24:48.757Z (4 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: go.opencensus.io/stats/view

Package view contains support for collecting and exposing aggregates over stats. In order to collect measurements, views need to be defined and registered. A view allows recorded measurements to be filtered and aggregated. All recorded measurements can be grouped by a list of tags. OpenCensus provides several aggregation methods: Count, Distribution and Sum. Count only counts the number of measurement points recorded. Distribution provides statistical summary of the aggregated data by counting how many recorded measurements fall into each bucket. Sum adds up the measurement values. LastValue just keeps track of the most recently recorded measurement value. All aggregations are cumulative. Views can be registered and unregistered at any time during program execution. Libraries can define views but it is recommended that in most cases registering views be left up to applications. Collected and aggregated data can be exported to a metric collection backend by registering its exporter. Multiple exporters can be registered to upload the data to various different back ends.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/stats/view#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2026-01-06T10:24:47.340Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: go.opencensus.io/trace/internal

Package internal provides trace internals.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/trace/internal#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-31T03:03:00.963Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: go.opencensus.io/stats/internal

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/stats/internal#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 3 months ago)
  • Last Synced: 2025-12-22T23:08:56.085Z (3 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: go.opencensus.io/plugin/ochttp/propagation/b3

Package b3 contains a propagation.HTTPFormat implementation for B3 propagation. See https://github.com/openzipkin/b3-propagation for more details.

  • Homepage: https://github.com/census-instrumentation/opencensus-go
  • Documentation: https://pkg.go.dev/go.opencensus.io/plugin/ochttp/propagation/b3#section-documentation
  • Licenses: Apache-2.0
  • Latest release: (published 4 months ago)
  • Last Synced: 2025-12-10T15:09:01.057Z (4 months ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 9
  • Rankings:
    • Dependent packages count: 5.711%
    • Average: 5.902%
    • Dependent repos count: 6.093%

Dependencies

go.mod go
  • github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
  • github.com/golang/protobuf v1.4.3
  • github.com/google/go-cmp v0.5.3
  • github.com/stretchr/testify v1.6.1
  • golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
  • google.golang.org/grpc v1.33.2
go.sum go
  • cloud.google.com/go v0.26.0
  • github.com/BurntSushi/toml v0.3.1
  • github.com/census-instrumentation/opencensus-proto v0.2.1
  • github.com/client9/misspell v0.3.4
  • github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f
  • github.com/davecgh/go-spew v1.1.0
  • github.com/envoyproxy/go-control-plane v0.9.0
  • github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473
  • github.com/envoyproxy/go-control-plane v0.9.4
  • github.com/envoyproxy/protoc-gen-validate v0.1.0
  • github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
  • github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
  • github.com/golang/mock v1.1.1
  • github.com/golang/protobuf v1.2.0
  • github.com/golang/protobuf v1.3.2
  • github.com/golang/protobuf v1.4.0-rc.1
  • github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208
  • github.com/golang/protobuf v1.4.0-rc.2
  • github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0
  • github.com/golang/protobuf v1.4.0
  • github.com/golang/protobuf v1.4.1
  • github.com/golang/protobuf v1.4.3
  • github.com/google/go-cmp v0.2.0
  • github.com/google/go-cmp v0.3.0
  • github.com/google/go-cmp v0.3.1
  • github.com/google/go-cmp v0.4.0
  • github.com/google/go-cmp v0.5.0
  • github.com/google/go-cmp v0.5.3
  • github.com/google/uuid v1.1.2
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  • github.com/stretchr/objx v0.1.0
  • github.com/stretchr/testify v1.6.1
  • golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
  • golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
  • golang.org/x/exp v0.0.0-20190121172915-509febef88a4
  • golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3
  • golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961
  • golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3
  • golang.org/x/net v0.0.0-20180724234803-3673e40ba225
  • golang.org/x/net v0.0.0-20180826012351-8a410e7b638d
  • golang.org/x/net v0.0.0-20190213061140-3a22650c66bd
  • golang.org/x/net v0.0.0-20190311183353-d8887717615a
  • golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
  • golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
  • golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
  • golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
  • golang.org/x/sync v0.0.0-20181108010431-42b317875d0f
  • golang.org/x/sync v0.0.0-20190423024810-112230192c58
  • golang.org/x/sys v0.0.0-20180830151530-49385e6e1522
  • golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
  • golang.org/x/sys v0.0.0-20190412213103-97732733099d
  • golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f
  • golang.org/x/text v0.3.0
  • golang.org/x/text v0.3.3
  • golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
  • golang.org/x/tools v0.0.0-20190114222345-bf090417da8b
  • golang.org/x/tools v0.0.0-20190226205152-f727befe758c
  • golang.org/x/tools v0.0.0-20190311212946-11955173bddd
  • golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135
  • golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  • google.golang.org/appengine v1.1.0
  • google.golang.org/appengine v1.4.0
  • google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
  • google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55
  • google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013
  • google.golang.org/grpc v1.19.0
  • google.golang.org/grpc v1.23.0
  • google.golang.org/grpc v1.25.1
  • google.golang.org/grpc v1.27.0
  • google.golang.org/grpc v1.33.2
  • google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd
  • google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64
  • google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60
  • google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967
  • google.golang.org/protobuf v1.21.0
  • google.golang.org/protobuf v1.22.0
  • google.golang.org/protobuf v1.23.0
  • google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc
  • google.golang.org/protobuf v1.25.0
  • gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
  • gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
  • honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099
  • honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc
.github/workflows/build.yml actions
  • actions/checkout v2 composite
  • actions/setup-go v2 composite