-
Notifications
You must be signed in to change notification settings - Fork 34
/
ec2.go
126 lines (111 loc) · 4.04 KB
/
ec2.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Copyright 2018 MSolution.IO
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package reports
import (
"context"
"database/sql"
"errors"
"strings"
"time"
"github.com/trackit/jsonlog"
"github.com/trackit/trackit-server/aws"
"github.com/trackit/trackit-server/aws/usageReports/history"
"github.com/trackit/trackit-server/usageReports/ec2"
"github.com/trackit/trackit-server/users"
)
var ec2InstanceFormat = [][]cell{{
newCell("", 7).addStyle(textCenter, backgroundGrey),
newCell("CPU (Percentage)", 2).addStyle(textCenter, textBold, backgroundGrey),
newCell("Network (Bytes)", 2).addStyle(textCenter, textBold, backgroundGrey),
newCell("I/O (Bytes)", 2).addStyle(textCenter, textBold, backgroundGrey),
newCell("", 2).addStyle(textCenter, backgroundGrey),
}, {
newCell("Account").addStyle(textCenter, textBold, backgroundGrey),
newCell("ID").addStyle(textCenter, textBold, backgroundGrey),
newCell("Name").addStyle(textCenter, textBold, backgroundGrey),
newCell("Type").addStyle(textCenter, textBold, backgroundGrey),
newCell("Region").addStyle(textCenter, textBold, backgroundGrey),
newCell("Purchasing option").addStyle(textCenter, textBold, backgroundGrey),
newCell("Cost").addStyle(textCenter, textBold, backgroundGrey),
newCell("Average").addStyle(textCenter, textBold, backgroundGrey),
newCell("Peak").addStyle(textCenter, textBold, backgroundGrey),
newCell("In").addStyle(textCenter, textBold, backgroundGrey),
newCell("Out").addStyle(textCenter, textBold, backgroundGrey),
newCell("Read").addStyle(textCenter, textBold, backgroundGrey),
newCell("Write").addStyle(textCenter, textBold, backgroundGrey),
newCell("Key Pair").addStyle(textCenter, textBold, backgroundGrey),
newCell("Tags").addStyle(textCenter, textBold, backgroundGrey),
}}
func formatEc2Instance(report ec2.InstanceReport) []cell {
instance := report.Instance
name := ""
if value, ok := instance.Tags["Name"]; ok {
name = value
}
tags := formatTags(instance.Tags)
return []cell{
newCell(report.Account),
newCell(instance.Id),
newCell(name),
newCell(instance.Type),
newCell(instance.Region),
newCell(instance.Purchasing),
newCell(getTotal(instance.Costs)),
newCell(formatMetricPercentage(instance.Stats.Cpu.Average)),
newCell(formatMetricPercentage(instance.Stats.Cpu.Peak)),
newCell(formatMetric(instance.Stats.Network.In)),
newCell(formatMetric(instance.Stats.Network.Out)),
newCell(getTotal(instance.Stats.Volumes.Read)),
newCell(getTotal(instance.Stats.Volumes.Write)),
newCell(instance.KeyPair),
newCell(strings.Join(tags, ";")),
}
}
func getEc2UsageReport(ctx context.Context, aas []aws.AwsAccount, date time.Time, tx *sql.Tx) (data [][]cell, err error) {
logger := jsonlog.LoggerFromContextOrDefault(ctx)
data = make([][]cell, 0, len(ec2InstanceFormat))
for _, headerRow := range ec2InstanceFormat {
data = append(data, headerRow)
}
if date.IsZero() {
date, _ = history.GetHistoryDate()
}
if len(aas) < 1 {
err = errors.New("Missing AWS Account for EC2 Usage Report")
return
}
identities := getIdentities(aas)
user, err := users.GetUserWithId(tx, aas[0].UserId)
if err != nil {
return
}
parameters := ec2.Ec2QueryParams{
AccountList: identities,
Date: date,
}
logger.Debug("Getting EC2 Usage Report for accounts", map[string]interface{}{
"accounts": aas,
})
_, reports, err := ec2.GetEc2Data(ctx, parameters, user, tx)
if err != nil {
return
}
if reports != nil && len(reports) > 0 {
for _, report := range reports {
row := formatEc2Instance(report)
data = append(data, row)
}
}
return
}