/usr/include/libmemcached/stats.h is in libmemcached-dev 0.44-1.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* LibMemcached
* Copyright (C) 2006-2009 Brian Aker
* All rights reserved.
*
* Use and distribution licensed under the BSD license. See
* the COPYING file in the parent directory for full text.
*
* Summary: Collect up the stats for a memcached server.
*
*/
#ifndef __LIBMEMCACHED_STATS_H__
#define __LIBMEMCACHED_STATS_H__
struct memcached_stat_st {
uint32_t connection_structures;
uint32_t curr_connections;
uint32_t curr_items;
uint32_t pid;
uint32_t pointer_size;
uint32_t rusage_system_microseconds;
uint32_t rusage_system_seconds;
uint32_t rusage_user_microseconds;
uint32_t rusage_user_seconds;
uint32_t threads;
uint32_t time;
uint32_t total_connections;
uint32_t total_items;
uint32_t uptime;
uint64_t bytes;
uint64_t bytes_read;
uint64_t bytes_written;
uint64_t cmd_get;
uint64_t cmd_set;
uint64_t evictions;
uint64_t get_hits;
uint64_t get_misses;
uint64_t limit_maxbytes;
char version[MEMCACHED_VERSION_STRING_LENGTH];
memcached_st *root;
};
#ifdef __cplusplus
extern "C" {
#endif
LIBMEMCACHED_API
void memcached_stat_free(const memcached_st *, memcached_stat_st *);
LIBMEMCACHED_API
memcached_stat_st *memcached_stat(memcached_st *ptr, char *args, memcached_return_t *error);
LIBMEMCACHED_API
memcached_return_t memcached_stat_servername(memcached_stat_st *memc_stat, char *args,
const char *hostname, in_port_t port);
LIBMEMCACHED_API
char *memcached_stat_get_value(const memcached_st *ptr, memcached_stat_st *memc_stat,
const char *key, memcached_return_t *error);
LIBMEMCACHED_API
char ** memcached_stat_get_keys(const memcached_st *ptr, memcached_stat_st *memc_stat,
memcached_return_t *error);
LIBMEMCACHED_API
memcached_return_t memcached_stat_execute(memcached_st *memc, const char *args, memcached_stat_fn func, void *context);
#ifdef __cplusplus
} // extern "C"
#endif
#endif /* __LIBMEMCACHED_STATS_H__ */
|