Changes committed to git://git.pcp.io/pcp.git master
Mark Goodwin (3):
logimport: add pmiPutMark() to API to write <mark> records
logimport: QA updates for pmiPutMark
collectl2pcp: write a <mark> record between each input source
Nathan Scott (3):
build: make bintray-version script easier to use, add platforms
qa: updates to pmdaoracle testing after recent changes
logimport: fix ups for deb builds, update couple of missed copyrights
Nandhita Narendra Babu (1):
pmdaoracle: storable v$parameter metrics and more v$sysstat metrics
debian/libpcp3-dev.install | 1
man/man3/logimport.3 | 1
man/man3/pmiputmark.3 | 82 ++++++++++++++++
qa/1035 | 42 ++++++--
qa/1035.out | 9 +
qa/369.out | 14 ++
qa/710.out | 5 -
qa/src/check_import.c | 3
qa/src/check_import.perl | 3
qa/src/check_import.python | 3
scripts/bintray-version | 57 ++++++++---
src/collectl2pcp/collectl2pcp.c | 13 ++
src/include/pcp/import.h | 1
src/libpcp_import/src/exports | 5 +
src/libpcp_import/src/import.c | 41 +++++++-
src/pcp/iostat/pcp-iostat.py | 2
src/perl/LogImport/Changes | 6 -
src/perl/LogImport/LogImport.pm | 5 -
src/perl/LogImport/LogImport.xs | 3
src/pmdas/oracle/Install | 2
src/pmdas/oracle/pmdaoracle.pl | 199 ++++++++++++++++++++++++++++++++++++++--
src/python/pcp/pmi.py | 13 ++
22 files changed, 461 insertions(+), 49 deletions(-)
commit 655c855e802f14ce7cb289061be10c412ad75562
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Tue Mar 1 16:30:08 2016 +1100
logimport: fix ups for deb builds, update couple of missed copyrights
commit 5f7b229c0741365fca47546008edf0ac814dd780
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Tue Mar 1 16:24:22 2016 +1100
qa: updates to pmdaoracle testing after recent changes
commit 088d7ff0bf0c34ce182fe6b051929ee7144d817b
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Tue Mar 1 14:27:58 2016 +1100
build: make bintray-version script easier to use, add platforms
Add latest Ubuntu release, allow script to take specific distros
to update rather than simply assuming "everything" - allows for
specific version fixups, as we've been doing recently.
commit 5b333e7f7c9184c5a1395a140dc9d7f1512f8fbd
Author: Nandhita Narendra Babu <nandhita.narendra.babu@xxxxxxxxx>
Date: Tue Mar 1 12:35:43 2016 +1100
pmdaoracle: storable v$parameter metrics and more v$sysstat metrics
(forward-port to latest version of Oracle PMDA by nathans).
commit af9101761f1be142bbb1552c1d492b342f2641d4
Author: Mark Goodwin <mgoodwin@xxxxxxxxxx>
Date: Tue Mar 1 12:06:22 2016 +1100
collectl2pcp: write a <mark> record between each input source
When processing more than one collectl input log file, write a <mark>
record to the output PCP archive to signify the discontinuity between
each input source.
commit ca0f13818ab5501facd3bcfe3589476547758e90
Author: Mark Goodwin <mgoodwin@xxxxxxxxxx>
Date: Tue Mar 1 12:04:02 2016 +1100
logimport: QA updates for pmiPutMark
modified: qa/369.out
modified: qa/710.out
modified: qa/src/check_import.c
modified: qa/src/check_import.perl
modified: qa/src/check_import.python
commit b829edaedf9198180c4a82e26b65cea12ffcca07
Author: Mark Goodwin <mgoodwin@xxxxxxxxxx>
Date: Tue Mar 1 11:54:26 2016 +1100
logimport: add pmiPutMark() to API to write <mark> records
Add new LOGIMPORT function pmiPutMark() to write a <mark> record to
signify a temporal discontinuity in the output PCP archive, usually
after the last pmiWrite() for the current input source, before the
next input source begins. Also adds pmiPutMark(3) man page and updates
for the C, perl and python bindings.
modified: man/man3/logimport.3
new file: man/man3/pmiputmark.3
modified: src/include/pcp/import.h
modified: src/libpcp_import/src/exports
modified: src/libpcp_import/src/import.c
modified: src/perl/LogImport/Changes
modified: src/perl/LogImport/LogImport.pm
modified: src/perl/LogImport/LogImport.xs
modified: src/python/pcp/pmi.py
|