Skip to content

Commit

Permalink
Do no send response time as a tag. Release v4.13.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
cscatolini committed May 26, 2018
1 parent 0b2c2c0 commit 3232d42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/charts/maestro/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: maestro
home: https://github.com/topfreegames/maestro
description: Maestro api and worker
version: 4.13.3
version: 4.13.4
maintainers:
- name: TFGCo
email: backend@tfgco.com
2 changes: 1 addition & 1 deletion metadata/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package metadata

//Version of Maestro
var Version = "4.13.3"
var Version = "4.13.4"

//KubeVersion is the desired Kubernetes version
var KubeVersion = "v1.7.5"
2 changes: 1 addition & 1 deletion reporters/dogstatsd/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func HTTPTimingHandler(c dogstatsd.Client, event string,
func TimingHandler(c dogstatsd.Client, event string,
opts map[string]string) error {
tags := createAllowedTags(opts, []string{
constants.TagResponseTime, constants.TagScheduler, constants.TagRegion,
constants.TagScheduler, constants.TagRegion,
constants.TagSegment, constants.TagRoute, constants.TagType, constants.TagTable, constants.TagError})
duration, _ := time.ParseDuration(opts[constants.TagResponseTime])
c.Timing(constants.EventResponseTime, duration, tags, 1)
Expand Down

0 comments on commit 3232d42

Please sign in to comment.