forked from heartbeatsjp/azmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metric.go
94 lines (79 loc) · 2.23 KB
/
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package main
import (
"context"
"fmt"
"os"
"strings"
"github.com/urfave/cli"
)
// Exit codes are int values that represent an exit code for a particular error.
const (
ExitCodeError = 10 + iota
)
// Metric prints metric data
func Metric(c *cli.Context) error {
dataInput := buildFetchMetricDataInput(c)
defInput := buildFetchMetricDefinitionsInput(c)
client, err := NewClient(c.GlobalString("subscription-id"))
if err != nil {
return cli.NewExitError(fmt.Sprintf("construct api client failed: %s", err.Error()), ExitCodeError)
}
stdout, stderr, merr := _metric(client, dataInput, defInput, c.String("prefix"))
if merr != nil {
return merr
}
fmt.Fprint(os.Stderr, stderr)
fmt.Fprint(os.Stdout, stdout)
return nil
}
func _metric(client *Client, dataInput FetchMetricDataInput, defInput FetchMetricDefinitionsInput, prefix string) (string, string, error) {
var stderr string
if len(dataInput.metricNames) < 1 {
definitions, err := FetchMetricDefinitions(context.TODO(), client, defInput)
if err != nil {
return "", "", cli.NewExitError(fmt.Sprintf("fetch metric definitions failed: %s", err.Error()), ExitCodeError)
}
for _, d := range *definitions {
if *d.IsDimensionRequired {
stderr += fmt.Sprintf("skip fetch metric: %s does not accept zero dimension case\n", *d.Name.Value)
} else {
dataInput.metricNames = append(dataInput.metricNames, *d.Name.Value)
}
}
}
metrics, err := FetchMetricData(context.TODO(), client, dataInput)
if err != nil {
return "", "", cli.NewExitError(fmt.Sprintf("fetch metric data failed: %s", err.Error()), ExitCodeError)
}
var stdout string
for k, v := range metrics {
metricKey := strings.Replace(
strings.Join(
[]string{
prefix,
dataInput.namespace,
dataInput.resourceGroup,
dataInput.resource,
k,
dataInput.aggregation,
},
".",
),
"/", "", -1,
)
metricKey = strings.Replace(metricKey, " ", "", -1)
var data float64
switch dataInput.aggregation {
case "Total":
data = *v.Total
case "Average":
data = *v.Average
case "Maximum":
data = *v.Maximum
case "Minimum":
data = *v.Minimum
}
stdout += fmt.Sprintf("%s\t%f\t%d\n", metricKey, data, v.TimeStamp.Unix())
}
return stdout, stderr, nil
}