1QB_IPCS_STATS_GET(3) libqb Programmer's Manual QB_IPCS_STATS_GET(3)
2
3
4
6 qb_ipcs_stats_get - Get the service statistics.
7
8
10 #include <qb/qbipcs.h>
11
12 int32_t qb_ipcs_stats_get(
13 qb_ipcs_service_t *pt, /* service instance */
14 struct qb_ipcs_stats *stats, /* (out) the statistics structure */
15 int32_t clear_after_read /* clear stats after copying them into stats */
16 );
17
19 pt service instance
20
21 stats (out) the statistics structure
22
23 clear_after_read clear stats after copying them into stats
24
27 struct qb_ipcs_stats {
28 uint32_t active_connections;
29 uint32_t closed_connections;
30 };
31
33 0 == ok; -errno to indicate a failure
34
36 qb_ipcs_response_send(3), qb_ipcs_ref(3), qb_ipcs_unref(3),
37 qb_ipcs_connection_auth_set(3), qb_ipcs_service_context_get(3),
38 qb_ipcs_connection_ref(3), qb_ipcs_connection_next_get(3),
39 qb_ipcs_connection_unref(3), qb_ipcs_context_set(3),
40 qb_ipcs_poll_handlers_set(3), qb_ipcs_request_rate_limit(3),
41 qb_ipcs_disconnect(3), qb_ipcs_connection_first_get(3),
42 qb_ipcs_enforce_buffer_size(3), qb_ipcs_destroy(3),
43 qb_ipcs_event_send(3), qb_ipcs_connection_stats_get_2(3),
44 qb_ipcs_service_context_set(3), qb_ipcs_connection_stats_get(3),
45 qb_ipcs_service_id_get(3), qb_ipcs_context_get(3),
46 qb_ipcs_connection_get_buffer_size(3), qb_ipcs_create(3),
47 qb_ipcs_run(3), qb_ipcs_event_sendv(3),
48 qb_ipcs_connection_service_context_get(3), qb_ipcs_response_sendv(3)
49
51 Copyright (C) 2010-2020 Red Hat, Inc.
52
53
54
55LIBQB 2023-07-21 QB_IPCS_STATS_GET(3)