]> git.ipfire.org Git - thirdparty/squid.git/blame - src/mgr/CountersAction.cc
SourceLayout: Move time related tools to time/libtime.la (#1001)
[thirdparty/squid.git] / src / mgr / CountersAction.cc
CommitLineData
8822ebee 1/*
bf95c10a 2 * Copyright (C) 1996-2022 The Squid Software Foundation and contributors
8822ebee 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
8822ebee
AR
7 */
8
bbc27441
AJ
9/* DEBUG: section 16 Cache Manager API */
10
f7f3304a 11#include "squid.h"
8822ebee
AR
12#include "base/TextException.h"
13#include "ipc/Messages.h"
14#include "ipc/TypedMsgHdr.h"
15#include "mgr/CountersAction.h"
8822ebee 16#include "Store.h"
5bed43d6 17#include "tools.h"
8822ebee 18
82afb125
FC
19void GetCountersStats(Mgr::CountersActionData& stats);
20void DumpCountersStats(Mgr::CountersActionData& stats, StoreEntry* sentry);
8822ebee
AR
21
22Mgr::CountersActionData::CountersActionData()
23{
e297be13 24 memset(this, 0, sizeof(*this));
8822ebee
AR
25}
26
27Mgr::CountersActionData&
28Mgr::CountersActionData::operator += (const CountersActionData& stats)
29{
30 if (timercmp(&sample_time, &stats.sample_time, <))
31 sample_time = stats.sample_time;
32 client_http_requests += stats.client_http_requests;
33 client_http_hits += stats.client_http_hits;
34 client_http_errors += stats.client_http_errors;
35 client_http_kbytes_in += stats.client_http_kbytes_in;
36 client_http_kbytes_out += stats.client_http_kbytes_out;
37 client_http_hit_kbytes_out += stats.client_http_hit_kbytes_out;
38 server_all_requests += stats.server_all_requests;
39 server_all_errors += stats.server_all_errors;
40 server_all_kbytes_in += stats.server_all_kbytes_in;
41 server_all_kbytes_out += stats.server_all_kbytes_out;
42 server_http_requests += stats.server_http_requests;
43 server_http_errors += stats.server_http_errors;
44 server_http_kbytes_in += stats.server_http_kbytes_in;
45 server_http_kbytes_out += stats.server_http_kbytes_out;
46 server_ftp_requests += stats.server_ftp_requests;
47 server_ftp_errors += stats.server_ftp_errors;
48 server_ftp_kbytes_in += stats.server_ftp_kbytes_in;
49 server_ftp_kbytes_out += stats.server_ftp_kbytes_out;
50 server_other_requests += stats.server_other_requests;
51 server_other_errors += stats.server_other_errors;
52 server_other_kbytes_in += stats.server_other_kbytes_in;
53 server_other_kbytes_out += stats.server_other_kbytes_out;
54 icp_pkts_sent += stats.icp_pkts_sent;
55 icp_pkts_recv += stats.icp_pkts_recv;
56 icp_queries_sent += stats.icp_queries_sent;
57 icp_replies_sent += stats.icp_replies_sent;
58 icp_queries_recv += stats.icp_queries_recv;
59 icp_replies_recv += stats.icp_replies_recv;
60 icp_replies_queued += stats.icp_replies_queued;
61 icp_query_timeouts += stats.icp_query_timeouts;
62 icp_kbytes_sent += stats.icp_kbytes_sent;
63 icp_kbytes_recv += stats.icp_kbytes_recv;
64 icp_q_kbytes_sent += stats.icp_q_kbytes_sent;
65 icp_r_kbytes_sent += stats.icp_r_kbytes_sent;
66 icp_q_kbytes_recv += stats.icp_q_kbytes_recv;
67 icp_r_kbytes_recv += stats.icp_r_kbytes_recv;
68#if USE_CACHE_DIGESTS
69 icp_times_used += stats.icp_times_used;
70 cd_times_used += stats.cd_times_used;
71 cd_msgs_sent += stats.cd_msgs_sent;
72 cd_msgs_recv += stats.cd_msgs_recv;
73 cd_memory += stats.cd_memory;
74 cd_local_memory += stats.cd_local_memory;
75 cd_kbytes_sent += stats.cd_kbytes_sent;
76 cd_kbytes_recv += stats.cd_kbytes_recv;
77#endif
78 unlink_requests += stats.unlink_requests;
79 page_faults += stats.page_faults;
80 select_loops += stats.select_loops;
81 cpu_time += stats.cpu_time;
82 wall_time += stats.wall_time;
83 swap_outs += stats.swap_outs;
84 swap_ins += stats.swap_ins;
85 swap_files_cleaned += stats.swap_files_cleaned;
86 aborted_requests += stats.aborted_requests;
b2aca62a
EB
87 hitValidationAttempts += stats.hitValidationAttempts;
88 hitValidationRefusalsDueToLocking += stats.hitValidationRefusalsDueToLocking;
89 hitValidationRefusalsDueToZeroSize += stats.hitValidationRefusalsDueToZeroSize;
90 hitValidationRefusalsDueToTimeLimit += stats.hitValidationRefusalsDueToTimeLimit;
91 hitValidationFailures += stats.hitValidationFailures;
8822ebee
AR
92
93 return *this;
94}
95
96Mgr::CountersAction::Pointer
97Mgr::CountersAction::Create(const CommandPointer &cmd)
98{
99 return new CountersAction(cmd);
100}
101
9dca980d 102Mgr::CountersAction::CountersAction(const CommandPointer &aCmd):
f53969cc 103 Action(aCmd), data()
8822ebee 104{
bf95c10a 105 debugs(16, 5, MYNAME);
8822ebee
AR
106}
107
108void
109Mgr::CountersAction::add(const Action& action)
110{
bf95c10a 111 debugs(16, 5, MYNAME);
8822ebee
AR
112 data += dynamic_cast<const CountersAction&>(action).data;
113}
114
115void
116Mgr::CountersAction::collect()
117{
bf95c10a 118 debugs(16, 5, MYNAME);
8822ebee
AR
119 GetCountersStats(data);
120}
121
122void
123Mgr::CountersAction::dump(StoreEntry* entry)
124{
bf95c10a 125 debugs(16, 5, MYNAME);
8822ebee
AR
126 Must(entry != NULL);
127 DumpCountersStats(data, entry);
128}
129
130void
131Mgr::CountersAction::pack(Ipc::TypedMsgHdr& msg) const
132{
133 msg.setType(Ipc::mtCacheMgrResponse);
134 msg.putPod(data);
135}
136
137void
138Mgr::CountersAction::unpack(const Ipc::TypedMsgHdr& msg)
139{
140 msg.checkType(Ipc::mtCacheMgrResponse);
141 msg.getPod(data);
142}
f53969cc 143