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

Unified Diff: appengine/chrome_infra_mon_proxy/app.yaml

Issue 928043005: Monitoring proxy for time series data (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Responded to comments Created 5 years, 8 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/chrome_infra_mon_proxy/app.yaml
diff --git a/appengine/chrome_infra_mon_proxy/app.yaml b/appengine/chrome_infra_mon_proxy/app.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..6c8c3ec4cb23239ece378b209d7dc35b744cae1d
--- /dev/null
+++ b/appengine/chrome_infra_mon_proxy/app.yaml
@@ -0,0 +1,38 @@
+application: chrome-infra-mon-proxy
+# version: 2
+runtime: python27
+api_version: 1
+threadsafe: true
+
+handlers:
+- url: /admin/.*
+ secure: always
+ login: admin
+ script: admin_handler.admin
+- url: /css
+ static_dir: css
+ secure: always
+- url: /.*
+ secure: always
+ script: main.app
+
+automatic_scaling:
+ min_idle_instances: 2
+ min_pending_latency: 100ms
+ max_pending_latency: 500ms
+ max_concurrent_requests: 40
+
+libraries:
+- name: endpoints
+ version: 1.0
+- name: jinja2
+ version: latest
+- name: pycrypto
+ version: "2.6"
+- name: webapp2
+ version: "2.5.2"
+- name: webob
+ version: "1.2.3"
+
+includes:
+- components/auth

Powered by Google App Engine
This is Rietveld 408576698