File: stats_test.go

package info (click to toggle)
golang-github-influxdb-enterprise-client 0.0~git20151113.0.25665cb-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 112 kB
  • sloc: makefile: 2
file content (49 lines) | stat: -rw-r--r-- 1,083 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package client_test

import (
	"fmt"
	"io/ioutil"
	"testing"

	"github.com/influxdb/enterprise-client/v1"
	"github.com/stretchr/testify/require"
)

func Test_Stats_Implements_Saveable(t *testing.T) {
	r := require.New(t)
	r.Implements((*client.Saveable)(nil), client.Stats{})
}

// Example of saving Stats data to Enterprise
func Example_saveStats() {
	c := client.New("token-goes-here")
	// override the URL for testing
	c.URL = "https://enterprise.staging.influxdata.com"

	st := client.Stats{
		ClusterID: "clus1",
		ServerID:  "serv1",
		Product:   "influxdb",
		Data: []client.StatsData{
			client.StatsData{
				Name: "engine",
				Tags: client.Tags{
					"path":    "/home/philip/.influxdb/data/_internal/monitor/1",
					"version": "bz1",
				},
				Values: client.Values{
					"blks_write":          39,
					"blks_write_bytes":    2421,
					"blks_write_bytes_c":  2202,
					"points_write":        39,
					"points_write_dedupe": 39,
				},
			},
		},
	}

	res, err := c.Save(st)
	fmt.Printf("err: %s\n", err)
	b, _ := ioutil.ReadAll(res.Body)
	fmt.Printf("b: %s\n", b)
}