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

https://github.com/dalee/prom-init

Simple library to automate prometheus metrics serving.
https://github.com/dalee/prom-init

Last synced: over 1 year ago
JSON representation

Simple library to automate prometheus metrics serving.

Awesome Lists containing this project

README

          

# Prom init

Simple library to automate prometheus metrics serving.

Example:

```go
package main

import (
_ "github.com/Dalee/prom-init"
"time"
)

func main() {
time.Sleep(time.Second * 100)
}
```

Now you have a running prometheus on `:7070`.