-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kafka output producer, send telegraf metrics to Kafka brokers
Closes #38
- Loading branch information
Showing
7 changed files
with
85 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package kafka | ||
|
||
import ( | ||
"github.com/Shopify/sarama" | ||
"github.com/influxdb/influxdb/client" | ||
"github.com/influxdb/telegraf/outputs" | ||
) | ||
|
||
type Kafka struct { | ||
// Kafka brokers to send metrics to | ||
Brokers []string | ||
|
||
producer sarama.SyncProducer | ||
} | ||
|
||
var sampleConfig = ` | ||
# URLs of kafka brokers | ||
brokers = ["localhost:9092"] | ||
` | ||
|
||
func (k *Kafka) Connect() error { | ||
producer, err := sarama.NewSyncProducer(k.Brokers, nil) | ||
if err != nil { | ||
return err | ||
} | ||
k.producer = producer | ||
return nil | ||
} | ||
|
||
func (k *Kafka) Close() error { | ||
return k.producer.Close() | ||
} | ||
|
||
func (k *Kafka) SampleConfig() string { | ||
return sampleConfig | ||
} | ||
|
||
func (k *Kafka) Description() string { | ||
return "Configuration for the Kafka server to send metrics to" | ||
} | ||
|
||
func (k *Kafka) Write(bp client.BatchPoints) error { | ||
if len(bp.Points) == 0 { | ||
return nil | ||
} | ||
return nil | ||
} | ||
|
||
func init() { | ||
outputs.Add("kafka", func() outputs.Output { | ||
return &Kafka{} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package kafka | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestFoo(t *testing.T) { | ||
require.NoError(t, nil) | ||
} |