err_report.go 450 B

1234567891011121314151617
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/report-click/model"
  5. )
  6. // ErrReport reports the failures of calling the api "heartbeat/mobile"
  7. func (s *Service) ErrReport(ctx context.Context, req *model.ErrReport) {
  8. s.promErr.Incr(req.ToProm())
  9. }
  10. // SuccReport reports the success of calling the api "heartbeat/mobile"
  11. func (s *Service) SuccReport(ctx context.Context, req *model.SuccReport) {
  12. s.promInfo.Incr(req.ToProm())
  13. }