65 lines
2.3 KiB
Python
65 lines
2.3 KiB
Python
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you 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.
|
|
import datetime
|
|
import os
|
|
import sys
|
|
|
|
POSSIBLE_TOPDIR = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
|
|
os.pardir, os.pardir))
|
|
if os.path.exists(os.path.join(POSSIBLE_TOPDIR, 'stacktach')):
|
|
sys.path.insert(0, POSSIBLE_TOPDIR)
|
|
|
|
from django.db.models import Min
|
|
|
|
from stacktach import models
|
|
|
|
|
|
if __name__ != '__main__':
|
|
sys.exit(1)
|
|
|
|
|
|
def add_past_deletes(start, end):
|
|
exists = models.InstanceExists.objects.select_related()\
|
|
.filter(audit_period_beginning=start,
|
|
audit_period_ending=end,
|
|
deleted_at__isnull=False)
|
|
i = 0
|
|
for exist in exists:
|
|
i += 1
|
|
if models.InstanceDeletes.objects\
|
|
.filter(instance=exist.instance).count() == 0:
|
|
# No deletes found for an instance that was deleted.
|
|
values = {'instance': exist.instance,
|
|
'launched_at': exist.launched_at,
|
|
'deleted_at': exist.deleted_at}
|
|
print values
|
|
models.InstanceDeletes(**values).save()
|
|
|
|
|
|
def find_earliest_daily_audit_period_beginning():
|
|
where = 'audit_period_ending = audit_period_beginning + (60*60*24)'
|
|
query = models.InstanceExists.objects.extra(where=[where])\
|
|
.aggregate(Min('audit_period_beginning'))
|
|
|
|
return query['audit_period_beginning__min']
|
|
|
|
|
|
start = find_earliest_daily_audit_period_beginning()
|
|
end = start + (60 * 60 * 24)
|
|
|
|
add_past_deletes(start, end)
|