Codebase list golang-github-go-kit-kit / a01f15d
examples/README: update Peter Bourgon 8 years ago
1 changed file(s) with 2 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 # Examples
1
2 TODO
31
42 1. [A minimal example](#a-minimal-example)
53 1. [Your business logic](#your-business-logic)
632630 ### Request tracing
633631
634632 Once your infrastructure grows beyond a certain size, it becomes important to trace requests through multiple services, so you can identify and troubleshoot hotspots.
635 See [package tracing](https://github.com/go-kit/kit/tracing) for more information.
633 See [package tracing](https://github.com/go-kit/kit/blob/master/tracing) for more information.
636634
637635 ### Creating a client package
638636
651649
652650 ### addsvc
653651
654 [addsvc](https://github.com/go-kit/kit/examples/addsvc) was the original example application.
652 [addsvc](https://github.com/go-kit/kit/blob/master/examples/addsvc) was the original example application.
655653 It exposes a set of operations over all supported transports.
656654 It's fully logged, instrumented, and uses Zipkin request tracing.
657655 It also demonstrates how to create and use client packages.