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

Feature/add peer dead logging #43

Merged
merged 4 commits into from
Feb 7, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add wrapper of opencensus of grpc basic annotations
  • Loading branch information
a.konovalov authored and Dmitry Zhvakin committed Jan 30, 2019
commit 16caa0b2b4888f07e526c98f36bcfe04ec30a226
59 changes: 59 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
module github.com/s7techlab/hlf-sdk-go

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/BurntSushi/toml v0.3.0 // indirect
github.com/Knetic/govaluate v3.0.0+incompatible // indirect
github.com/Microsoft/go-winio v0.4.7 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/Shopify/sarama v1.17.0 // indirect
github.com/cloudflare/cfssl v0.0.0-20180323000720-5d63dbd981b5
github.com/containerd/continuity v0.0.0-20180523223233-a60600ad77f3 // indirect
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/docker/docker v0.0.0-20180524115659-aa2d23a7357d // indirect
github.com/docker/go-connections v0.3.0 // indirect
github.com/docker/go-units v0.3.3 // indirect
github.com/docker/libnetwork v0.0.0-20180608203834-19279f049241 // indirect
github.com/eapache/go-resiliency v1.1.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20180703130627-040cc1a32f57 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/fsouza/go-dockerclient v1.2.0 // indirect
github.com/gogo/protobuf v1.0.0 // indirect
github.com/golang/groupcache v0.0.0-20180513044358-24b0969c4cb7 // indirect
github.com/golang/protobuf v1.2.0
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/google/certificate-transparency-go v0.0.0-20180222191210-5ab67e519c93 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0
github.com/hashicorp/go-version v0.0.0-20180716215031-270f2f71b1ee // indirect
github.com/hyperledger/fabric v0.0.0-20180523222526-6eb36d3193eb
github.com/hyperledger/fabric-amcl v0.0.0-20180316153414-600b0c45a024 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/magiconair/properties v1.8.0 // indirect
github.com/miekg/pkcs11 v0.0.0-20180425180052-287d9350987c // indirect
github.com/mitchellh/mapstructure v0.0.0-20180511142126-bb74f1db0675
github.com/onsi/ginkgo v1.5.0 // indirect
github.com/onsi/gomega v1.4.0 // indirect
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/opencontainers/runc v0.1.1 // indirect
github.com/pierrec/lz4 v2.0.3+incompatible // indirect
github.com/pkg/errors v0.0.0-20180311214515-816c9085562c
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165 // indirect
github.com/sirupsen/logrus v1.0.5 // indirect
github.com/spf13/cast v1.2.0 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
github.com/spf13/pflag v1.0.1 // indirect
github.com/spf13/viper v0.0.0-20150908122457-1967d93db724 // indirect
github.com/stretchr/testify v1.2.2
github.com/syndtr/goleveldb v0.0.0-20180708030551-c4c61651e9e3 // indirect
github.com/tedsuo/ifrit v0.0.0-20180622163835-2a37a9eb7c3a // indirect
go.opencensus.io v0.19.0
go.uber.org/atomic v1.3.2 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.9.1
golang.org/x/crypto v0.0.0-20180523194057-75e913eb8a8e
google.golang.org/grpc v1.17.0
gopkg.in/yaml.v2 v2.2.2
)
Loading