diff options
| author | Ted Ross <tross@apache.org> | 2009-06-16 14:57:06 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-06-16 14:57:06 +0000 |
| commit | d80a6773fc179cbbaf7a13dd6a8e4c66bebe4455 (patch) | |
| tree | b4008ee7aaacf8aadcd6a7cd3c2ee1dfc7b499c8 /cpp/examples/qmf-console/Makefile.am | |
| parent | b5fb6f4b15f0900576f1c4d3c62ecad6c578e74d (diff) | |
| download | qpid-python-d80a6773fc179cbbaf7a13dd6a8e4c66bebe4455.tar.gz | |
Added a new qmf-console example program.
This new program illustrates how individual nodes of a broker cluster may be monitored.
It connects to all nodes, tracks their connectivity, and queries only one of the connected
nodes.
This mechanism is used in lieu of cluster-failover which is not appropriate for broker management.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@785243 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/qmf-console/Makefile.am')
| -rw-r--r-- | cpp/examples/qmf-console/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/examples/qmf-console/Makefile.am b/cpp/examples/qmf-console/Makefile.am index 320883e528..94211ec187 100644 --- a/cpp/examples/qmf-console/Makefile.am +++ b/cpp/examples/qmf-console/Makefile.am @@ -22,7 +22,7 @@ examplesdir=$(pkgdatadir)/examples/qmf-console MAKELDFLAGS=$(CONSOLEFLAGS) include $(top_srcdir)/examples/makedist.mk -noinst_PROGRAMS=console printevents ping queuestats +noinst_PROGRAMS=console printevents ping queuestats cluster-qmon console_SOURCES=console.cpp console_LDADD=$(CONSOLE_LIB) @@ -36,11 +36,15 @@ ping_LDADD=$(CONSOLE_LIB) queuestats_SOURCES=queuestats.cpp queuestats_LDADD=$(CONSOLE_LIB) +cluster_qmon_SOURCES=cluster-qmon.cpp +cluster_qmon_LDADD=$(CONSOLE_LIB) + examples_DATA= \ console.cpp \ printevents.cpp \ ping.cpp \ queuestats.cpp \ + cluster-qmon.cpp \ $(MAKEDIST) EXTRA_DIST= \ |
