00001 #ifndef __XROOTD_STATS_H__ 00002 #define __XROOTD_STATS_H__ 00003 /******************************************************************************/ 00004 /* */ 00005 /* X r d X r o o t d S t a t s . h h */ 00006 /* */ 00007 /* (c) 2004 by the Board of Trustees of the Leland Stanford, Jr., University */ 00008 /* Produced by Andrew Hanushevsky for Stanford University under contract */ 00009 /* DE-AC02-76-SFO0515 with the Department of Energy */ 00010 /* */ 00011 /* This file is part of the XRootD software suite. */ 00012 /* */ 00013 /* XRootD is free software: you can redistribute it and/or modify it under */ 00014 /* the terms of the GNU Lesser General Public License as published by the */ 00015 /* Free Software Foundation, either version 3 of the License, or (at your */ 00016 /* option) any later version. */ 00017 /* */ 00018 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */ 00019 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */ 00020 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */ 00021 /* License for more details. */ 00022 /* */ 00023 /* You should have received a copy of the GNU Lesser General Public License */ 00024 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */ 00025 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */ 00026 /* */ 00027 /* The copyright holder's institutional names and contributor's names may not */ 00028 /* be used to endorse or promote products derived from this software without */ 00029 /* specific prior written permission of the institution or contributor. */ 00030 /******************************************************************************/ 00031 00032 #include "XrdSys/XrdSysPthread.hh" 00033 #include "XrdOuc/XrdOucStats.hh" 00034 00035 class XrdSfsFileSystem; 00036 class XrdStats; 00037 class XrdXrootdResponse; 00038 00039 class XrdXrootdStats : public XrdOucStats 00040 { 00041 public: 00042 int Count; // Stats: Number of matches 00043 int errorCnt; // Stats: Number of errors returned 00044 long long redirCnt; // Stats: Number of redirects 00045 int stallCnt; // Stats: Number of stalls 00046 int getfCnt; // Stats: Number of getfiles 00047 int putfCnt; // Stats: Number of putfiles 00048 int openCnt; // Stats: Number of opens 00049 long long readCnt; // Stats: Number of reads 00050 long long prerCnt; // Stats: Number of reads (pre) 00051 long long rsegCnt; // Stats: Number of readv segments 00052 long long rvecCnt; // Stats: Number of reads 00053 long long wsegCnt; // Stats: Number of writev segments 00054 long long wvecCnt; // Stats: Number of writev 00055 long long writeCnt; // Stats: Number of writes 00056 int syncCnt; // Stats: Number of sync 00057 int miscCnt; // Stats: Number of miscellaneous 00058 long long AsyncNum; // Stats: Number of async ops 00059 long long AsyncRej; // Stats: Number of async rejected 00060 long long AsyncNow; // Stats: Number of async now (not locked) 00061 int AsyncMax; // Stats: Number of async max 00062 int Refresh; // Stats: Number of refresh requests 00063 int LoginAT; // Stats: Number of attempted logins 00064 int LoginAU; // Stats: Number of authenticated logins 00065 int LoginUA; // Stats: Number of unauthenticated logins 00066 int AuthBad; // Stats: Number of authentication failures 00067 int aokSCnt; // Stats: Number of signature successes 00068 int badSCnt; // Stats: Number of signature failures 00069 int ignSCnt; // Stats: Number of signature ignored 00070 00071 void setFS(XrdSfsFileSystem *fsp) {fsP = fsp;} 00072 00073 int Stats(char *buff, int blen, int do_sync=0); 00074 00075 int Stats(XrdXrootdResponse &resp, const char *opts); 00076 00077 XrdXrootdStats(XrdStats *sp); 00078 ~XrdXrootdStats() {} 00079 private: 00080 00081 XrdSfsFileSystem *fsP; 00082 XrdStats *xstats; 00083 }; 00084 #endif