fix imports first pass
This commit is contained in:
parent
46a22c33c2
commit
69d6332ade
|
|
@ -3,7 +3,7 @@ package influxunifi
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package influxunifi
|
package influxunifi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// batchClient generates Unifi Client datapoints for InfluxDB.
|
// batchClient generates Unifi Client datapoints for InfluxDB.
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ package influxunifi
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// These constants are used as names for printed/logged counters.
|
// These constants are used as names for printed/logged counters.
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
influx "github.com/influxdata/influxdb1-client/v2"
|
influx "github.com/influxdata/influxdb1-client/v2"
|
||||||
"github.com/unpoller/poller"
|
"github.com/unpoller/unpoller/core/poller"
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
"github.com/unpoller/webserver"
|
"github.com/unpoller/webserver"
|
||||||
"golift.io/cnfg"
|
"golift.io/cnfg"
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
influx "github.com/influxdata/influxdb1-client/v2"
|
influx "github.com/influxdata/influxdb1-client/v2"
|
||||||
"github.com/unpoller/poller"
|
"github.com/unpoller/unpoller/core/poller"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Report is returned to the calling procedure after everything is processed.
|
// Report is returned to the calling procedure after everything is processed.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package influxunifi
|
package influxunifi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// batchSite generates Unifi Sites' datapoints for InfluxDB.
|
// batchSite generates Unifi Sites' datapoints for InfluxDB.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package influxunifi
|
package influxunifi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// uapT is used as a name for printed/logged counters.
|
// uapT is used as a name for printed/logged counters.
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// udmT is used as a name for printed/logged counters.
|
// udmT is used as a name for printed/logged counters.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package influxunifi
|
package influxunifi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// usgT is used as a name for printed/logged counters.
|
// usgT is used as a name for printed/logged counters.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package influxunifi
|
package influxunifi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// uswT is used as a name for printed/logged counters.
|
// uswT is used as a name for printed/logged counters.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package influxunifi
|
package influxunifi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/unpoller/unifi"
|
"github.com/unpoller/unpoller/core/unifi"
|
||||||
)
|
)
|
||||||
|
|
||||||
// uxgT is used as a name for printed/logged counters.
|
// uxgT is used as a name for printed/logged counters.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue