File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
## Changes
6
6
7
- * None
7
+ * Add some notes to geni-fetch-aggmon for testing
8
8
9
9
## Installation Notes
10
10
Original file line number Diff line number Diff line change 2
2
3
3
# Monitoring API: http://groups.geni.net/geni/wiki/GENIMonitoring/API
4
4
5
+ # ----------------------------------------------------------------------
6
+ # TO DO:
7
+ # * Add a command option to override the BASE_URL so that the
8
+ # development server, for instance, could be used without changes
9
+ # * Add a command line option to allow verbose output to enable
10
+ # debugging
11
+ # ----------------------------------------------------------------------
12
+
5
13
import urllib
6
14
import urllib2
7
15
import json
@@ -11,6 +19,11 @@ import pprint
11
19
import sys
12
20
import argparse
13
21
22
+ # --------------------------------------------------
23
+ # For testing use the development server BASE_URL:
24
+ # http://genimondev.uky.edu/API'
25
+ # --------------------------------------------------
26
+
14
27
BASE_URL = 'http://genimon.uky.edu/API'
15
28
INFO_URL = '%s/info/' % (BASE_URL )
16
29
DATA_URL = '%s/data/' % (BASE_URL )
You can’t perform that action at this time.
0 commit comments