mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* move mattes migrations to migratex * changes format of migrations to migratex format * updates test runner to use new interface (double checked this with printlns, the tests go fully down and then up, and work on pg/mysql) * remove mattes/migrate * update tests from deps * update readme * fix other file extensions
Example gRPC server and client with OpenCensus
This example uses:
- gRPC to create an RPC server and client.
- The OpenCensus gRPC plugin to instrument the RPC server and client.
- Debugging exporters to print stats and traces to stdout.
$ go get go.opencensus.io/examples/grpc
First, run the server:
$ go run $(go env GOPATH)/src/go.opencensus.io/examples/grpc/helloworld_server/main.go
Then, run the client:
$ go run $(go env GOPATH)/src/go.opencensus.io/examples/grpc/helloworld_client/main.go
You will see traces and stats exported on the stdout. You can use one of the exporters to upload collected data to the backend of your choice.
You can also see the z-pages provided from the server:
- Traces: http://localhost:8081/tracez
- RPCs: http://localhost:8081/rpcz