| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 indexes: |
| 6 |
| 7 # For UpdateBuildResult |
| 8 - kind: BuildResult |
| 9 properties: |
| 10 - name: master_url |
| 11 - name: builder_name |
| 12 - name: build_number |
| 13 |
| 14 # For UpdateBuilds |
| 15 - kind: BuildResult |
| 16 properties: |
| 17 - name: end |
| 18 - name: last_checked |
| 19 |
| 20 # To show latest builds for a particular account. |
| 21 - kind: BuildResult |
| 22 properties: |
| 23 - name: account_name |
| 24 - name: start |
| 25 direction: desc |
| 26 |
| 27 # To show latest builds for a particular username. |
| 28 - kind: BuildResult |
| 29 properties: |
| 30 - name: username |
| 31 - name: start |
| 32 direction: desc |
| 33 |
| 34 # To show latest builds for which are still in progress. |
| 35 - kind: BuildResult |
| 36 properties: |
| 37 - name: end |
| 38 - name: start |
| 39 direction: desc |
| 40 |
| 41 # Find the latest builds for a given builder. |
| 42 - kind: BuildResult |
| 43 properties: |
| 44 - name: master_url |
| 45 - name: builder_name |
| 46 - name: build_number |
| 47 direction: desc |
| 48 |
| 49 # To check for gaps for a particular builder. |
| 50 - kind: BuildResult |
| 51 properties: |
| 52 - name: builder_name |
| 53 - name: build_number |
| 54 |
| 55 # To be able to merge performance samples. |
| 56 - kind: PerformanceSamples |
| 57 properties: |
| 58 - name: interval |
| 59 - name: measured_at |
| 60 |
| 61 # To be able pull a certain graph |
| 62 - kind: PerformanceSamples |
| 63 properties: |
| 64 - name: interval |
| 65 - name: master_url |
| 66 - name: builder_name |
| 67 - name: measured_at |
| 68 |
| OLD | NEW |