1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/*
*
* (C) 2013-22 - ntop.org
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifndef _ETH_STATS_H_
#define _ETH_STATS_H_
#include "ntop_includes.h"
class EthStats {
private:
ProtoStats rawIngress, rawEgress, eth_IPv4, eth_IPv6, eth_ARP, eth_MPLS, eth_other;
ThroughputStats ingress_bytes_thpt, ingress_pkts_thpt, egress_bytes_thpt, egress_pkts_thpt;
public:
EthStats();
inline ProtoStats* getIPv4Stats() { return(ð_IPv4); };
inline ProtoStats* getIPv6Stats() { return(ð_IPv6); };
inline ProtoStats* getARPStats() { return(ð_ARP); };
inline ProtoStats* getMPLSStats() { return(ð_MPLS); };
inline ProtoStats* getEthOtherStats() { return(ð_other); };
void lua(lua_State *vm);
void updateStats(const struct timeval *tv);
void incStats(bool ingressPacket, u_int32_t num_pkts,
u_int32_t num_bytes, u_int pkt_overhead);
void incProtoStats(u_int16_t proto, u_int32_t num_pkts,
u_int32_t num_bytes);
inline void setNumPackets(bool ingressPacket, u_int64_t v) {
if(ingressPacket) rawIngress.setPkts(v); else rawEgress.setPkts(v);
};
inline void setNumBytes(bool ingressPacket, u_int64_t v) {
if(ingressPacket) rawIngress.setBytes(v); else rawEgress.setBytes(v);
};
inline void incNumPackets(bool ingressPacket, u_int64_t v) {
if(ingressPacket) rawIngress.incPkts(v); else rawEgress.incPkts(v);
}
inline void incNumBytes(bool ingressPacket, u_int64_t v) {
if(ingressPacket) rawIngress.incBytes(v); else rawEgress.incBytes(v);
}
inline u_int64_t getNumIngressPackets() { return(rawIngress.getPkts()); };
inline u_int64_t getNumEgressPackets() { return(rawEgress.getPkts()); };
inline u_int64_t getNumIngressBytes() { return(rawIngress.getBytes()); };
inline u_int64_t getNumEgressBytes() { return(rawEgress.getBytes()); };
inline float getIngressBytesThpt() { return(ingress_bytes_thpt.getThpt()); };
inline float getEgressBytesThpt() { return(egress_bytes_thpt.getThpt()); };
inline u_int64_t getNumPackets() { return(rawIngress.getPkts() + rawEgress.getPkts()); };
inline u_int64_t getNumBytes() { return(rawIngress.getBytes() + rawEgress.getBytes()); };
inline void sum(EthStats *e) const {
rawIngress.sum(&e->rawIngress), rawEgress.sum(&e->rawEgress),
ingress_bytes_thpt.sum(&e->ingress_bytes_thpt),
ingress_pkts_thpt.sum(&e->ingress_pkts_thpt),
egress_bytes_thpt.sum(&e->egress_bytes_thpt),
egress_pkts_thpt.sum(&e->egress_pkts_thpt),
eth_IPv4.sum(&e->eth_IPv4), eth_IPv6.sum(&e->eth_IPv6),
eth_ARP.sum(&e->eth_ARP), eth_MPLS.sum(&e->eth_MPLS), eth_other.sum(&e->eth_other);
};
/**
* @brief Cleanup the proto stats.
* @details Reset all proto stats information.
*/
void cleanup();
void print();
};
#endif /* _ETH_STATS_H_ */
|