1234567891011121314 |
- // Copyright 2019 github.com. All rights reserved.
- // Use of this source code is governed by gitbub.com.
- package parser
- import (
- "dust-monitor/config"
- "github.com/jaryhe/gopkgs/influxdb"
- )
- func InfluxdbHandler(conf *config.Configure) {
- influxdb.Setup(conf.Influxdb.Addr, conf.Influxdb.Username, conf.Influxdb.Password)
- }
|