Go to file
github-actions[bot] 071a3ca163
Merge pull request #39 from unistack-org/dependabot/go_modules/github.com/unistack-org/micro/v3-3.7.3
Bump github.com/unistack-org/micro/v3 from 3.7.1 to 3.7.3
2021-09-22 11:20:42 +00:00
.github update workflow 2021-09-21 21:47:38 +03:00
.synced use own fork 2021-01-19 16:31:38 +03:00
go.mod Bump github.com/unistack-org/micro/v3 from 3.7.1 to 3.7.3 2021-09-22 11:19:49 +00:00
go.sum Bump github.com/unistack-org/micro/v3 from 3.7.1 to 3.7.3 2021-09-22 11:19:49 +00:00
LICENSE use own fork 2021-01-19 16:31:38 +03:00
README.md use own fork 2021-01-19 16:31:38 +03:00
victoriametrics_test.go update wrapper for latest micro 2021-07-21 16:37:51 +03:00
victoriametrics.go fast path for labels 2021-07-23 08:59:50 +03:00

VictoriaMetrics

Wrappers are a form of middleware that can be used with go-micro services. They can wrap both the Client and Server handlers. This plugin implements the HandlerWrapper interface to provide automatic prometheus metric handling for each microservice method execution time and operation count for success and failed cases.

This handler will export two metrics to prometheus:

  • micro_request_total. How many go-miro requests processed, partitioned by method and status.
  • micro_request_duration_microseconds. Service method request latencies in microseconds, partitioned by method.

Usage

When creating your service, add the wrapper like so.

    service := micro.NewService(
        micro.Name("service name"),
    	micro.Version("latest"),
    	micro.WrapHandler(victoriametrics.NewHandlerWrapper()),
    )
    
    service.Init()