Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | updated version to 1.4 | Clark Williams | 2009-10-08 | 2 | -3/+4 | |
| | | ||||||
* | | rteval/rteval_text.xsl changes: | Clark Williams | 2009-10-07 | 1 | -1/+3 | |
| | | | | | | | | | | added units to mode parameter added mean absolute deviation | |||||
* | | adde code to rteval/rtevalConfig.py to allow first call to | Clark Williams | 2009-10-07 | 1 | -1/+6 | |
| | | | | | | | | __find_config to fail (and allow command line to specify new value) | |||||
* | | rteval.py changes: | Clark Williams | 2009-10-07 | 1 | -1/+6 | |
| | | | | | | | | | | | | added code to change xslt_report path when -i specified added synchronization code with cyclictest to avoid trying to generate XML before cyclictest has finished stats calcuations | |||||
* | | Massive changes: | Clark Williams | 2009-10-07 | 1 | -98/+65 | |
| | | | | | | | | | | | | | | | | - keep data as histogram instead of sample array - change stats calculation to deal with histogram - add Mean Absolute Deviation calculation - print variance - add synchronization with rteval to prevent race | |||||
* | | changed test command line in Makefile to specify all local parameters | Clark Williams | 2009-10-07 | 1 | -1/+1 | |
|/ | ||||||
* | rteval::XMLRPC_Send(): Fixed syntax error in except statement | David Sommerseth | 2009-09-28 | 1 | -1/+1 | |
| | ||||||
* | Fixed missing requires after rteval.spec cleanup | David Sommerseth | 2009-09-28 | 1 | -1/+1 | |
| | ||||||
* | Fixed missing variable. The value should be picked out from the configuration | David Sommerseth | 2009-09-25 | 1 | -2/+2 | |
| | ||||||
* | Updated XML-RPC README file and installation scripts | David Sommerseth | 2009-09-25 | 3 | -68/+127 | |
| | ||||||
* | Added creation of database user and database to the SQL script | David Sommerseth | 2009-09-24 | 1 | -0/+10 | |
| | ||||||
* | Rewritten XML-RPC server to use rtevalConfig | David Sommerseth | 2009-09-24 | 3 | -12/+35 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Introduced a new rteval.conf section for configuring the xmlrpc server. [xmlrpc_server] datadir: <path to where to save copy of summary.xml report> xsltpath: <path to where xmlparser.xsl can be found> db_server: <hostname of PostgreSQL server to connect to> db_port: <port number of PostgreSQL> database: <database to use> db_username: <connect to database as this user> db_password: <password for the db account> The default values of these parameters are: datadir: /var/lib/rteval xsltpath: /usr/share/rteval db_server: localhost db_port: 5432 database: rteval db_username: xmlrpc db_password: rtevaldb The xmlrpc_server section in the /etc/rteval.conf file only need those parameters which are different from the default values. | |||||
* | Added append mode to rtevalConfig::Load() | David Sommerseth | 2009-09-24 | 1 | -7/+8 | |
| | ||||||
* | Added missing COPYING file | David Sommerseth | 2009-09-24 | 1 | -0/+824 | |
| | ||||||
* | Merge commit 'clark/master' into config | David Sommerseth | 2009-09-24 | 0 | -0/+0 | |
|\ | ||||||
| * | version bump to v1.3 | Clark Williams | 2009-09-22 | 2 | -2/+8 | |
| | | ||||||
| * | fixed syntax error (missing close paren) | Clark Williams | 2009-09-22 | 1 | -2/+1 | |
| | | ||||||
| * | Merge commit 'davids/config' into clark | Clark Williams | 2009-09-22 | 3 | -1/+104 | |
| |\ | ||||||
| | * | rteval can now send e-mails with warnings if XML-RPC submission fails | David Sommerseth | 2009-09-22 | 1 | -1/+29 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The only requirement is that an smtp section is defined in rteval.conf [smtp] smtp_server: smtp.example.com from_address: rteval@example.com to_address: itdep@example.com All three fields are required. | |||||
| | * | Added new class, rtevalMailer to easily be able to send e-mails | David Sommerseth | 2009-09-22 | 1 | -0/+71 | |
| | | | ||||||
| | * | Added new method, rtevalConfig::HasSection(name) - to check if a section ↵ | David Sommerseth | 2009-09-22 | 1 | -0/+4 | |
| | | | | | | | | | | | | exists in the config | |||||
| * | | Merge commit 'davids/config' into clark | Clark Williams | 2009-09-22 | 1 | -9/+37 | |
| |\| | ||||||
| | * | Catch situation where XML-RPC submission fails | David Sommerseth | 2009-09-22 | 1 | -9/+37 | |
| | | | | | | | | | | | | | | | | | | If submission fails, it will now retry up to 5 times. Each time will be delayed with 5 minutes * number of attempts, giving a total wait time of up 75 minutes, if all attempts fails. | |||||
| * | | Merge commit 'davids/config' into clark | Clark Williams | 2009-09-22 | 3 | -13/+15 | |
| |\| | ||||||
| | * | Sort cores by their id in the summary report | David Sommerseth | 2009-09-21 | 1 | -1/+3 | |
| | | | ||||||
| | * | Show most of the default values in --help | David Sommerseth | 2009-09-18 | 2 | -12/+12 | |
| | | | ||||||
* | | | Moved summary XSLT template file name into the configuration setup | David Sommerseth | 2009-09-24 | 1 | -16/+17 | |
| | | | | | | | | | | | | | | | Also send a rtevalCfgSection object of the 'rteval' section to the DMI class, to make the API more unified. | |||||
* | | | Cleaned up rteval.spec and made rpmlint happy | David Sommerseth | 2009-09-24 | 2 | -33/+48 | |
| | | | | | | | | | | | | TODO: Need to have a complete Source URL to rteval and hackbench tar balls | |||||
* | | | Removed #!/usr/bin/python headere in library files | David Sommerseth | 2009-09-24 | 5 | -5/+0 | |
| | | | | | | | | | | | | This is to make rpmlint more happy | |||||
* | | | Updated DMI class to handle rtevalCfgSection object | David Sommerseth | 2009-09-24 | 1 | -3/+2 | |
| | | | ||||||
* | | | Removed version number from the /usr/share/rteval path (instdir) | David Sommerseth | 2009-09-24 | 2 | -12/+14 | |
| | | | ||||||
* | | | version bump to v1.3 | Clark Williams | 2009-09-24 | 2 | -2/+8 | |
| | | | ||||||
* | | | fixed syntax error (missing close paren) | Clark Williams | 2009-09-24 | 1 | -2/+1 | |
| | | | ||||||
* | | | rteval can now send e-mails with warnings if XML-RPC submission fails | David Sommerseth | 2009-09-23 | 1 | -1/+29 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The only requirement is that an smtp section is defined in rteval.conf [smtp] smtp_server: smtp.example.com from_address: rteval@example.com to_address: itdep@example.com All three fields are required. | |||||
* | | | Added new class, rtevalMailer to easily be able to send e-mails | David Sommerseth | 2009-09-23 | 1 | -0/+71 | |
| | | | ||||||
* | | | Added new method, rtevalConfig::HasSection(name) - to check if a section ↵ | David Sommerseth | 2009-09-23 | 1 | -0/+4 | |
| | | | | | | | | | | | | exists in the config | |||||
* | | | Catch situation where XML-RPC submission fails | David Sommerseth | 2009-09-23 | 1 | -9/+37 | |
| | | | | | | | | | | | | | | | | | | If submission fails, it will now retry up to 5 times. Each time will be delayed with 5 minutes * number of attempts, giving a total wait time of up 75 minutes, if all attempts fails. | |||||
* | | | Sort cores by their id in the summary report | David Sommerseth | 2009-09-23 | 1 | -1/+3 | |
| | | | ||||||
* | | | Show most of the default values in --help | David Sommerseth | 2009-09-23 | 2 | -12/+12 | |
|/ / | ||||||
* | | updated specfile changelog to indicate units patch | Clark Williams | 2009-09-18 | 1 | -0/+1 | |
| | | ||||||
* | | version bump to 1.2 | Clark Williams | 2009-09-18 | 1 | -0/+4 | |
| | | | | | | | | updated specfile changelog | |||||
* | | fixed logic for setting work directory with cmdline options | Clark Williams | 2009-09-18 | 1 | -0/+2 | |
| | | ||||||
* | | Merge commit 'davids/ibm' | Clark Williams | 2009-09-18 | 2 | -12/+13 | |
|\ \ | |/ |/| | ||||||
| * | Added 'us' unit after cyclictest measurements | David Sommerseth | 2009-09-17 | 2 | -12/+13 | |
| | | ||||||
* | | cyclictest - ignore records which do not have any measurement value | David Sommerseth | 2009-09-18 | 1 | -1/+1 | |
| | | | | | | | | | | Sometimes the latency value was '', which is not parsable by int(). These records should be ignored, as they don't tell anything at all. | |||||
* | | Rewrote rteval and its modules to make use of the new rtevalConfig class | David Sommerseth | 2009-09-18 | 4 | -98/+67 | |
| | | ||||||
* | | Fixes and new features to rtevalConfig and rtevalCfgSection classes | David Sommerseth | 2009-09-18 | 1 | -4/+35 | |
| | | | | | | | | | | | | | | - Added iterator feature to rtevalCfgSection class - Added rtevalConfig::ConfigParsed(filename) to check if a config has been parsed - Fixed usage of wrong variable in rtevalConfig::AppendConfig() (self.cmd_options should be cfgvars) | |||||
* | | Improved rtevalConfig() constructor and added support methods in ↵ | David Sommerseth | 2009-09-18 | 1 | -3/+32 | |
| | | | | | | | | | | | | | | | | rtevalCfgSection() class When instantiating a rtevalConfig() class, an array with default values. rtevalCfgSection() class got 2 wrapper methods, has_key() and keys() | |||||
* | | Added an improved configuration parser, as a separate class | David Sommerseth | 2009-09-18 | 1 | -0/+118 | |
| | | ||||||
* | | reworked to use config file for parameters and loads | Clark Williams | 2009-09-17 | 7 | -158/+218 | |
| | | | | | | | | | | | | | | | | | | | | | | modified: Makefile rteval.spec rteval/hackbench.py rteval/kcompile.py rteval/load.py rteval/rteval.conf rteval/rteval.py |