Changes committed to git://git.pcp.io/pcp.git dev
.gitignore | 2
qa/admin/check-vm | 2
qa/common.qt | 7 +
src/pmie/pmie_daily.sh | 2
src/pmlogger/pmlogger_daily.sh | 2
src/pmlogger/src/pmlogger.c | 25 +-----
src/pmlogger/src/ports.c | 10 ++
src/python/pcp/pmapi.py | 162 ++++++++++++++++++++---------------------
src/python/pcp/pmcc.py | 32 ++++----
src/python/pcp/pmda.py | 14 +--
src/python/pcp/pmgui.py | 8 +-
src/python/pcp/pmi.py | 42 +++++-----
src/python/pcp/pmsubsys.py | 4 -
13 files changed, 156 insertions(+), 156 deletions(-)
commit 505933e5d949865a70cdf5027547de3478a39ecf
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Aug 15 21:12:33 2014 +1000
First round of python v3 support updates to python modules
Syntax issues fixed here include:
- conversion to py2/3 compat exception raising syntax
- conversion to py2/3 compat exception catching syntax
- consistent whitespace use (else compile error results)
- conversion to print calls using parentheses
commit f1ffb9125038e1d2f7a145a8022ddbe166df8c51
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Aug 15 21:08:07 2014 +1000
Perform just the one pmcd.hostname lookup on pmlogger start
Since we now make use of pmGetContextHostname in pmlogger, we
no longer need to explicitly fetch the hostname (second time)
since we've already done that.
commit e51d24a8c21be76095561eed1e4c131840634372
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Aug 15 21:06:23 2014 +1000
Support xz compression format in pmie/pmlogger daily scripts
commit 79efac835c80e549821198cc5bea868c8767914d
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Aug 15 13:16:50 2014 +1000
Update toplevel gitignore to grok longer version number
commit 8a0bfae6aeebc711f09d61fc736ea8d9e953e29b
Merge: 4f4eb86 2293db9
Author: Ken McDonell <kenj@xxxxxxxxxxxxxxxx>
Date: Fri Aug 15 08:30:47 2014 +1000
Merge branch 'dev' of git://git.performancecopilot.org/pcp/pcp into dev
commit 4f4eb86582b6db0433a989205a34f9d7818ad507
Author: Ken McDonell <kenj@xxxxxxxxxxxxxxxx>
Date: Fri Aug 15 08:25:45 2014 +1000
pmlogger/ports.c - hide some diagnostics
These diagnostics:
fprintf(stderr, "GetPorts: inet socket creation failed: %s\n", ...
fprintf(stderr, "GetPorts: ipv6 socket creation failed: %s\n", ...
were unconditional.
If the system does not support IPv6, this produces lots of annoying
messages that are in practice reporting an expected and benign
situation. And producing a rash of QA failures.
Put the diagnostics behind a
if (pmDebug & DBG_TRACE_CONTEXT)
guard.
commit d0a81bd4e77a78ef946715df6eb054c9f10d6371
Author: Ken McDonell <kenj@xxxxxxxxxxxxxxxx>
Date: Fri Aug 15 07:00:51 2014 +1000
qa/common.qt - make Qt dependent QA conditional
For many of the older platform and non-core distros, we cannot
build the GUI bits because Qt is not installed or is too old.
The build handles this OK.
QA did not. This change uses the absence of an installed
libpcp_qmc.so as the guard to "notrun" any of the GUI related
QA tests.
commit a4875707fcb783b0e709092cd0478ac6e3b16254
Author: Ken McDonell <kenj@xxxxxxxxxxxxxxxx>
Date: Fri Aug 15 07:00:08 2014 +1000
qa/admin/check-vm - python --version is not portable
Use -V instead.
commit 13022cd27519da16b8d8c64ada8dfadc8b853095
Merge: 3ecf28f 7869261
Author: Ken McDonell <kenj@xxxxxxxxxxxxxxxx>
Date: Wed Aug 13 09:43:58 2014 +1000
Merge branch 'dev' of git://git.performancecopilot.org/pcp/pcp into dev
|