1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #ifndef __STATSCLIENT_H__
- #define __STATSCLIENT_H__
- #include <kopano/zcdefs.h>
- #include <atomic>
- #include <map>
- #include <mutex>
- #include <string>
- #include <ctime>
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <sys/un.h>
- #include <kopano/ECLogger.h>
- namespace KC {
- class _kc_export StatsClient _kc_final {
- private:
- int fd = -1;
- struct sockaddr_un addr;
- int addr_len = 0;
- bool thread_running = false;
- ECLogger *const logger;
- pthread_t countsSubmitThread;
- public:
- std::atomic<bool> terminate{false};
- std::mutex mapsLock;
- std::map<std::string, double> countsMapDouble;
- std::map<std::string, int64_t> countsMapInt64;
- StatsClient(ECLogger *);
- ~StatsClient();
- int startup(const std::string &collector);
- _kc_hidden inline ECLogger *getLogger(void) { return logger; }
- void countInc(const std::string & key, const std::string & key_sub);
- _kc_hidden void countAdd(const std::string &key, const std::string &key_sub, double n);
- void countAdd(const std::string & key, const std::string & key_sub, const int64_t n);
- _kc_hidden void submit(const std::string &key, time_t ts, double value);
- _kc_hidden void submit(const std::string &key, time_t ts, int64_t value);
- };
- } /* namespace */
- #endif
|