forked from ike-dai/zaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzaws.go
337 lines (309 loc) · 9.38 KB
/
zaws.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
package main
import (
"encoding/json"
"flag"
"fmt"
"github.com/AlekSi/zabbix-sender"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/elb"
"net"
"os"
"strconv"
"time"
)
type Zaws struct {
Region string
AccessKeyId string
SecretKeyId string
TargetId string
MetricName string
ZabbixHost string
ZabbixPort string
AwsSession *session.Session
}
func NewZaws() *Zaws {
zaws := new(Zaws)
zaws.SetOption()
zaws.AwsSession = session.New(&aws.Config{
Region: aws.String(zaws.Region),
Credentials: credentials.NewStaticCredentials(zaws.AccessKeyId, zaws.SecretKeyId, ""),
})
return zaws
}
func (z *Zaws) SetOption() {
flag.StringVar(&z.Region, "region", "ap-northeast-1", "Set AWS region")
flag.StringVar(&z.Region, "r", "ap-northeast-1", "Set AWS region")
flag.StringVar(&z.AccessKeyId, "key", os.Getenv("AWS_ACCESS_KEY_ID"), "Set AWS API Access key id")
flag.StringVar(&z.AccessKeyId, "k", os.Getenv("AWS_ACCESS_KEY_ID"), "Set AWS API Access key id")
flag.StringVar(&z.SecretKeyId, "secret", os.Getenv("AWS_SECRET_ACCESS_KEY"), "Set AWS API Secret key id")
flag.StringVar(&z.SecretKeyId, "s", os.Getenv("AWS_SECRET_ACCESS_KEY"), "Set AWS API Secret key id")
flag.StringVar(&z.TargetId, "id", "", "Set target object id")
flag.StringVar(&z.TargetId, "i", "", "Set target object id")
flag.StringVar(&z.MetricName, "metric", "", "Set metric name")
flag.StringVar(&z.MetricName, "m", "", "Set metric name")
flag.StringVar(&z.ZabbixHost, "host", "localhost", "Set zabbix host name")
flag.StringVar(&z.ZabbixHost, "h", "localhost", "Set zabbix host name")
flag.StringVar(&z.ZabbixPort, "port", "10051", "Set zabbix host port")
flag.StringVar(&z.ZabbixPort, "p", "10051", "Set zabbix host port")
flag.Parse()
if z.AccessKeyId == "" || z.SecretKeyId == "" {
fmt.Println("[ERROR]: Please set key information")
usage()
}
}
// Declare Struct
type LldJson struct {
Data []Data `json:"data"`
}
type Data struct {
MetricName string `json:"{#METRIC.NAME},omitempty"`
MetricUnit string `json:"{#METRIC.UNIT},omitempty"`
MetricNamespace string `json:"{#METRIC.NAMESPACE},omitempty"`
InstanceName string `json:"{#INSTANCE.NAME},omitempty"`
InstanceType string `json:"{#INSTANCE.TYPE},omitempty"`
InstanceId string `json:"{#INSTANCE.ID},omitempty"`
InstancePrivateAddr string `json:"{#INSTANCE.PRIVATE.ADDR},omitempty"`
ElbName string `json:"{#ELB.NAME},omitempty"`
ElbDnsName string `json:"{#ELB.DNS.NAME},omitempty"`
}
// Common util
func usage() {
fmt.Println("Usage: zaws service method [target] [-region|-r] [-key|-k] [-secret|-s] [-id|-i] [-metric|-m] [-host|h] [-port|p]")
os.Exit(1)
}
func convert_to_lldjson_string(data []Data) string {
lld_json := LldJson{data}
convert_json, _ := json.Marshal(lld_json)
return string(convert_json)
}
// Access AWS API
func get_metric_list(sess *session.Session, identity_name, target_id string) []*cloudwatch.Metric {
svc := cloudwatch.New(sess)
params := &cloudwatch.ListMetricsInput{
Dimensions: []*cloudwatch.DimensionFilter{
{
Name: aws.String(identity_name),
Value: aws.String(target_id),
},
},
}
resp, err := svc.ListMetrics(params)
if err != nil {
fmt.Printf("[ERROR] Fail ListMetrics API call: %s \n", err.Error())
return nil
}
return resp.Metrics
}
func get_metric_stats(sess *session.Session, identity_name, target_id, metric_name, metric_namespace string) []*cloudwatch.Datapoint {
svc := cloudwatch.New(sess)
t := time.Now()
input := &cloudwatch.GetMetricStatisticsInput{
Namespace: aws.String(metric_namespace),
Statistics: []*string{aws.String("Average")},
EndTime: aws.Time(t),
Period: aws.Int64(300),
StartTime: aws.Time(t.Add(time.Duration(-10) * time.Minute)),
MetricName: aws.String(metric_name),
Dimensions: []*cloudwatch.Dimension{
{
Name: aws.String(identity_name),
Value: aws.String(target_id),
},
},
}
value, err := svc.GetMetricStatistics(input)
if err != nil {
fmt.Printf("[ERROR] Fail GetMetricStatistics API call: %s \n", err.Error())
return nil
}
return value.Datapoints
}
func get_ec2_list(sess *session.Session) []*ec2.Instance {
var instances []*ec2.Instance
svc := ec2.New(sess)
resp, err := svc.DescribeInstances(nil)
if err != nil {
fmt.Printf("[ERROR] Fail DescribeInstances API call: %s \n", err.Error())
os.Exit(1)
}
for _, reservation := range resp.Reservations {
instances = append(instances, reservation.Instances...)
}
return instances
}
func get_elb_list(sess *session.Session) []*elb.LoadBalancerDescription {
svc := elb.New(sess)
params := &elb.DescribeLoadBalancersInput{
LoadBalancerNames: []*string{},
}
resp, err := svc.DescribeLoadBalancers(params)
if err != nil {
fmt.Printf("[ERROR] Fail DescribeLoadBalancers API call: %s \n", err.Error())
return nil
}
return resp.LoadBalancerDescriptions
}
// zaws method
func (z *Zaws) ShowEc2List() {
list := make([]Data, 0)
instances := get_ec2_list(z.AwsSession)
for _, instance := range instances {
data := Data{InstanceType: *instance.InstanceType, InstanceId: *instance.InstanceId}
if instance.PrivateIpAddress != nil {
data.InstancePrivateAddr = *instance.PrivateIpAddress
}
for _, tag := range instance.Tags {
if *tag.Key == "Name" {
data.InstanceName = *tag.Value
}
}
if data.InstanceName == "" {
data.InstanceName = *instance.InstanceId
}
list = append(list, data)
}
fmt.Printf(convert_to_lldjson_string(list))
}
func (z *Zaws) ShowElbList() {
list := make([]Data, 0)
elbs := get_elb_list(z.AwsSession)
for _, elb := range elbs {
data := Data{ElbName: *elb.LoadBalancerName, ElbDnsName: *elb.DNSName}
list = append(list, data)
}
fmt.Printf(convert_to_lldjson_string(list))
}
func (z *Zaws) ShowEC2CloudwatchMetricsList() {
list := make([]Data, 0)
metrics := get_metric_list(z.AwsSession, "InstanceId", z.TargetId)
for _, metric := range metrics {
datapoints := get_metric_stats(z.AwsSession, "InstanceId", z.TargetId, *metric.MetricName, *metric.Namespace)
data := Data{MetricName: *metric.MetricName, MetricNamespace: *metric.Namespace}
if len(datapoints) > 0 {
data.MetricUnit = *datapoints[0].Unit
}
list = append(list, data)
}
fmt.Printf(convert_to_lldjson_string(list))
}
func (z *Zaws) ShowELBCloudwatchMetricsList() {
list := make([]Data, 0)
metrics := get_metric_list(z.AwsSession, "LoadBalancerName", z.TargetId)
for _, metric := range metrics {
datapoints := get_metric_stats(z.AwsSession, "LoadBalancerName", z.TargetId, *metric.MetricName, *metric.Namespace)
metric_name := *metric.MetricName
for _, dimension := range metric.Dimensions {
if *dimension.Name == "AvailabilityZone" {
metric_name = *metric.MetricName + "." + *dimension.Value
break
}
}
data := Data{MetricName: metric_name, MetricNamespace: *metric.Namespace}
if len(datapoints) > 0 {
data.MetricUnit = *datapoints[0].Unit
}
list = append(list, data)
}
fmt.Printf(convert_to_lldjson_string(list))
}
func (z *Zaws) SendEc2MetricStats() {
z.SendMetricStats("InstanceId")
}
func (z *Zaws) SendElbMetricStats() {
z.SendMetricStats("LoadBalancerName")
}
func (z *Zaws) SendMetricStats(identity_name string) {
var send_data []zabbix_sender.DataItem
metrics := get_metric_list(z.AwsSession, identity_name, z.TargetId)
for _, metric := range metrics {
datapoints := get_metric_stats(z.AwsSession, identity_name, z.TargetId, *metric.MetricName, *metric.Namespace)
metric_name := *metric.MetricName
for _, dimension := range metric.Dimensions {
if *dimension.Name == "AvailabilityZone" {
metric_name = *metric.MetricName + "." + *dimension.Value
break
}
}
if len(datapoints) > 0 {
data_time := *datapoints[0].Timestamp
send_data = append(send_data, zabbix_sender.DataItem{Hostname: z.TargetId, Key: "cloudwatch.metric[" + metric_name + "]", Value: strconv.FormatFloat(*datapoints[0].Average, 'f', 4, 64), Timestamp: data_time.Unix()})
}
}
addr, _ := net.ResolveTCPAddr("tcp", z.ZabbixHost+":"+z.ZabbixPort)
res, err := zabbix_sender.Send(addr, send_data)
if err != nil {
fmt.Printf("[ERROR]: zabbix sender error!: %s", err)
os.Exit(1)
}
fmt.Printf("[INFO]: Successful sending data to Zabbix: resp", res)
}
func main() {
if len(os.Args) < 3 {
usage()
}
switch os.Args[1] {
case "ec2":
switch os.Args[2] {
case "list":
os.Args = os.Args[2:]
zaws := NewZaws()
zaws.ShowEc2List()
default:
usage()
}
case "elb":
switch os.Args[2] {
case "list":
os.Args = os.Args[2:]
zaws := NewZaws()
zaws.ShowElbList()
default:
usage()
}
case "cloudwatch":
switch os.Args[2] {
case "list":
if len(os.Args) < 4 {
usage()
}
switch os.Args[3] {
case "ec2":
os.Args = os.Args[3:]
zaws := NewZaws()
zaws.ShowEC2CloudwatchMetricsList()
case "rds":
case "elb":
os.Args = os.Args[3:]
zaws := NewZaws()
zaws.ShowELBCloudwatchMetricsList()
default:
usage()
}
case "stats":
if len(os.Args) < 4 {
usage()
}
switch os.Args[3] {
case "ec2":
os.Args = os.Args[3:]
zaws := NewZaws()
zaws.SendEc2MetricStats()
case "elb":
os.Args = os.Args[3:]
zaws := NewZaws()
zaws.SendElbMetricStats()
default:
usage()
}
default:
usage()
}
default:
usage()
}
os.Exit(0)
}