aboutsummaryrefslogtreecommitdiff
path: root/influxdb.go
diff options
context:
space:
mode:
Diffstat (limited to 'influxdb.go')
-rw-r--r--influxdb.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/influxdb.go b/influxdb.go
index 03e983e..c5c1622 100644
--- a/influxdb.go
+++ b/influxdb.go
@@ -34,9 +34,7 @@ const (
"bytes_read=%d"
)
-//
// InfluxdbClient contains HTTP connection for writing logs to Influxdb.
-//
type InfluxdbClient struct {
conn *http.Client
apiWrite string
@@ -44,9 +42,7 @@ type InfluxdbClient struct {
buf bytes.Buffer
}
-//
// NewInfluxdbClient will create, initialize, and return new Influxdb client.
-//
func NewInfluxdbClient(apiWrite string) (cl *InfluxdbClient) {
cl = &InfluxdbClient{
apiWrite: apiWrite,
@@ -78,10 +74,8 @@ func (cl *InfluxdbClient) initConn() {
}
}
-//
// Forwards implement the Forwarder interface. It will write all logs to
// Influxdb.
-//
func (cl *InfluxdbClient) Forwards(halogs []*Halog) {
lsrc := "InfluxdbClient.Forwards"
err := cl.write(halogs)