An open API service indexing awesome lists of open source software.

https://github.com/risingstack/trace-go

Trace is a visualised stack trace platform designed for microservices.
https://github.com/risingstack/trace-go

Last synced: 4 months ago
JSON representation

Trace is a visualised stack trace platform designed for microservices.

Awesome Lists containing this project

README

          

# Trace Go collector
[![Build Status](https://travis-ci.org/RisingStack/trace-go.svg)](https://travis-ci.org/RisingStack/trace-go)

## Usage
For an example usage please see the example service in the example folder.

## Example project
Running the example project:
```bash
go run example/main.go
```
To initiate a request:
```bash
curl localhost:9876/test
```
The sample application will call another endpoint.

## Development
The project uses Makefile for building.
Testing:
```bash
make test
```
The test goal will run go fmt, vet on the code.
To see test coverage:
```bash
make coverage
```