Fix image links (#171)

This commit is contained in:
Greg Ingram 2019-10-19 14:48:40 -04:00 committed by Aman Bhardwaj
parent 682a00b2ae
commit bb9a80e7df
2 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ For memory related issues, you can profile the heap:
`go tool pprof --pdf your-binary-file http://localhost:7777/debug/pprof/heap > heap.pdf`
![heap](../imgs/heap.png)
![heap](../../images/heap.png)
Profiling allocated objects:
@ -88,7 +88,7 @@ To analyze, grab the file path above (its a dynamic file path, so pay attention
`go tool pprof -alloc_objects --pdf /Users/myusername/pprof/pprof.daprd.alloc_objects.alloc_space.inuse_objects.inuse_space.003.pb.gz > alloc-objects.pdf`
![alloc](../imgs/alloc.png)
![alloc](../../images/alloc.png)
### Standalone

View File

@ -65,7 +65,7 @@ kubectl port-forward svc/zipkin 9411:9411
On your browser, go to ```http://localhost:9411``` and you should see the Zipkin UI.
![zipkin](../imgs/zipkin_ui.png)
![zipkin](../../images/zipkin_ui.png)
## Distributed Tracing with Zipkin - Standalone Mode
The following steps show you how to configure Dapr to send distributed tracing data to Zipkin running as a container on your local machine and view them.