File: README.md

package info (click to toggle)
golang-github-newrelic-go-agent 3.15.2-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 8,356 kB
  • sloc: sh: 65; makefile: 6
file content (17 lines) | stat: -rw-r--r-- 558 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Testing gRPC Application

This directory contains a testing application for validating the New Relic gRPC
integration.  The code in `testapp.pb.go` is generated using the following
command (to be run from the `_integrations/nrgrpc` directory).  This command
should be rerun every time the `testapp.proto` file has changed for any reason.

```bash
$ protoc -I testapp/ testapp/testapp.proto --go_out=plugins=grpc:testapp
```

To install required dependencies:

```bash
go get -u google.golang.org/grpc
go get -u github.com/golang/protobuf/protoc-gen-go
```