-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitoring_instances.go
77 lines (70 loc) · 1.99 KB
/
monitoring_instances.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
package main
import (
"fmt"
"os"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ec2"
)
// Usage:
// go run main.go <state> <instance id>
// * state can either be ON or OFF
func main() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("Got error creating new session")
fmt.Println(err.Error())
os.Exit(1)
}
// Create new EC2 client
svc := ec2.New(sess, &aws.Config{Region: aws.String("us-east-1")})
// Turn monitoring on
if os.Args[1] == "ON" {
// We set DryRun to true to check to see if the instance exists and we have the
// necessary permissions to monitor the instance.
input := &ec2.MonitorInstancesInput{
InstanceIds: []*string{
aws.String(os.Args[2]),
},
DryRun: aws.Bool(true),
}
result, err := svc.MonitorInstances(input)
awsErr, ok := err.(awserr.Error)
// If the error code is `DryRunOperation` it means we have the necessary
// permissions to monitor this instance
if ok && awsErr.Code() == "DryRunOperation" {
// Let's now set dry run to be false. This will allow us to turn monitoring on
input.DryRun = aws.Bool(false)
result, err = svc.MonitorInstances(input)
if err != nil {
fmt.Println("Error", err)
} else {
fmt.Println("Sucess", result.InstanceMonitorings)
}
} else {
// This could be due to a lack of permissions
fmt.Println("Error", err)
}
} else if os.Args[1] == "OFF" { // Turn momitoring off
input := &ec2.UnmonitorInstancesInput{
InstanceIds: []*string{
aws.String(os.Args[2]),
},
DryRun: aws.Bool(true),
}
result, err := svc.UnmonitorInstances(input)
awsErr, ok := err.(awserr.Error)
if ok && awsErr.Code() == "DryRunOperation" {
input.DryRun = aws.Bool(false)
result, err = svc.UnmonitorInstances(input)
if err != nil {
fmt.Println("Error", err)
} else {
fmt.Println("Sucess", result.InstanceMonitorings)
}
} else {
fmt.Println("Error", err)
}
}
}