From 9da5d058d9bad59071b433841eb353d0750e5c99 Mon Sep 17 00:00:00 2001 From: huikang Date: Wed, 31 Jul 2019 12:54:17 -0400 Subject: [PATCH] Fix README - remove broken links and commands (#211) Signed-off-by: Hui Kang --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 16a41f70268..f75fec70d8c 100644 --- a/README.md +++ b/README.md @@ -89,11 +89,10 @@ Create an Agent [configuration](#config) file based on the options described below. By default, the Agent has the `opencensus` receiver enabled, but no exporters configured. -Build the Agent, see [Usage](##agent-usage), -and start it: +Build the Agent and start it with the example configuration: ```shell -$ ./bin/$(go env GOOS)/otelsvc +$ ./bin/$(go env GOOS)/otelsvc --config ./examples/demotrace/otel-agent-config.yaml $ 2018/10/08 21:38:00 Running OpenTelemetry receiver as a gRPC service at "127.0.0.1:55678" ``` @@ -101,11 +100,11 @@ Create an Collector [configuration](#config) file based on the options described below. By default, the Collector has the `opencensus` receiver enabled, but no exporters configured. -Build the Collector and start it: +Build the Collector and start it with the example configuration: ```shell $ make otelsvc -$ ./bin/$($GOOS)/otelsvc +$ ./bin/$($GOOS)/otelsvc --config ./examples/demotrace/otel-collector-config.yaml ``` Run the demo application: