-
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.
Followup to issue #77, create configured database name from toml file
- Loading branch information
Showing
4 changed files
with
803 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package all | ||
|
||
import ( | ||
_ "github.com/influxdb/telegraf/outputs/influxdb" | ||
) |
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,67 @@ | ||
package influxdb | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"net/url" | ||
"strings" | ||
|
||
"github.com/influxdb/influxdb/client" | ||
t "github.com/influxdb/telegraf" | ||
"github.com/influxdb/telegraf/outputs" | ||
) | ||
|
||
type InfluxDB struct { | ||
URL string | ||
Username string | ||
Password string | ||
Database string | ||
UserAgent string | ||
Timeout t.Duration | ||
|
||
conn *client.Client | ||
} | ||
|
||
func (i *InfluxDB) Connect() error { | ||
u, err := url.Parse(i.URL) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
c, err := client.NewClient(client.Config{ | ||
URL: *u, | ||
Username: i.Username, | ||
Password: i.Password, | ||
UserAgent: i.UserAgent, | ||
Timeout: i.Timeout.Duration, | ||
}) | ||
|
||
if err != nil { | ||
return err | ||
} | ||
|
||
_, err = c.Query(client.Query{ | ||
Command: fmt.Sprintf("CREATE DATABASE telegraf"), | ||
}) | ||
|
||
if err != nil && !strings.Contains(err.Error(), "database already exists") { | ||
log.Fatal(err) | ||
} | ||
|
||
i.conn = c | ||
return nil | ||
} | ||
|
||
func (i *InfluxDB) Write(bp client.BatchPoints) error { | ||
bp.Database = i.Database | ||
if _, err := i.conn.Write(bp); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func init() { | ||
outputs.Add("influxdb", func() outputs.Output { | ||
return &InfluxDB{} | ||
}) | ||
} |
Oops, something went wrong.