https://github.com/chrishalbert/slim-apm
https://github.com/chrishalbert/slim-apm
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/chrishalbert/slim-apm
- Owner: chrishalbert
- Created: 2024-01-17T17:41:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-18T20:14:47.000Z (over 2 years ago)
- Last Synced: 2025-04-14T10:58:11.980Z (about 1 year ago)
- Language: Go
- Size: 31.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# SlimAPM
Slim-APM is a golang library that can be used to analyze healthcheck responses, which could be used for an APM.
## Running
Options:
1. You can simply run `go run .`. (you need `go` installed)
1. You can run with `make slimapm`
## Developing
Dependencies: You need `make`, `go`, and `docker` - docker is used for golangci-lint, per
maintainer recommendations to avoid installing as a golang mod
1. Verify code passes standards (linting and tests):
```bash
make ci
```
_(this runs `make lint` and `make test`)_
1. Verify code coverage:
```bash
make test
```
_(then open up `./.artifacts/cover.html` in your browser)_