yats.git

ref: b38279cd2f8b51d1467c421bd7dd764cd19172db

db/metric.go


 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
50
51
52
package db

import (
	"fmt"
	"time"

	"github.com/gocql/gocql"
)

type Metric struct {
	ID_client string    `json:"id_client"`
	Mtime     time.Time `json:"mtime"`
	Name      string    `json:"name"`
	Value     string    `json:"value"`
}

func PrintMetrics(metrics []Metric) {
	for _, metric := range metrics {
		fmt.Printf("%s\n", metric.Name)

	}
}

func LoadMetrics(session *gocql.Session) []Metric {
	var metrics []Metric
	m := map[string]interface{}{}

	iter := session.Query("SELECT  id_client, mtime, name, value FROM metric").Iter()
	for iter.MapScan(m) {
		metrics = append(metrics, Metric{
			ID_client: m["id_client"].(string),
			Mtime:     m["mtime"].(time.Time),
			Name:      m["name"].(string),
			Value:     m["value"].(string),
		})
		m = map[string]interface{}{}
	}
	return metrics
}

func SaveMetric(session *gocql.Session, idClient string, metricName string, metricValue string) {
	q := fmt.Sprintf("insert into metric ( id_client, mtime, name, value) values ('%s',toTimestamp(now()),'%s','%s');", idClient, metricName, metricValue)
	session.Query(q).Exec()
}

func SaveMetricAt(session *gocql.Session, idClient string, tstamp time.Time, metricName string, metricValue string) {

	timeAsBytes, _ := time.Now().UTC().MarshalText()

	q := fmt.Sprintf("insert into metric ( id_client, mtime, name, value) values ('%s','%s','%s','%s');", idClient, string(timeAsBytes), metricName, metricValue)
	session.Query(q).Exec()
}