Sha256: b7ab23c7e2c363f7a63f3fa0370ebf09fadd40a9a5db32dca5437210e8bd357b

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

/*
 * File:   ms_stats.h
 * Author: Mingqiang Zhuang
 *
 * Created on March 25, 2009
 *
 * (c) Copyright 2009, Schooner Information Technology, Inc.
 * http://www.schoonerinfotech.com/
 *
 */
#ifndef MS_STAT_H
#define MS_STAT_H

#include <math.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>

#ifdef __cplusplus
extern "C" {
#endif

/* statistic structure of response time */
typedef struct
{
  char *name;
  uint64_t total_time;
  uint64_t min_time;
  uint64_t max_time;
  uint64_t get_miss;
  uint64_t dist[65];
  double squares;
  double log_product;

  uint64_t period_min_time;
  uint64_t period_max_time;
  uint64_t pre_get_miss;
  uint64_t pre_events;
  uint64_t pre_total_time;
  uint64_t pre_squares;
  double pre_log_product;
} ms_stat_t;

/* initialize statistic */
void ms_init_stats(ms_stat_t *stat, const char *name);


/* record one event */
void ms_record_event(ms_stat_t *stat, uint64_t time, int get_miss);


/* dump the statistics */
void ms_dump_stats(ms_stat_t *stat);


/* dump the format statistics */
void ms_dump_format_stats(ms_stat_t *stat,
                          int run_time,
                          int freq,
                          int obj_size);


#ifdef __cplusplus
}
#endif

#endif  /* MS_STAT_H */

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
couchbase-memcached-1.2.9 ext/libmemcached-0.50/clients/ms_stats.h
couchbase-memcached-1.2.8 ext/libmemcached-0.50/clients/ms_stats.h