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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 application: chrome-infra-mon-proxy
2 # version: 2
3 runtime: python27
4 api_version: 1
5 threadsafe: true
6
7 handlers:
8 - url: /admin/.*
9 secure: always
10 login: admin
11 script: admin_handler.admin
12 - url: /css
13 static_dir: css
14 secure: always
15 - url: /.*
16 secure: always
17 script: main.app
18
19 automatic_scaling:
20 min_idle_instances: 2
21 min_pending_latency: 100ms
22 max_pending_latency: 500ms
23 max_concurrent_requests: 40
24
25 libraries:
26 - name: endpoints
27 version: 1.0
28 - name: jinja2
29 version: latest
30 - name: pycrypto
31 version: "2.6"
32 - name: webapp2
33 version: "2.5.2"
34 - name: webob
35 version: "1.2.3"
36
37 includes:
38 - components/auth
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698