Skip to content

Commit 9a79491

Browse files
authored
Linter fixes for plugins/inputs/[de]* (influxdata#9379)
1 parent 1ba865f commit 9a79491

23 files changed

+187
-171
lines changed

.golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ linters-settings:
5050
- name: error-return
5151
- name: error-strings
5252
- name: errorf
53-
- name: flag-parameter
53+
# - name: flag-parameter #disable for now
5454
- name: function-result-limit
5555
arguments: [ 3 ]
5656
- name: identical-branches

plugins/inputs/dcos/client.go

+17-17
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func (c *ClusterClient) Login(ctx context.Context, sa *ServiceAccount) (*AuthTok
156156
return nil, err
157157
}
158158

159-
loc := c.url("/acs/api/v1/auth/login")
159+
loc := c.toURL("/acs/api/v1/auth/login")
160160
req, err := http.NewRequest("POST", loc, bytes.NewBuffer(octets))
161161
if err != nil {
162162
return nil, err
@@ -208,7 +208,7 @@ func (c *ClusterClient) Login(ctx context.Context, sa *ServiceAccount) (*AuthTok
208208

209209
func (c *ClusterClient) GetSummary(ctx context.Context) (*Summary, error) {
210210
summary := &Summary{}
211-
err := c.doGet(ctx, c.url("/mesos/master/state-summary"), summary)
211+
err := c.doGet(ctx, c.toURL("/mesos/master/state-summary"), summary)
212212
if err != nil {
213213
return nil, err
214214
}
@@ -220,7 +220,7 @@ func (c *ClusterClient) GetContainers(ctx context.Context, node string) ([]Conta
220220
list := []string{}
221221

222222
path := fmt.Sprintf("/system/v1/agent/%s/metrics/v0/containers", node)
223-
err := c.doGet(ctx, c.url(path), &list)
223+
err := c.doGet(ctx, c.toURL(path), &list)
224224
if err != nil {
225225
return nil, err
226226
}
@@ -233,10 +233,10 @@ func (c *ClusterClient) GetContainers(ctx context.Context, node string) ([]Conta
233233
return containers, nil
234234
}
235235

236-
func (c *ClusterClient) getMetrics(ctx context.Context, url string) (*Metrics, error) {
236+
func (c *ClusterClient) getMetrics(ctx context.Context, address string) (*Metrics, error) {
237237
metrics := &Metrics{}
238238

239-
err := c.doGet(ctx, url, metrics)
239+
err := c.doGet(ctx, address, metrics)
240240
if err != nil {
241241
return nil, err
242242
}
@@ -246,21 +246,21 @@ func (c *ClusterClient) getMetrics(ctx context.Context, url string) (*Metrics, e
246246

247247
func (c *ClusterClient) GetNodeMetrics(ctx context.Context, node string) (*Metrics, error) {
248248
path := fmt.Sprintf("/system/v1/agent/%s/metrics/v0/node", node)
249-
return c.getMetrics(ctx, c.url(path))
249+
return c.getMetrics(ctx, c.toURL(path))
250250
}
251251

252252
func (c *ClusterClient) GetContainerMetrics(ctx context.Context, node, container string) (*Metrics, error) {
253253
path := fmt.Sprintf("/system/v1/agent/%s/metrics/v0/containers/%s", node, container)
254-
return c.getMetrics(ctx, c.url(path))
254+
return c.getMetrics(ctx, c.toURL(path))
255255
}
256256

257257
func (c *ClusterClient) GetAppMetrics(ctx context.Context, node, container string) (*Metrics, error) {
258258
path := fmt.Sprintf("/system/v1/agent/%s/metrics/v0/containers/%s/app", node, container)
259-
return c.getMetrics(ctx, c.url(path))
259+
return c.getMetrics(ctx, c.toURL(path))
260260
}
261261

262-
func createGetRequest(url string, token string) (*http.Request, error) {
263-
req, err := http.NewRequest("GET", url, nil)
262+
func createGetRequest(address string, token string) (*http.Request, error) {
263+
req, err := http.NewRequest("GET", address, nil)
264264
if err != nil {
265265
return nil, err
266266
}
@@ -273,8 +273,8 @@ func createGetRequest(url string, token string) (*http.Request, error) {
273273
return req, nil
274274
}
275275

276-
func (c *ClusterClient) doGet(ctx context.Context, url string, v interface{}) error {
277-
req, err := createGetRequest(url, c.token)
276+
func (c *ClusterClient) doGet(ctx context.Context, address string, v interface{}) error {
277+
req, err := createGetRequest(address, c.token)
278278
if err != nil {
279279
return err
280280
}
@@ -304,7 +304,7 @@ func (c *ClusterClient) doGet(ctx context.Context, url string, v interface{}) er
304304

305305
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
306306
return &APIError{
307-
URL: url,
307+
URL: address,
308308
StatusCode: resp.StatusCode,
309309
Title: resp.Status,
310310
}
@@ -318,10 +318,10 @@ func (c *ClusterClient) doGet(ctx context.Context, url string, v interface{}) er
318318
return err
319319
}
320320

321-
func (c *ClusterClient) url(path string) string {
322-
url := *c.clusterURL
323-
url.Path = path
324-
return url.String()
321+
func (c *ClusterClient) toURL(path string) string {
322+
clusterURL := *c.clusterURL
323+
clusterURL.Path = path
324+
return clusterURL.String()
325325
}
326326

327327
func (c *ClusterClient) createLoginToken(sa *ServiceAccount) (string, error) {

plugins/inputs/dcos/dcos.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"time"
1111

1212
jwt "github.com/dgrijalva/jwt-go/v4"
13+
1314
"github.com/influxdata/telegraf"
1415
"github.com/influxdata/telegraf/config"
1516
"github.com/influxdata/telegraf/filter"
@@ -352,13 +353,13 @@ func (d *DCOS) createClient() (Client, error) {
352353
return nil, err
353354
}
354355

355-
url, err := url.Parse(d.ClusterURL)
356+
address, err := url.Parse(d.ClusterURL)
356357
if err != nil {
357358
return nil, err
358359
}
359360

360361
client := NewClusterClient(
361-
url,
362+
address,
362363
time.Duration(d.ResponseTimeout),
363364
d.MaxConnections,
364365
tlsCfg,

plugins/inputs/directory_monitor/directory_monitor.go

+10-12
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@ package directory_monitor
22

33
import (
44
"bufio"
5+
"compress/gzip"
56
"context"
67
"errors"
78
"fmt"
9+
"io"
10+
"io/ioutil"
11+
"os"
12+
"path/filepath"
813
"regexp"
14+
"sync"
915
"time"
1016

17+
"golang.org/x/sync/semaphore"
18+
"gopkg.in/djherbis/times.v1"
19+
1120
"github.com/influxdata/telegraf"
1221
"github.com/influxdata/telegraf/config"
1322
"github.com/influxdata/telegraf/plugins/inputs"
1423
"github.com/influxdata/telegraf/plugins/parsers"
1524
"github.com/influxdata/telegraf/plugins/parsers/csv"
1625
"github.com/influxdata/telegraf/selfstat"
17-
"golang.org/x/sync/semaphore"
18-
"gopkg.in/djherbis/times.v1"
19-
20-
"compress/gzip"
21-
"io"
22-
"io/ioutil"
23-
"os"
24-
"path/filepath"
25-
"sync"
2626
)
2727

2828
const sampleConfig = `
@@ -263,9 +263,7 @@ func (monitor *DirectoryMonitor) parseFile(parser parsers.Parser, reader io.Read
263263
if err != nil {
264264
return err
265265
}
266-
if firstLine {
267-
firstLine = false
268-
}
266+
firstLine = false
269267

270268
if err := monitor.sendMetrics(metrics); err != nil {
271269
return err

plugins/inputs/directory_monitor/directory_monitor_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ import (
88
"path/filepath"
99
"testing"
1010

11+
"github.com/stretchr/testify/require"
12+
1113
"github.com/influxdata/telegraf/plugins/parsers"
1214
"github.com/influxdata/telegraf/testutil"
13-
"github.com/stretchr/testify/require"
1415
)
1516

1617
func TestCSVGZImport(t *testing.T) {
@@ -77,8 +78,9 @@ func TestCSVGZImport(t *testing.T) {
7778

7879
// File should have gone back to the test directory, as we configured.
7980
_, err = os.Stat(filepath.Join(finishedDirectory, testCsvFile))
80-
_, err = os.Stat(filepath.Join(finishedDirectory, testCsvGzFile))
81+
require.NoError(t, err)
8182

83+
_, err = os.Stat(filepath.Join(finishedDirectory, testCsvGzFile))
8284
require.NoError(t, err)
8385
}
8486

plugins/inputs/disk/disk.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type DiskStats struct {
1313
ps system.PS
1414

1515
// Legacy support
16-
Mountpoints []string `toml:"mountpoints"`
16+
LegacyMountPoints []string `toml:"mountpoints"`
1717

1818
MountPoints []string `toml:"mount_points"`
1919
IgnoreFS []string `toml:"ignore_fs"`
@@ -38,8 +38,8 @@ func (ds *DiskStats) SampleConfig() string {
3838

3939
func (ds *DiskStats) Gather(acc telegraf.Accumulator) error {
4040
// Legacy support:
41-
if len(ds.Mountpoints) != 0 {
42-
ds.MountPoints = ds.Mountpoints
41+
if len(ds.LegacyMountPoints) != 0 {
42+
ds.MountPoints = ds.LegacyMountPoints
4343
}
4444

4545
disks, partitions, err := ds.ps.DiskUsage(ds.MountPoints, ds.IgnoreFS)

0 commit comments

Comments
 (0)