This repository was archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcost_reporting_data.py
520 lines (450 loc) · 23.2 KB
/
cost_reporting_data.py
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
__author__ = 'cleung'
import boto
from boto import ec2
from boto.s3.connection import S3Connection
import datetime
import zipfile
import os
import csv
from operator import itemgetter
import pdb
# TODO: not using global variables!
untagged_volume_sum = 0
untagged_s3_sum = 0
untagged_egress_sum = 0
year_month = ""
class SpreadsheetCache(object):
def __init__(self):
self.filename = self.get_file_from_bucket()
self.spreadsheet = []
with open(self.filename) as f:
temp_reader = csv.DictReader(f)
for row in temp_reader:
if float(row['Cost']) != 0 and row['RecordType'] == "LineItem":
if row['Operation'] == "" and row['UsageType'] == "":
row['Operation'] = "ProductName" + row['ProductName']
row['UsageType'] = "ProductName" + row['ProductName']
self.spreadsheet.append(row)
del temp_reader
self.fix_case()
self.sort_data()
temp_keepers = set()
for row in self.spreadsheet:
temp_keepers.add(row['user:KEEP'])
self.keepers = list(temp_keepers)
del temp_keepers
self.resources_tag_dict = {} # key = resource id, value = {'user:KEEP': name, 'user:PROD': yes/}
self.get_resource_tags() # populate above dictionary
self.tag_past_items()
# regions = self.get_regions()
# self.live_resources = []
# for region in regions:
# self.live_resources.extend(self.get_instances(region))
# self.live_resources.extend(self.get_volumes(region))
# # detailed billing report from Amazon does not show snapshot or image IDs :(
def data(self):
"""Returns spreadsheet (list of dicts)"""
return self.spreadsheet
def fix_case(self):
# A method to operate on the spreadsheet and update the column you need uppered
# Doesn't return anything, just fixes the spreadsheet
temp_sheet = list(self.spreadsheet)
for line in temp_sheet:
line['user:KEEP'] = line['user:KEEP'].upper()
line['user:PROD'] = line['user:PROD'].lower()
self.spreadsheet = list(temp_sheet)
del temp_sheet
@staticmethod
def get_file_from_bucket():
"""Grab today's billing report from the S3 bucket, extract into pwd, return filename
Eventually: Grab a different month's billing report.
"""
prefix = "794321122735-aws-billing-detailed-line-items-with-resources-and-tags-"
# Select desired month using date format "YYYY-MM"
global year_month
year_month = str(datetime.date.today().isoformat()[0:7]) # get the latest report for current month
# year_month = "2015-10" # or select your own month
csv_filename = prefix + year_month + ".csv"
zip_filename = csv_filename + ".zip"
# If local data is older than 1 day, download fresh data.
# mod_time = os.path.getmtime(csv_filename)
if not os.path.isfile(csv_filename) or datetime.date.today() - datetime.date.fromtimestamp(os.path.getmtime(csv_filename)) > datetime.timedelta(days=0):
conn = S3Connection(os.environ['AWS_ACCESS_KEY'], os.environ['AWS_SECRET_KEY'])
mybucket = conn.get_bucket('oicr.detailed.billing')
print "Downloading " + zip_filename + "..."
mykey = mybucket.get_key(zip_filename)
mykey.get_contents_to_filename(zip_filename)
print "Extracting to file " + csv_filename + "..."
zf = zipfile.ZipFile(zip_filename)
zf.extractall()
return csv_filename
def sort_data(self):
"""Sort data by ResourceId, KEEP, PROD, Operation, UsageType, Cost"""
temp_sheet = list(self.spreadsheet)
self.spreadsheet = list(sorted(temp_sheet, key=itemgetter('ResourceId', 'user:KEEP', 'user:PROD',
'Operation', 'UsageType', 'Cost')))
del temp_sheet
def get_resource_tags(self):
"""Modifies (populates) dict of resource_id and {KEEP-tag, PROD-tag}-pairs
v2: Some tags changed over time for a given resource. Retain most recent tag for the dictionary.
"""
for row in self.spreadsheet:
if row['ResourceId'] not in self.resources_tag_dict:
self.resources_tag_dict[row['ResourceId']] = {'user:KEEP': row['user:KEEP'],
'user:PROD': row['user:PROD'],
'age': SpreadsheetCache.get_time_comparator(row)}
if len(row['user:KEEP'].strip()) != 0\
and SpreadsheetCache.get_time_comparator(row) > self.resources_tag_dict[row['ResourceId']]['age']:
self.resources_tag_dict[row['ResourceId']]['user:KEEP'] = row['user:KEEP']
self.resources_tag_dict[row['ResourceId']]['age'] = self.get_time_comparator(row)
if len(row['user:PROD'].strip()) != 0:
self.resources_tag_dict[row['ResourceId']]['user:PROD'] = row['user:PROD']
def tag_past_items(self):
"""Tag untagged items if they became tagged at any time in the billing record"""
copy_list = list(self.spreadsheet)
i = -1
print "Tagging past items"
for row in self.spreadsheet:
i += 1
if row['ResourceId'] in self.resources_tag_dict:
copy_list[i]['user:KEEP'] = self.resources_tag_dict[row['ResourceId']]['user:KEEP']
copy_list[i]['user:PROD'] = self.resources_tag_dict[row['ResourceId']]['user:PROD']
self.spreadsheet = list(copy_list)
del copy_list
@staticmethod
def get_regions():
regions = ec2.regions()
region_names = []
for region in regions:
region_names.append(region.name)
return region_names
@staticmethod
def credentials():
return {"aws_access_key_id": os.environ['AWS_ACCESS_KEY'],
"aws_secret_access_key": os.environ['AWS_SECRET_KEY']}
@staticmethod
def get_time_comparator(line_item):
"""Return hours since start of month. Use for comparing time of tagging. Easier than datetime module.
UsageStartDate entries in billing report are in format '2015-06-08 18:00:00'
"""
hours = 0
try:
date_time = line_item['UsageStartDate']
day = int(date_time[8:10])
hour = int(date_time[11:13])
hours = day*24 + hour
except KeyError:
pass
return hours
def get_instances(self, region):
"""Return names only"""
creds = self.credentials()
try:
conn = ec2.connect_to_region(region, **creds)
instances = []
reservations = conn.get_all_reservations()
for reservation in reservations:
for instance in reservation.instances:
instances.append(instance)
except boto.exception.EC2ResponseError:
return []
return instances
def get_volumes(self, region):
"""Return names only"""
creds = self.credentials()
try:
conn = ec2.connect_to_region(region, **creds)
volumes = conn.get_all_volumes()
except boto.exception.EC2ResponseError:
return []
return volumes
def get_snapshots(self, region):
creds = self.credentials()
try:
conn = ec2.connect_to_region(region, **creds)
snapshots = conn.get_all_snapshots(owner='self')
except boto.exception.EC2ResponseError:
return []
return snapshots
def get_images(self, region):
"""Return images for one given region, owned by self"""
creds = self.credentials()
try:
conn = ec2.connect_to_region(region, **creds)
images = conn.get_all_images(owners=['self'])
except boto.exception.EC2ResponseError:
return []
return images
def print_data():
"""Dump everything to take a look"""
with open("blob.csv", 'w') as f:
fields = ['user:KEEP', 'ResourceId', 'Operation', 'UsageType', 'Production?', 'Cost']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writeheader()
for row in SC.spreadsheet:
writer.writerow({'user:KEEP': row['user:KEEP'],
'ResourceId': row['ResourceId'],
'Operation': row['Operation'],
'UsageType': row['UsageType'],
'Production?': row['user:PROD'],
'Cost': row['Cost']})
def subtotal(line_items):
""" Returns subtotal for line_items.
Used for summing costs of this particular usage type, under this Operation, PROD-tag, KEEP-tag
"""
total_cost = 0
for line in line_items:
total_cost += float(line['Cost'])
return total_cost
def process_resource(line_items, res_id):
"""Process all the line items with this particular resource ID"""
usage_types = set([x.get('UsageType') for x in line_items])
cost_for_this_resource = 0
for usage_type in usage_types:
usage_cost = subtotal([line_item for line_item in line_items if line_item['UsageType'] == usage_type])
keeper = line_items[0].get('user:KEEP')
if keeper == "":
keeper = "untagged"
# hack hack hack hack, super sneaky
zones_full = [item['AvailabilityZone'] for item in line_items if item['UsageType'] == usage_type]
zones = list(set(zones_full))
zones.reverse()
zone = zones[0] # first: low quality pass
# status = ""
# if res_id in [x.id.encode() for x in SC.live_resources]:
# status = "confirmed live"
# if len(zone.strip()) == 0: #if first pass bad, try here!
# pdb.set_trace()
# # TypeError: 'Instance' object has no attribute '__getitem__'
# if 'zone' in [x for x in SC.live_resources if x['ResourceId'] == res_id][0]:
# zone = [x for x in SC.live_resources if x['ResourceId'] == res_id][0]['zone']
with open("reports/" + keeper + "_report.csv", 'a') as f:
fields = ['user:KEEP', 'ResourceId', # 'Status, if available',
'AvailabilityZone', 'Operation', 'UsageType', 'Production?', 'Cost']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writerow({'user:KEEP': keeper, 'ResourceId': res_id,
# 'Status, if available': status,
'AvailabilityZone': zone,
'Operation': line_items[0]['Operation'], 'UsageType': usage_type,
'Production?': line_items[0]['user:PROD'], 'Cost': usage_cost})
cost_for_this_resource += usage_cost
return cost_for_this_resource
def process_prod_type(line_items):
"""Process all the line items for this particular production type"""
resources = set([x.get('ResourceId') for x in line_items])
cost_for_this_production_type = 0
for resource in resources:
cost_for_this_resource = process_resource([x for x in line_items if x['ResourceId'] == resource], resource)
keeper = line_items[0].get('user:KEEP')
if keeper == "":
keeper = "untagged"
with open("reports/" + keeper + "_report.csv", 'a') as f:
fields = ['user:KEEP', 'ResourceId', # 'Status, if available',
'AvailabilityZone', 'Operation', 'UsageType', 'Production?', 'Cost', 'subtot', 'subval']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writerow({'subtot': "Subtotal for resource " + resource, 'subval': cost_for_this_resource})
cost_for_this_production_type += cost_for_this_resource
return cost_for_this_production_type
def generate_one_report(keeper):
"""Output all the subtotal info for the specified keeper"""
line_items = [x for x in SC.spreadsheet if x['user:KEEP'] == keeper]
prod_types = set([x.get('user:PROD') for x in line_items]) # should be just "" or "yes" but just in case
if keeper == "":
keeper = "untagged"
report_name = keeper + "_report.csv"
print "Generating report for: " + keeper + "..."
with open("reports/" + report_name, 'w') as f:
fields = ['user:KEEP', 'ResourceId', # 'Status, if available',
'AvailabilityZone', 'Operation', 'UsageType', 'Production?', 'Cost']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writerow({})
# writer.writerow({'user:KEEP': "Report for " + keeper + " from start of month to " + str(datetime.date.today())})
writer.writerow({'user:KEEP': "Report for " + keeper + " for the month " + year_month})
writer.writeheader()
cost_for_keeper = {}
# bunch all by non-production, production, or anything else in the list
for prod_type in prod_types:
# list of all line_items with that prod type, and process them
cost_for_this_production_type = process_prod_type([line_item for line_item in line_items if line_item['user:PROD'] == prod_type])
with open("reports/" + report_name, 'a') as f:
fields = ['user:KEEP', 'ResourceId', # 'Status, if available',
'AvailabilityZone', 'Operation', 'UsageType', 'Production?', 'Cost', 'subtot', 'subval']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writerow({})
writer.writerow({'subtot': "Subtotal for [non/]production:", 'subval': cost_for_this_production_type})
writer.writerow({})
cost_for_keeper[prod_type] = cost_for_this_production_type
# K this is ugly but figure it out later
with open("reports/" + report_name, 'a') as f:
fields = ['user:KEEP', 'ResourceId', # 'Status, if available',
'AvailabilityZone', 'Operation', 'UsageType', 'Production?', 'Cost', 'subtot', 'subval']
writer = csv.DictWriter(f, fieldnames=fields)
total_cost_for_keeper = sum(cost_for_keeper.values())
writer.writerow({'subtot': "TOTAL FOR " + keeper, 'subval': str(total_cost_for_keeper)})
return cost_for_keeper
def generate_untagged_overview():
"""Give just the right amount of detail to let us know where all the untagged resources are"""
print "Generating untagged overview report..."
unkept = [x for x in SC.spreadsheet if len(x['user:KEEP'].strip()) == 0]
with open("reports/untagged_sorted_reports.csv", 'w') as f:
# costs by resource
print " ...by resource..."
resource_ids = set([x.get('ResourceId') for x in unkept])
fields = ['ProductName', 'ResourceId', # 'Resource Status (unknown unless available)',
'Total cost for resource']
writer = csv.DictWriter(f, fieldnames=fields)
# writer.writerow({'ProductName': "Untagged resources from start of month to " + str(datetime.date.today())})
writer.writerow({'ProductName': "Untagged resources for month " + year_month})
writer.writerow({})
writer.writerow({'ProductName': "Untagged resources, grouped by resource id"})
writer.writeheader()
list_of_resources = []
for resource in resource_ids:
resource_total = sum([float(x['Cost']) for x in unkept if x['ResourceId'] == resource])
# expect a resource is of one ProductName type, but if not, dump the list
product = [x['ProductName'] for x in unkept if x['ResourceId'] == resource]
# This is awful
product = list(set(product))
if len(product) == 1:
product = str(product[0])
else:
product = str(product)
# status = ""
# if resource in SC.live_resources:
# status = "confirmed live"
list_of_resources.append(dict(p=product, r=resource,
# s=status,
c=resource_total))
list_of_resources = sorted(list_of_resources, key=itemgetter('p', 'c'), reverse=True)
for res in list_of_resources:
writer.writerow({'ProductName': res['p'], 'ResourceId': res['r'],
# 'Resource Status (unknown unless available)': res['s'],
'Total cost for resource': res['c']})
# costs by operation
print " ...by operation..."
operations = set([x.get('Operation') for x in unkept])
fields = ['ProductName', 'Operation', 'Total cost for operation']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writerow({})
writer.writerow({})
writer.writerow({'ProductName': "Untagged resources, costs by Operation"})
writer.writeheader()
l_o_ops = []
for op in operations:
op_total = sum([float(x['Cost']) for x in unkept if x['Operation'] == op])
# Sorry this is awful
# expect a resource is of one ProductName type, but if not, dump the list
product = [x['ProductName'] for x in unkept if x['ResourceId'] == resource]
# This is awful
product = list(set(product))
if len(product) == 1:
product = str(product[0])
else:
product = str(product)
l_o_ops.append(dict(p=product, o=op, c=op_total))
l_o_ops = sorted(l_o_ops, key=itemgetter('p', 'c'), reverse=True)
for oper in l_o_ops:
writer.writerow({'ProductName': oper['p'], 'Operation': oper['o'], 'Total cost for operation': oper['c']})
# costs by usage_type
print " ...by usage type..."
usage_types = set([x.get('UsageType') for x in unkept])
fields = ['ProductName', 'UsageType', 'Total cost for UsageType']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writerow({})
writer.writerow({})
writer.writerow({'ProductName': "Untagged resources, costs by UsageType"})
writer.writeheader()
l_o_uses = []
for usage in usage_types:
usage_total = sum([float(x['Cost']) for x in unkept if x['UsageType'] == usage])
# Sorry this is awful, again
# expect a resource is of one ProductName type, but if not, dump the list
product = [x['ProductName'] for x in unkept if x['ResourceId'] == resource]
# This is awful
product = list(set(product))
if len(product) == 1:
product = str(product[0])
else:
product = str(product)
l_o_uses.append(dict(p=product, u=usage, c=usage_total))
l_o_uses = sorted(l_o_uses, key=itemgetter('p', 'c'), reverse=True)
for use in l_o_uses:
writer.writerow({'ProductName': use['p'], 'UsageType': use['u'], 'Total cost for UsageType': use['c']})
# Generate subtotals for untagged: volumes, snapshots, AMIs, S3, and data egress
writer.writerow({})
# global variables! TODO: this, better later
global untagged_volume_sum
global untagged_s3_sum
global untagged_egress_sum
# Volume usage
untagged_volume_sum = sum([float(x['Cost']) for x in unkept if "Volume" in x.get('UsageType')])
writer.writerow({'ProductName': "Untagged total for volumes", 'UsageType': untagged_volume_sum})
# Snapshots... are not an item listed?
# AMIs... aren't listed either...
# S3
untagged_s3_sum = sum([float(x['Cost']) for x in unkept if "Amazon Simple Storage Service" in x.get('ProductName')])
writer.writerow({'ProductName': "Untagged total for S3", 'UsageType': untagged_s3_sum})
# Data egress: based on billing report of Nov 1, any outbound data is identified by:
# containing "Out" in the UsageType (ItemDescription confirms outbound data is being charged)
# XOR
# containing "Out" in the Operation (again, ItemDescription confirms outbound data is being charged)
# There are no line items with "Out" in both fields
# Nearly no lines without "Out" in one of the two fields where ItemDescription refers to outbound data
# ^- exception is some PUT / uploads from S3; however, it does include some other S3 transfer operations
usage_type_egress = sum([float(x['Cost']) for x in unkept if "Out" in x.get('UsageType')])
operation_egress = sum([float(x['Cost']) for x in unkept if "Out" in x.get('Operation')])
untagged_egress_sum = usage_type_egress + operation_egress
writer.writerow({'ProductName': "Untagged total for data egress (some overlap with S3)",
'UsageType': untagged_egress_sum})
def generate_reports():
"""Make reports for list of keepers:
- individual reports with every line item,
- one report summarizing tagged,
- one report summarizing all untagged
"""
costs_for_keepers = []
# Individual full reports
for keeper in SC.keepers:
cost_for_keeper = generate_one_report(keeper)
if keeper == '':
keeper = 'untagged' # may want to set this earlier
cost_for_keeper['user:KEEP'] = keeper
costs_for_keepers.append(cost_for_keeper)
# Overview of untagged resources
generate_untagged_overview()
# Summarize
print "Generating summary report..."
with open('reports/overall_keep+prod_summary.csv', 'w') as f:
fields = ['user:KEEP', 'non-production subtotal', 'production subtotal', 'user total']
writer = csv.DictWriter(f, fieldnames=fields)
# writer.writerow({'user:KEEP': "Summary of costs from start of month to " + str(datetime.date.today())})
writer.writerow({'user:KEEP': "Summary of costs for month " + year_month})
writer.writeheader()
writer.writerow({})
for i in range(len(SC.keepers)):
# ok this is not robust at all, TODO: robustify
if 'yes' not in costs_for_keepers[i]:
costs_for_keepers[i]['yes'] = 0
if '' not in costs_for_keepers[i]:
costs_for_keepers[i][''] = 0
total = float(costs_for_keepers[i]['']) + float(costs_for_keepers[i]['yes'])
writer.writerow({'user:KEEP': costs_for_keepers[i]['user:KEEP'],
'non-production subtotal': costs_for_keepers[i][''],
'production subtotal': costs_for_keepers[i]['yes'],
'user total': total})
# extra subtotals for breakdown of untagged costs
if costs_for_keepers[i]['user:KEEP'] is 'untagged':
writer.writerow({'user:KEEP': " untagged subtotal for volume usage", 'user total': untagged_volume_sum})
writer.writerow({'user:KEEP': " untagged subtotal for S3", 'user total': untagged_s3_sum})
writer.writerow({'user:KEEP': " untagged subtotal for data egress (some overlap with S3)",
'user total': untagged_egress_sum})
def main():
# print_data() # prints blob of data
# import pdb; pdb.set_trace()
# generate_one_report('ADAM')
# generate_one_report('BRIAN')
# generate_one_report('DENIS')
generate_reports()
if __name__ == '__main__':
SC = SpreadsheetCache()
main()