Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 560 Bytes

File metadata and controls

35 lines (21 loc) · 560 Bytes

Softcom Telemetry - Go


A telemetry library that supports the following out of the box:

  • logging
  • tracing
  • health checks (wip)

Dependencies

Usage

package main

import "github.com/softcomoss/gotelemtry"

func main()  {

	tlm := gotelemetry.NewServerTelemetry("example-service", "production")

	tlm.Info("fishcobite")
	
	
	tlm.U
}