yats.git

ref: ed845cee69a30ab261c3f6a76ae4787dae359f64

server/rest/rest-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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
 * Yats - yats
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Paolo Lulli <kevwe.com>
 * @copyright Paolo Lulli 2024
 */

package rest

import (
	"fmt"
	"github.com/gin-gonic/gin"
	"net/http"
	"time"
	"yats-server/db"
	"yats-server/model"
)

func WriteMetricAt(c *gin.Context) {
	var metric model.MetricModel

	if err := c.BindJSON(&metric); err != nil {
		c.IndentedJSON(http.StatusAccepted, gin.H{"ret": "-1"})
		return
	}

	clientCN := GetClientCN(c)
	fmt.Printf("%s / %s / %s", clientCN, metric.Name, metric.Value)

	if metric.Mtime == 0 {
		unixTimeUTC := time.Unix(metric.Mtime, 0)
		db.SaveMetricAt(clientCN, unixTimeUTC, metric.Name, metric.Value)
	} else {
		db.SaveMetric(clientCN, metric.Name, metric.Value)
	}

	c.IndentedJSON(http.StatusAccepted, gin.H{"ret": "OK"})
}

func GetMetrics(c *gin.Context) {
	var metric model.MetricSearchRequest

	if err := c.BindJSON(&metric); err != nil {
		c.IndentedJSON(http.StatusAccepted, gin.H{"ret": "-1"})
		return
	}

	clientCN := GetClientCN(c)
	fmt.Printf("%s / %s ", clientCN, metric.Name)

	var metricsPack []model.MetricModel

	if metric.To == 0 {
		unixTimeUTC := time.Unix(metric.From, 0)
		timeAsBytes, _ := unixTimeUTC.UTC().MarshalText()
		metricsPack = db.MetricsFrom(db.Session, clientCN, metric.Name, string(timeAsBytes), 100)
	} else if metric.From != 0 {
		fromUnixTimeUTC := time.Unix(metric.From, 0)
		toUnixTimeUTC := time.Unix(metric.To, 0)
		fromInBytes, _ := fromUnixTimeUTC.UTC().MarshalText()
		toInBytes, _ := toUnixTimeUTC.UTC().MarshalText()
		metricsPack = db.MetricsBetween(db.Session, clientCN, metric.Name, string(fromInBytes), string(toInBytes), 100)
	}
	c.IndentedJSON(http.StatusAccepted, gin.H{"ret": "OK", "content": metricsPack})
}