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

Unified Diff: appengine/swarming/swarming_rpcs.py

Issue 2212073002: Add endpoint and cron job to aggregate all dimensions and values (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: Address comments Created 4 years, 4 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
Index: appengine/swarming/swarming_rpcs.py
diff --git a/appengine/swarming/swarming_rpcs.py b/appengine/swarming/swarming_rpcs.py
index 9f3c667e6e1863676273d594f02abe9f07d722ed..2c45037932470e1f41a4102cf85414c66222e43a 100644
--- a/appengine/swarming/swarming_rpcs.py
+++ b/appengine/swarming/swarming_rpcs.py
@@ -383,6 +383,12 @@ class BotsCount(messages.Message):
busy = messages.IntegerField(5)
+class BotsDimensions(messages.Message):
+ """Returns all the dimensions and dimension possibilities in the fleet."""
+ bots_dimensions = messages.MessageField(StringListPair, 1, repeated=True)
+ ts = message_types.DateTimeField(2)
M-A Ruel 2016/08/05 18:41:46 Add: # Time at which this summary was calculated.
kjlubick 2016/08/05 18:51:54 Done.
+
+
class BotEvent(messages.Message):
# Timestamp of this event.
ts = message_types.DateTimeField(1)
« appengine/swarming/handlers_test.py ('K') | « appengine/swarming/server/bot_management.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698