Changes committed to git://git.pcp.io/nathans/pcp.git master
Nathan Scott (4):
build: ensure a C++ compiler is present if enabling Qt components
libpcp: share generic pmstore code for string/value conversion
pmdapmcd: allow simpler setting of pmcd.client values
pmwebd: implement _store protocol support as per pmwebapi(3)
configure | 5
configure.ac | 5
man/man1/pmwebd.1 | 2
man/man3/pmwebapi.3 | 10 +
src/include/pcp/impl.h | 3
src/libpcp/src/exports | 5
src/libpcp/src/stuffvalue.c | 168 +++++++++++++++++++++++++++++++++
src/pmdas/pmcd/src/pmcd.c | 5
src/pmstore/pmstore.c | 182 ++----------------------------------
src/pmwebapi/pmwebapi.cxx | 221 ++++++++++++++++++++++++++++++++++++++++++++
10 files changed, 431 insertions(+), 175 deletions(-)
commit 994b0879875206947b1bcb8bf9ab728fadeea377
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Nov 6 17:28:27 2015 +1100
pmwebd: implement _store protocol support as per pmwebapi(3)
It is now possible for webapps to store values to metrics via
the pmwebapi, as nature intended. Regression tests to follow.
commit b79f62ba3a336095d21549c4b446187e6d293469
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Nov 6 16:51:50 2015 +1100
pmdapmcd: allow simpler setting of pmcd.client values
If not starting from a pmFetch-created pmResult, its simpler
to not require specific instance IDs when setting containers
and whoami values (instance ID is ignored anyway as only the
current context settings can be modified for these metrics).
commit 5c3abf38a23adba26dd3767da55b754924a389fd
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Nov 6 16:47:40 2015 +1100
libpcp: share generic pmstore code for string/value conversion
commit bf6bdd4b08f01087260eeacc57180eb331aba118
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Fri Nov 6 10:31:35 2015 +1100
build: ensure a C++ compiler is present if enabling Qt components
|