summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | updated version to 1.4Clark Williams2009-10-082-3/+4
| |
* | rteval/rteval_text.xsl changes:Clark Williams2009-10-071-1/+3
| | | | | | | | | | added units to mode parameter added mean absolute deviation
* | adde code to rteval/rtevalConfig.py to allow first call toClark Williams2009-10-071-1/+6
| | | | | | | | __find_config to fail (and allow command line to specify new value)
* | rteval.py changes:Clark Williams2009-10-071-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 Williams2009-10-071-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 parametersClark Williams2009-10-071-1/+1
|/
* rteval::XMLRPC_Send(): Fixed syntax error in except statementDavid Sommerseth2009-09-281-1/+1
|
* Fixed missing requires after rteval.spec cleanupDavid Sommerseth2009-09-281-1/+1
|
* Fixed missing variable. The value should be picked out from the configurationDavid Sommerseth2009-09-251-2/+2
|
* Updated XML-RPC README file and installation scriptsDavid Sommerseth2009-09-253-68/+127
|
* Added creation of database user and database to the SQL scriptDavid Sommerseth2009-09-241-0/+10
|
* Rewritten XML-RPC server to use rtevalConfigDavid Sommerseth2009-09-243-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 Sommerseth2009-09-241-7/+8
|
* Added missing COPYING fileDavid Sommerseth2009-09-241-0/+824
|
* Merge commit 'clark/master' into configDavid Sommerseth2009-09-240-0/+0
|\
| * version bump to v1.3Clark Williams2009-09-222-2/+8
| |
| * fixed syntax error (missing close paren)Clark Williams2009-09-221-2/+1
| |
| * Merge commit 'davids/config' into clarkClark Williams2009-09-223-1/+104
| |\
| | * rteval can now send e-mails with warnings if XML-RPC submission failsDavid Sommerseth2009-09-221-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-mailsDavid Sommerseth2009-09-221-0/+71
| | |
| | * Added new method, rtevalConfig::HasSection(name) - to check if a section ↵David Sommerseth2009-09-221-0/+4
| | | | | | | | | | | | exists in the config
| * | Merge commit 'davids/config' into clarkClark Williams2009-09-221-9/+37
| |\|
| | * Catch situation where XML-RPC submission failsDavid Sommerseth2009-09-221-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 clarkClark Williams2009-09-223-13/+15
| |\|
| | * Sort cores by their id in the summary reportDavid Sommerseth2009-09-211-1/+3
| | |
| | * Show most of the default values in --helpDavid Sommerseth2009-09-182-12/+12
| | |
* | | Moved summary XSLT template file name into the configuration setupDavid Sommerseth2009-09-241-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 happyDavid Sommerseth2009-09-242-33/+48
| | | | | | | | | | | | TODO: Need to have a complete Source URL to rteval and hackbench tar balls
* | | Removed #!/usr/bin/python headere in library filesDavid Sommerseth2009-09-245-5/+0
| | | | | | | | | | | | This is to make rpmlint more happy
* | | Updated DMI class to handle rtevalCfgSection objectDavid Sommerseth2009-09-241-3/+2
| | |
* | | Removed version number from the /usr/share/rteval path (instdir)David Sommerseth2009-09-242-12/+14
| | |
* | | version bump to v1.3Clark Williams2009-09-242-2/+8
| | |
* | | fixed syntax error (missing close paren)Clark Williams2009-09-241-2/+1
| | |
* | | rteval can now send e-mails with warnings if XML-RPC submission failsDavid Sommerseth2009-09-231-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-mailsDavid Sommerseth2009-09-231-0/+71
| | |
* | | Added new method, rtevalConfig::HasSection(name) - to check if a section ↵David Sommerseth2009-09-231-0/+4
| | | | | | | | | | | | exists in the config
* | | Catch situation where XML-RPC submission failsDavid Sommerseth2009-09-231-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 reportDavid Sommerseth2009-09-231-1/+3
| | |
* | | Show most of the default values in --helpDavid Sommerseth2009-09-232-12/+12
|/ /
* | updated specfile changelog to indicate units patchClark Williams2009-09-181-0/+1
| |
* | version bump to 1.2Clark Williams2009-09-181-0/+4
| | | | | | | | updated specfile changelog
* | fixed logic for setting work directory with cmdline optionsClark Williams2009-09-181-0/+2
| |
* | Merge commit 'davids/ibm'Clark Williams2009-09-182-12/+13
|\ \ | |/ |/|
| * Added 'us' unit after cyclictest measurementsDavid Sommerseth2009-09-172-12/+13
| |
* | cyclictest - ignore records which do not have any measurement valueDavid Sommerseth2009-09-181-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 classDavid Sommerseth2009-09-184-98/+67
| |
* | Fixes and new features to rtevalConfig and rtevalCfgSection classesDavid Sommerseth2009-09-181-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 Sommerseth2009-09-181-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 classDavid Sommerseth2009-09-181-0/+118
| |
* | reworked to use config file for parameters and loadsClark Williams2009-09-177-158/+218
| | | | | | | | | | | | | | | | | | | | | | modified: Makefile rteval.spec rteval/hackbench.py rteval/kcompile.py rteval/load.py rteval/rteval.conf rteval/rteval.py