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
|
package main
import (
"flag"
"fmt"
"log"
// TODO: abstract out the aws stuff into aws.go in due course
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ec2"
//"github.com/aws/aws-sdk-go/service/s3"
//"github.com/aws/aws-sdk-go/service/sqs"
)
const usage = `Usage: lspipeline
Lists useful things related to the pipeline.
- Instances running
- Messages in each queue (ApproximateNumberOfMessages and ApproximateNumberOfMessagesNotVisible from GetQueueAttributes)
- Books not completed (from S3 without a best file)
- Books completed (from S3 with a best file)
- Last 5 lines of bookpipeline logs from each running instance (with -v)
`
func printInstances(page *ec2.DescribeInstancesOutput, lastPage bool) bool {
for _, r := range page.Reservations {
for _, i := range r.Instances {
var ip, name, spot string
for _, t := range i.Tags {
if *t.Key == "Name" {
name = *t.Value
}
}
if i.PublicIpAddress != nil {
ip = *i.PublicIpAddress
}
if i.SpotInstanceRequestId != nil {
spot = *i.SpotInstanceRequestId
}
fmt.Printf("Type: %s", *i.InstanceType)
if name != "" {
fmt.Printf(", Name: %s", name)
}
fmt.Printf(", LaunchTime: %s, State: %s", i.LaunchTime, *i.State.Name)
if ip != "" {
fmt.Printf(", IP: %s", ip)
}
if spot != "" {
fmt.Printf(", SpotRequest: %s", spot)
}
fmt.Printf("\n")
}
}
return !lastPage
}
func main() {
flag.Usage = func() {
fmt.Fprintf(flag.CommandLine.Output(), usage)
flag.PrintDefaults()
}
flag.Parse()
sess, err := session.NewSession(&aws.Config{
Region: aws.String("eu-west-2"),
})
if err != nil {
log.Fatalln("Failed to set up aws session", err)
}
ec2svc := ec2.New(sess)
//s3svc := s3.New(sess)
//sqssvc := sqs.New(sess)
err = ec2svc.DescribeInstancesPages(&ec2.DescribeInstancesInput{}, printInstances)
if err != nil {
log.Fatalln("Failed to get ec2 instances", err)
}
// TODO: See remaining items in the usage statement
}
|