Skip to content

Commit

Permalink
Adjusted metric type in line with latest changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfeidau committed Dec 20, 2016
1 parent 81f9a7a commit 81d4dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/outputs/kinesis/kinesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func (k *KinesisOutput) Write(metrics []telegraf.Metric) error {

for _, metric := range values {
d := kinesis.PutRecordsRequestEntry{
Data: []byte(metric),
Data: []byte{metric},
PartitionKey: aws.String(k.PartitionKey),
}
r = append(r, &d)
Expand Down

0 comments on commit 81d4dea

Please sign in to comment.