This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| distribute==0.6.24dev-r0 | |
| Brlapi==0.5.6 | |
| GnuPGInterface==0.3.2 | |
| Mako==0.5.0 | |
| MarkupSafe==0.15 | |
| PAM==0.4.2 | |
| PIL==1.1.7 | |
| Twisted-Core==11.1.0 | |
| Twisted-Names==11.1.0 | |
| Twisted-Web==11.1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {u'event_type': u'image.upload', u'timestamp': u'2013-08-08 17:01:52.395052', u'message_id': u'37c0aba2-78eb-4c93-ab41-d7e797373c53', u'priority': u'ERROR', u'publisher_id': u'glance-api01', u'payload': u'Received HTTP error while uploading image xxxxxxxxxx'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@loadtest:~/instrumented-ceilometer# ping rucs.radford.edu | |
| PING rucs.cs.radford.edu (137.45.192.100) 56(84) bytes of data. | |
| ^C | |
| --- rucs.cs.radford.edu ping statistics --- | |
| 41 packets transmitted, 0 received, 100% packet loss, time 40318ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [[post-config|$NOVA_CONF]] | |
| [DEFAULT] | |
| notification_driver=nova.openstack.common.notifier.rpc_notifier | |
| notification_topics=notifications_nova | |
| notify_on_state_change=vm_and_task_state | |
| notify_on_any_change=True | |
| instance_usage_audit=True | |
| instance_usage_audit_period=hour | |
| [[post-config|$NEUTRON_CONF]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Babel==1.3 | |
| Cheetah==2.4.4 | |
| Flask==0.10.1 | |
| GnuPGInterface==0.3.2 | |
| Jinja2==2.7.1 | |
| Landscape-Client==12.05 | |
| M2Crypto==0.21.1 | |
| Mako==0.9.0 | |
| MarkupSafe==0.18 | |
| MySQL-python==1.2.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Babel==1.3 | |
| Cheetah==2.4.4 | |
| Flask==0.10.1 | |
| GnuPGInterface==0.3.2 | |
| Jinja2==2.7.1 | |
| Landscape-Client==12.05 | |
| M2Crypto==0.21.1 | |
| Mako==0.9.0 | |
| MarkupSafe==0.18 | |
| MySQL-python==1.2.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Set buffer pool size to 50-80% of your computer's memory | |
| innodb_buffer_pool_size=40G | |
| innodb_additional_mem_pool_size=2G | |
| # | |
| # Set the log file size to about 25% of the buffer pool size | |
| innodb_log_file_size=1G | |
| innodb_log_buffer_size=50M | |
| # | |
| innodb_flush_log_at_trx_commit=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Babel==1.3 | |
| Cheetah==2.4.4 | |
| Flask==0.10.1 | |
| GnuPGInterface==0.3.2 | |
| Jinja2==2.7.1 | |
| Landscape-Client==12.05 | |
| M2Crypto==0.21.1 | |
| Mako==0.9.0 | |
| MarkupSafe==0.18 | |
| MySQL-python==1.2.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| failed: [mysql4.dev.ramielrowe.com] => {"cmd": ["/usr/bin/git", "clone", "--origin", "origin", "--recursive", "--reference", "b9795009071d07a23c0a759d1589b3f155a30a49", "https://github.com/BrightcoveOS/Diamond", "/tmp/diamond"], "failed": true, "item": "", "rc": 128} | |
| stderr: fatal: reference repository 'b9795009071d07a23c0a759d1589b3f155a30a49' is not a local directory. | |
| stdout: Cloning into '/tmp/diamond'... | |
| msg: fatal: reference repository 'b9795009071d07a23c0a759d1589b3f155a30a49' is not a local directory. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @api_call | |
| def get_event_stats(request): | |
| try: | |
| filters = {} | |
| if 'when_min' in request.GET: | |
| when_min = utils.str_time_to_unix(request.GET['when_min']) | |
| filters['when__gte'] = when_min | |
| if 'when_max' in request.GET: | |
| when_max = utils.str_time_to_unix(request.GET['when_max']) |