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

Unified Diff: tryconsole/index.yaml

Issue 517046: Initial check-in of tryconsole. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: '' Created 10 years, 11 months 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
« no previous file with comments | « tryconsole/cron.yaml ('k') | tryconsole/queue.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tryconsole/index.yaml
===================================================================
--- tryconsole/index.yaml (revision 0)
+++ tryconsole/index.yaml (revision 0)
@@ -0,0 +1,68 @@
+# Copyright (c) 2009-2010 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.
+
+indexes:
+
+# For UpdateBuildResult
+- kind: BuildResult
+ properties:
+ - name: master_url
+ - name: builder_name
+ - name: build_number
+
+# For UpdateBuilds
+- kind: BuildResult
+ properties:
+ - name: end
+ - name: last_checked
+
+# To show latest builds for a particular account.
+- kind: BuildResult
+ properties:
+ - name: account_name
+ - name: start
+ direction: desc
+
+# To show latest builds for a particular username.
+- kind: BuildResult
+ properties:
+ - name: username
+ - name: start
+ direction: desc
+
+# To show latest builds for which are still in progress.
+- kind: BuildResult
+ properties:
+ - name: end
+ - name: start
+ direction: desc
+
+# Find the latest builds for a given builder.
+- kind: BuildResult
+ properties:
+ - name: master_url
+ - name: builder_name
+ - name: build_number
+ direction: desc
+
+# To check for gaps for a particular builder.
+- kind: BuildResult
+ properties:
+ - name: builder_name
+ - name: build_number
+
+# To be able to merge performance samples.
+- kind: PerformanceSamples
+ properties:
+ - name: interval
+ - name: measured_at
+
+# To be able pull a certain graph
+- kind: PerformanceSamples
+ properties:
+ - name: interval
+ - name: master_url
+ - name: builder_name
+ - name: measured_at
+
« no previous file with comments | « tryconsole/cron.yaml ('k') | tryconsole/queue.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698