~coreygoldberg/+junk/isd-app-probes

« back to all changes in this revision

Viewing changes to README

  • Committer: Corey Goldberg
  • Date: 2012-06-25 18:24:35 UTC
  • Revision ID: cgoldberg@gmail.com-20120625182435-atg3x2a1sz43ij0i
updated README

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
=============
11
11
 
12
12
* Python 2.6+
13
 
* mechanize (python package):
14
 
  * `pip install mechanize` or
 
13
* python-mechanize:
 
14
    `pip install mechanize` or
15
15
    `apt-get install python-mechanize`
 
16
* python-lazr.restfulclient:
 
17
    `pip install lazr.restfulclient` or
 
18
    `apt-get install python-lazr.restfulclient`
 
19
* python-oauth:
 
20
    `pip install oauth` or
 
21
    `apt-get install python-oauth`
 
22
* python-daemon:
 
23
    `pip install python-daemon` or
 
24
    `apt-get install python-daemon`
 
25
    
16
26
 
17
27
=============
18
28
Setup/Config:
22
32
  * SSO_HOST = '<sso ip or host name>'
23
33
  * SSO_USERNAME = '<sso username>'
24
34
  * SSO_PASSWORD = '<password>'
 
35
  * CARBON_SERVER = '<carbon/graphite ip or host name>'
 
36
  * CARBON_PORT = '<carbon/graphite port>'
25
37
  
26
38
example `settings.py`:
27
39
-----------------------------------------
28
40
SSO_HOST = 'https://login.staging.ubuntu.com'
29
41
SSO_USERNAME = 'email@example.com'
30
42
SSO_PASSWORD = 'xxx'
 
43
CARBON_SERVER = '109.233.105.15'
 
44
CARBON_PORT = '2003'
31
45
-----------------------------------------
32
46
 
33
47
====