Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2616)

Unified Diff: appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/models.py

Issue 774323002: Moved trooper_o_matic to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/models.py
diff --git a/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/models.py b/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/models.py
deleted file mode 100644
index 0d89ce1c1051397467cc7f5eb19da20697ee2191..0000000000000000000000000000000000000000
--- a/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/models.py
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from google.appengine.ext import ndb
-
-from endpoints_proto_datastore.ndb import EndpointsModel
-
-
-SLO_BUILDTIME_MEDIAN = float(90 * 60) # 90 minutes
-SLO_BUILDTIME_MAX = float(8 * 60 * 60) # 480 minutes, lower when
- # crbug.com/434965 is fixed.
-
-SLO_BUILDTIME_PER_BOT_MEDIAN = {}
-SLO_BUILDTIME_PER_BOT_MAX = {}
-
-
-class Project(ndb.Model):
- pass
-
-
-class CqStat(EndpointsModel):
- timestamp = ndb.DateTimeProperty(auto_now_add=True)
- length = ndb.IntegerProperty(required=True)
- # TODO(alancutter): Remove these fields now that we query them from
- # chromium-cq-status.
- min = ndb.FloatProperty()
- max = ndb.FloatProperty()
- mean = ndb.FloatProperty()
- p10 = ndb.FloatProperty()
- p25 = ndb.FloatProperty()
- p50 = ndb.FloatProperty()
- p75 = ndb.FloatProperty()
- p90 = ndb.FloatProperty()
- p95 = ndb.FloatProperty()
- p99 = ndb.FloatProperty()
-
-
-class CqTimeInQueueForPatchStat(CqStat):
- pass
-
-
-class CqTotalTimeForPatchStat(CqStat):
- pass
-
-
-class TreeOpenStat(ndb.Model):
- timestamp = ndb.DateTimeProperty(auto_now_add=True)
- num_days = ndb.IntegerProperty(required=True)
- percent_open = ndb.FloatProperty(required=True)
-
-
-class Tree(ndb.Model):
- pass
-
-
-class BuildSLOOffender(EndpointsModel):
- tree = ndb.StringProperty()
- master = ndb.StringProperty()
- builder = ndb.StringProperty()
- buildnumber = ndb.IntegerProperty()
- buildtime = ndb.FloatProperty()
- result = ndb.IntegerProperty()
- revision = ndb.StringProperty()
- # Store these with each build, in case we change the SLO, so that we know
- # what SLO was not met.
- slo_median_buildtime = ndb.FloatProperty(default=SLO_BUILDTIME_MEDIAN)
- slo_max_buildtime = ndb.FloatProperty(default=SLO_BUILDTIME_MAX)
- generated = ndb.DateTimeProperty(auto_now_add=True)
-
-
-class BuildTimeStat(ndb.Model):
- timestamp = ndb.DateTimeProperty()
- slo_offenders = ndb.StructuredProperty(BuildSLOOffender, repeated=True)
- num_builds = ndb.IntegerProperty()
- num_over_median_slo = ndb.IntegerProperty()
- num_over_max_slo = ndb.IntegerProperty()

Powered by Google App Engine
This is Rietveld 408576698