Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
f1dd84c1
Commit
f1dd84c1
authored
Nov 18, 2018
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: zmq_proxy STATISTICS eligible for stable
Solution: do it
parent
d61c47ef
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
12 deletions
+3
-12
NEWS
NEWS
+3
-0
proxy.cpp
src/proxy.cpp
+0
-8
test_proxy.cpp
tests/test_proxy.cpp
+0
-2
test_proxy_hwm.cpp
tests/test_proxy_hwm.cpp
+0
-2
No files found.
NEWS
View file @
f1dd84c1
...
...
@@ -31,6 +31,9 @@
See doc/zmq_socket_monitor.txt for more details and error codes.
- zmq_stopwatch_intermediate which returns the time elapsed without stopping
the stopwatch.
- zmq_proxy_steerable command 'STATISTICS' to retrieve stats about the amount
of messages and bytes sent and received by the proxy.
See doc/zmq_proxy_steerable.txt for more information.
* The build-time configuration option to select the poller has been split, and
new API_POLLER (CMake) and --with-api-poller (autoconf) options will now
...
...
src/proxy.cpp
View file @
f1dd84c1
...
...
@@ -425,20 +425,16 @@ int zmq::proxy (class socket_base_t *frontend_,
&&
memcmp
(
msg
.
data
(),
"TERMINATE"
,
9
)
==
0
)
state
=
terminated
;
else
{
#ifdef ZMQ_BUILD_DRAFT_API
if
(
msg
.
size
()
==
10
&&
memcmp
(
msg
.
data
(),
"STATISTICS"
,
10
)
==
0
)
{
rc
=
reply_stats
(
control_
,
&
frontend_stats
,
&
backend_stats
);
CHECK_RC_EXIT_ON_FAILURE
();
}
else
{
#endif
// This is an API error, we assert
puts
(
"E: invalid command sent to proxy"
);
zmq_assert
(
false
);
#ifdef ZMQ_BUILD_DRAFT_API
}
#endif
}
}
control_in
=
false
;
...
...
@@ -604,7 +600,6 @@ int zmq::proxy (class socket_base_t *frontend_,
&&
memcmp
(
msg
.
data
(),
"TERMINATE"
,
9
)
==
0
)
state
=
terminated
;
else
{
#ifdef ZMQ_BUILD_DRAFT_API
if
(
msg
.
size
()
==
10
&&
memcmp
(
msg
.
data
(),
"STATISTICS"
,
10
)
==
0
)
{
rc
=
...
...
@@ -612,13 +607,10 @@ int zmq::proxy (class socket_base_t *frontend_,
if
(
unlikely
(
rc
<
0
))
return
close_and_return
(
&
msg
,
-
1
);
}
else
{
#endif
// This is an API error, we assert
puts
(
"E: invalid command sent to proxy"
);
zmq_assert
(
false
);
#ifdef ZMQ_BUILD_DRAFT_API
}
#endif
}
}
// Process a request
...
...
tests/test_proxy.cpp
View file @
f1dd84c1
...
...
@@ -472,11 +472,9 @@ int main (void)
msleep
(
500
);
// Wait for all clients and workers to STOP
#ifdef ZMQ_BUILD_DRAFT_API
if
(
is_verbose
)
printf
(
"retrieving stats from the proxy
\n
"
);
check_proxy_stats
(
control_proxy
);
#endif
if
(
is_verbose
)
printf
(
"shutting down all clients and server workers
\n
"
);
...
...
tests/test_proxy_hwm.cpp
View file @
f1dd84c1
...
...
@@ -300,9 +300,7 @@ static void proxy_stats_asker_thread_main (void *pvoid)
// Start!
while
(
!
zmq_atomic_counter_value
(
cfg
->
subscriber_received_all
))
{
#ifdef ZMQ_BUILD_DRAFT_API
check_proxy_stats
(
control_req
);
#endif
usleep
(
1000
);
// 1ms -> in best case we will get 1000updates/second
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment