Skip to content

Commit

Permalink
return error on unsupported serializer data format (#2542)
Browse files Browse the repository at this point in the history
  • Loading branch information
phemmer authored and danielnelson committed Mar 17, 2017
1 parent 426182b commit 8514acd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ be deprecated eventually.
- [#2500](https://github.com/influxdata/telegraf/pull/2500): Remove warning if parse empty content
- [#2520](https://github.com/influxdata/telegraf/pull/2520): Update default value for Cloudwatch rate limit
- [#2513](https://github.com/influxdata/telegraf/issues/2513): create /etc/telegraf/telegraf.d directory in tarball.
- [#2541](https://github.com/influxdata/telegraf/issues/2541): Return error on unsupported serializer data format.

## v1.2.1 [2017-02-01]

Expand Down
4 changes: 4 additions & 0 deletions plugins/serializers/registry.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package serializers

import (
"fmt"

"github.com/influxdata/telegraf"

"github.com/influxdata/telegraf/plugins/serializers/graphite"
Expand Down Expand Up @@ -49,6 +51,8 @@ func NewSerializer(config *Config) (Serializer, error) {
serializer, err = NewGraphiteSerializer(config.Prefix, config.Template)
case "json":
serializer, err = NewJsonSerializer()
default:
err = fmt.Errorf("Invalid data format: %s", config.DataFormat)
}
return serializer, err
}
Expand Down

0 comments on commit 8514acd

Please sign in to comment.