Skip to content

Commit

Permalink
move tags to influxdb struct, update all sample configs
Browse files Browse the repository at this point in the history
  • Loading branch information
jipperinbham authored and sparrc committed Aug 12, 2015
1 parent 16c424d commit 53969ae
Show file tree
Hide file tree
Showing 6 changed files with 112 additions and 54 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pkg/
tivan
.vagrant
telegraf
85 changes: 56 additions & 29 deletions agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ import (
"sync"
"time"

"github.com/influxdb/influxdb/client"
"github.com/influxdb/telegraf/outputs"
"github.com/influxdb/telegraf/plugins"
)

type runningOutput struct {
name string
output outputs.Output
}

type runningPlugin struct {
name string
plugin plugins.Plugin
Expand All @@ -32,9 +37,8 @@ type Agent struct {

Config *Config

outputs []*runningOutput
plugins []*runningPlugin

conn *client.Client
}

// NewAgent returns an Agent struct based off the given Config
Expand Down Expand Up @@ -66,27 +70,37 @@ func NewAgent(config *Config) (*Agent, error) {

// Connect connects to the agent's config URL
func (a *Agent) Connect() error {
config := a.Config

u, err := url.Parse(config.URL)
if err != nil {
return err
for _, o := range a.outputs {
err := o.output.Connect(a.Hostname)
if err != nil {
return err
}
}
return nil
}

c, err := client.NewClient(client.Config{
URL: *u,
Username: config.Username,
Password: config.Password,
UserAgent: config.UserAgent,
Timeout: config.Timeout.Duration,
})
func (a *Agent) LoadOutputs() ([]string, error) {
var names []string

if err != nil {
return err
for _, name := range a.Config.OutputsDeclared() {
creator, ok := outputs.Outputs[name]
if !ok {
return nil, fmt.Errorf("Undefined but requested output: %s", name)
}

output := creator()

err := a.Config.ApplyOutput(name, output)
if err != nil {
return nil, err
}

a.outputs = append(a.outputs, &runningOutput{name, output})
names = append(names, name)
}

_, err = c.Query(client.Query{
Command: fmt.Sprintf("CREATE DATABASE %s", config.Database),
Command: fmt.Sprintf("CREATE DATABASE telegraf"),
})

if err != nil && !strings.Contains(err.Error(), "database already exists") {
Expand All @@ -95,7 +109,7 @@ func (a *Agent) Connect() error {

a.conn = c

return nil
return names, nil
}

// LoadPlugins loads the agent's plugins
Expand All @@ -114,6 +128,8 @@ func (a *Agent) LoadPlugins(pluginsFilter string) ([]string, error) {
return nil, fmt.Errorf("Undefined but requested plugin: %s", name)
}

plugin := creator()

isPluginEnabled := false
if len(filters) > 0 {
for _, runeValue := range filters {
Expand Down Expand Up @@ -205,8 +221,7 @@ func (a *Agent) crank() error {
acc.Time = time.Now()
acc.Database = a.Config.Database

_, err := a.conn.Write(acc.BatchPoints)
return err
return a.flush(&acc)
}

func (a *Agent) crankSeparate(shutdown chan struct{}, plugin *runningPlugin) error {
Expand All @@ -228,7 +243,10 @@ func (a *Agent) crankSeparate(shutdown chan struct{}, plugin *runningPlugin) err
acc.Time = time.Now()
acc.Database = a.Config.Database

a.conn.Write(acc.BatchPoints)
err = a.flush(&acc)
if err != nil {
return err
}

select {
case <-shutdown:
Expand All @@ -239,6 +257,22 @@ func (a *Agent) crankSeparate(shutdown chan struct{}, plugin *runningPlugin) err
}
}

func (a *Agent) flush(bp *BatchPoints) error {
var wg sync.WaitGroup
var outerr error
for _, o := range a.outputs {
wg.Add(1)
go func(ro *runningOutput) {
defer wg.Done()
outerr = ro.output.Write(bp.BatchPoints)
}(o)
}

wg.Wait()

return outerr
}

// TestAllPlugins verifies that we can 'Gather' from all plugins with the
// default configuration
func (a *Agent) TestAllPlugins() error {
Expand Down Expand Up @@ -297,13 +331,6 @@ func (a *Agent) Test() error {

// Run runs the agent daemon, gathering every Interval
func (a *Agent) Run(shutdown chan struct{}) error {
if a.conn == nil {
err := a.Connect()
if err != nil {
return err
}
}

var wg sync.WaitGroup

for _, plugin := range a.plugins {
Expand Down
11 changes: 6 additions & 5 deletions cmd/telegraf/telegraf.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ func main() {
ag.Debug = true
}

outputs, err := ag.LoadOutputs()
if err != nil {
log.Fatal(err)
}

plugins, err := ag.LoadPlugins(*fPLuginsFilter)
if err != nil {
log.Fatal(err)
Expand Down Expand Up @@ -99,18 +104,14 @@ func main() {
}()

log.Printf("Starting Telegraf (version %s)\n", Version)
log.Printf("Loaded outputs: %s", strings.Join(outputs, " "))
log.Printf("Loaded plugins: %s", strings.Join(plugins, " "))
if ag.Debug {
log.Printf("Debug: enabled")
log.Printf("Agent Config: Interval:%s, Debug:%#v, Hostname:%#v\n",
ag.Interval, ag.Debug, ag.Hostname)
}

if config.URL != "" {
log.Printf("Sending metrics to: %s", config.URL)
log.Printf("Tags enabled: %v", config.ListTags())
}

if *fPidfile != "" {
f, err := os.Create(*fPidfile)
if err != nil {
Expand Down
59 changes: 43 additions & 16 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,24 @@ func (d *Duration) UnmarshalTOML(b []byte) error {
// will be logging to, as well as all the plugins that the user has
// specified
type Config struct {
URL string
Username string
Password string
Database string
UserAgent string
Timeout Duration
Tags map[string]string

agent *ast.Table
plugins map[string]*ast.Table
outputs map[string]*ast.Table
}

// Plugins returns the configured plugins as a map of name -> plugin toml
func (c *Config) Plugins() map[string]*ast.Table {
return c.plugins
}
type TagFilter struct {
Name string
Filter []string
}

// Outputs returns the configured outputs as a map of name -> output toml
func (c *Config) Outputs() map[string]*ast.Table {
return c.outputs
}

// The name of a tag, and the values on which to filter
type TagFilter struct {
Expand All @@ -64,6 +66,9 @@ type ConfiguredPlugin struct {

Drop []string
Pass []string
TagDrop []TagFilter

TagPass []TagFilter

TagDrop []TagFilter
TagPass []TagFilter
Expand Down Expand Up @@ -122,6 +127,13 @@ func (cp *ConfiguredPlugin) ShouldPass(measurement string, tags map[string]strin
return true
}

// ApplyOutput loads the toml config into the given interface
func (c *Config) ApplyOutput(name string, v interface{}) error {
if c.outputs[name] != nil {
return toml.UnmarshalTable(c.outputs[name], v)
}
}

// ApplyAgent loads the toml config into the given interface
func (c *Config) ApplyAgent(v interface{}) error {
if c.agent != nil {
Expand Down Expand Up @@ -225,6 +237,15 @@ func (c *Config) ApplyPlugin(name string, v interface{}) (*ConfiguredPlugin, err

// PluginsDeclared returns the name of all plugins declared in the config.
func (c *Config) PluginsDeclared() []string {
return declared(c.plugins)
}

// OutputsDeclared returns the name of all outputs declared in the config.
func (c *Config) OutputsDeclared() []string {
return declared(c.outputs)
}

func declared(endpoints map[string]*ast.Table) []string {
var plugins []string

for name := range c.plugins {
Expand Down Expand Up @@ -257,6 +278,7 @@ func LoadConfig(path string) (*Config, error) {

c := &Config{
plugins: make(map[string]*ast.Table),
outputs: make(map[string]*ast.Table),
}

for name, val := range tbl.Fields {
Expand All @@ -266,13 +288,16 @@ func LoadConfig(path string) (*Config, error) {
}

switch name {
case "influxdb":
err := toml.UnmarshalTable(subtbl, c)
if err != nil {
return nil, err
}
case "agent":
c.agent = subtbl
case "outputs":
for outputName, outputVal := range subtbl.Fields {
outputSubtbl, ok := outputVal.(*ast.Table)
if !ok {
return nil, errInvalidConfig
}
c.outputs[outputName] = outputSubtbl
}
default:
c.plugins[name] = subtbl
}
Expand Down Expand Up @@ -327,8 +352,11 @@ var header = `# Telegraf configuration
# NOTE: The configuration has a few required parameters. They are marked
# with 'required'. Be sure to edit those to make this configuration work.
# OUTPUTS
[outputs]
# Configuration for influxdb server to send metrics to
[influxdb]
[outputs.influxdb]
# The full HTTP endpoint URL for your InfluxDB instance
url = "http://localhost:8086" # required.
Expand All @@ -345,12 +373,11 @@ database = "telegraf" # required.
# Set the user agent for the POSTs (can be useful for log differentiation)
# user_agent = "telegraf"
# tags = { "dc": "us-east-1" }
# Tags can also be specified via a normal map, but only one form at a time:
# [influxdb.tags]
# dc = "us-east-1"
# tags = { "dc" = "us-east-1" }
# Configuration for telegraf itself
# [agent]
Expand Down
3 changes: 1 addition & 2 deletions etc/config.sample.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,11 @@ database = "telegraf" # required.

# Set the user agent for the POSTs (can be useful for log differentiation)
# user_agent = "telegraf"
# tags = { "dc": "us-east-1" }

# Tags can also be specified via a normal map, but only one form at a time:

# [influxdb.tags]
# dc = "us-east-1"
# tags = { "dc" = "us-east-1" }

# Configuration for telegraf itself
# [agent]
Expand Down
7 changes: 5 additions & 2 deletions testdata/influx.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ interval = "5s"
http = ":11213"
debug = true

[influxdb]
[outputs]
[outputs.influxdb]
url = "http://localhost:8086"
username = "root"
password = "root"
database = "telegraf"
tags = { dc = "us-phx-1" }

[tags.influxdb]
tags = { "dc" = "us-phx-1" }

[redis]
address = ":6379"

0 comments on commit 53969ae

Please sign in to comment.