Changes between Version 7 and Version 8 of Internal/cProcedures/aGeneratingReports
- Timestamp:
- Apr 7, 2016, 1:02:18 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/cProcedures/aGeneratingReports
v7 v8 1 1 = Generating Usage Reports = 2 2 == Scheduler reports == 3 To get total reservations on all machines in minutes for certain period:3 * To get total reservations on all machines in minutes for certain period: 4 4 {{{ 5 5 SELECT … … 13 13 }}} 14 14 15 To get total user reservations in minutes for certain period per machine:15 * To get total user reservations in minutes for certain period per machine: 16 16 17 17 {{{ … … 28 28 }}} 29 29 30 To get total resource reservations in minutes for certain period per machine.30 * To get total resource reservations in minutes for certain period per machine. 31 31 This is slightly different than above because user can invite other user(s) to his reservation. 32 32 {{{ … … 43 43 44 44 == LDAP reports == 45 * To get total number of registered user run following command:45 * To get total number of registered user run following command: 46 46 {{{ 47 47 ldapsearch -h ldap.orbit-lab.org -p 389 -x -D "cn=admin,dc=orbit-lab, dc=org" -w <ldap secret> "objectClass=person" uid -z 0 … … 50 50 51 51 52 * To get total number of registered organizations run following command:52 * To get total number of registered organizations run following command: 53 53 {{{ 54 54 ldapsearch -h ldap.orbit-lab.org -p 389 -x -b "dc=orbit-lab, dc=org" "objectclass=organizationalUnit"