1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-22 20:06:07 +02:00
opentelemetry-go/example/http
Tyler Yahn 49ac8eb238
Prepare for the v0.7.0 release (#876)
* Prepare for releasing v0.7.0

* Update Changelog for v0.7.0 release

Co-authored-by: Joshua MacDonald <jmacd@users.noreply.github.com>
2020-06-26 13:54:33 -07:00
..
client Rename plugin directory to instrumentation (#779) 2020-05-30 14:53:32 -07:00
server Rename plugin directory to instrumentation (#779) 2020-05-30 14:53:32 -07:00
docker-compose.yml add Dockerfile and docker-compose.yml to run example code (#635) 2020-04-23 13:11:24 -07:00
Dockerfile Ensure golang alpine image is running golang-1.14 (#733) 2020-05-15 21:53:05 -07:00
go.mod Prepare for the v0.7.0 release (#876) 2020-06-26 13:54:33 -07:00
go.sum Update google.golang.org/grpc from 1.27.1 to 1.30.0 (#870) 2020-06-24 16:07:08 -07:00
README.md add Dockerfile and docker-compose.yml to run example code (#635) 2020-04-23 13:11:24 -07:00

HTTP Client-Server Example

An HTTP client connects to an HTTP server. They both generate span information to stdout. These instructions expect you have docker-compose installed.

Bring up the http-server and http-client services to run the example:

docker-compose up --detach http-server http-client

The http-client service sends just one HTTP request to http-server and then exits. View the span generated to stdout in the logs:

docker-compose logs http-client

View the span generated by http-server in the logs:

docker-compose logs http-server

Shut down the services when you are finished with the example:

docker-compose down