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.
- Host: GitHub
- URL: https://github.com/risingstack/trace-go
- Owner: RisingStack
- Created: 2015-09-11T11:05:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-01T12:54:24.000Z (about 10 years ago)
- Last Synced: 2025-06-06T06:36:47.769Z (7 months ago)
- Language: Go
- Homepage: http://trace.risingstack.com
- Size: 25.4 KB
- Stars: 11
- Watchers: 8
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trace Go collector
[](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
```