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

Side by Side Diff: third_party/gsutil/boto/docs/source/autoscale_tut.rst

Issue 10199002: Upgrade gsutil to 3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 8 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 | Annotate | Revision Log
OLDNEW
1 .. _autoscale_tut: 1 .. _autoscale_tut:
2 2
3 ============================================= 3 =============================================
4 An Introduction to boto's Autoscale interface 4 An Introduction to boto's Autoscale interface
5 ============================================= 5 =============================================
6 6
7 This tutorial focuses on the boto interface to the Autoscale service. This 7 This tutorial focuses on the boto interface to the Autoscale service. This
8 assumes you are familiar with boto's EC2 interface and concepts. 8 assumes you are familiar with boto's EC2 interface and concepts.
9 9
10 Autoscale Concepts 10 Autoscale Concepts
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 measure_name='CPUUtilization', statistic='Average', 131 measure_name='CPUUtilization', statistic='Average',
132 unit='Percent', 132 unit='Percent',
133 dimensions=[('AutoScalingGroupName', ag.name)], 133 dimensions=[('AutoScalingGroupName', ag.name)],
134 period=60, lower_threshold=40, 134 period=60, lower_threshold=40,
135 lower_breach_scale_increment='-5', 135 lower_breach_scale_increment='-5',
136 upper_threshold=80, 136 upper_threshold=80,
137 upper_breach_scale_increment='10', 137 upper_breach_scale_increment='10',
138 breach_duration=360) 138 breach_duration=360)
139 >> conn.create_trigger(tr) 139 >> conn.create_trigger(tr)
140 140
OLDNEW
« no previous file with comments | « third_party/gsutil/boto/docs/source/_templates/layout.html ('k') | third_party/gsutil/boto/docs/source/boto_config_tut.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698