Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 243 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 243 Bytes

Example Golang service with prometheus metrics

Build and execute

With docker:

docker build -t myservice .
docker run -ti -p 8080:8080 myservice

Native (requires Go):

make
./server

or just

make serve