* Adding scenarios in the concepts page
* formating fixes
* restructuring doc
* adding reference to scenarios section
* rephrasing the statement
* fix typo
* adding the note about helper method limitation
* more restructuring
* adding more languages as how to create trace context
* Update W3C-traces.md
* Update README.md
* Added C# snippets. Added ochttp instructions at right place. Fix typo.
* Fix broken link. Change the title reference in main readme. Fix typos.
* changing tracing context to trace context
* fix minor formatting fix
Co-authored-by: Mark Fussell <mfussell@microsoft.com>
Addresses #572
Current instructions for deploying Zipkin do not create service which makes the following command fail because there is no service, as starting with 1.15 k8s no longer creates service under the `run` command.
Changing the `run` to `create deployment`
```shell
kubectl create deployment zipkin --image openzipkin/zipkin
```
Which creates will allow the following command to create a service and expose its port.
```shell
kubectl expose deployment zipkin --type ClusterIP --port 9411
```
* add howto for dapr with docker
* updated README
* updated README
* update docs to align with template
* expand intro
* add link to section
* fix typo
* align headers
* Style and tone updates
Removing first person phrasing and additional minor changes to style and tone.
* add not about host network mode
* added mount to run cmd
Co-authored-by: Young Bu Park <youngp@microsoft.com>
Co-authored-by: Ori Zohar <orzohar@microsoft.com>
* Create setup-snssqs
Add documentation on how to use snssqs for local and AWS development
* related links
* .md extension
* add to toc
* How to updates
- Changing title to provide more context.
- Adding short description as to article purpose
- Removing reference to automatic components creation by Dapr CLI (due to change in 0.8)
- Standrizing link texts
Co-authored-by: Aman Bhardwaj <amanbha@users.noreply.github.com>
Co-authored-by: Ori Zohar <orzohar@microsoft.com>
Co-authored-by: Yaron Schneider <yaronsc@microsoft.com>