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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/*
Copyright (C) 2008- The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file COPYING for details.
*/
#include "chirp_stats.h"
#include "debug.h"
#include "xxmalloc.h"
#include "hash_table.h"
#include "link.h"
#include "jx.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <time.h>
static struct hash_table *stats_table = 0;
static UINT64_T total_ops = 0;
static UINT64_T total_bytes_read = 0;
static UINT64_T total_bytes_written = 0;
struct chirp_stats {
char addr[LINK_ADDRESS_MAX];
UINT64_T ops;
UINT64_T bytes_read;
UINT64_T bytes_written;
};
void chirp_stats_collect(const char *addr, const char *subject, UINT64_T ops, UINT64_T bytes_read, UINT64_T bytes_written)
{
struct chirp_stats *s;
if(!stats_table)
stats_table = hash_table_create(0, 0);
s = hash_table_lookup(stats_table, addr);
if(!s) {
s = malloc(sizeof(*s));
memset(s, 0, sizeof(*s));
strcpy(s->addr, addr);
hash_table_insert(stats_table, addr, s);
}
s->ops += ops;
s->bytes_read += bytes_read;
s->bytes_written += bytes_written;
total_ops += ops;
total_bytes_read += bytes_read;
total_bytes_written += bytes_written;
}
void chirp_stats_summary( struct jx *j )
{
char *addr;
struct chirp_stats *s;
if(!stats_table)
stats_table = hash_table_create(0, 0);
jx_insert_integer(j,"bytes_written",total_bytes_written);
jx_insert_integer(j,"bytes_read",total_bytes_read);
jx_insert_integer(j,"total_ops",total_ops);
struct jx *arr = jx_array(0);
hash_table_firstkey(stats_table);
while(hash_table_nextkey(stats_table, &addr, (void **) &s)) {
// there may be a large number of clients,
// so we used a brief notation to keep the doc size down.
struct jx *c = jx_object(0);
jx_insert_string(c,"a",addr);
jx_insert_integer(c,"o",s->ops);
jx_insert_integer(c,"r",s->bytes_read);
jx_insert_integer(c,"w",s->bytes_written);
jx_array_insert(arr,c);
}
jx_insert(j,jx_string("clients"),arr);
}
void chirp_stats_cleanup()
{
char *addr;
struct chirp_stats *s;
if(!stats_table)
stats_table = hash_table_create(0, 0);
hash_table_firstkey(stats_table);
while(hash_table_nextkey(stats_table, &addr, (void **) &s)) {
hash_table_remove(stats_table, addr);
free(s);
}
}
static UINT64_T child_ops = 0;
static UINT64_T child_bytes_read = 0;
static UINT64_T child_bytes_written = 0;
static time_t child_report_time = 0;
void chirp_stats_update(UINT64_T ops, UINT64_T bytes_read, UINT64_T bytes_written)
{
child_ops += ops;
child_bytes_read += bytes_read;
child_bytes_written += bytes_written;
}
void chirp_stats_report(int pipefd, const char *addr, const char *subject, int interval)
{
char line[PIPE_BUF];
if(time(0) - child_report_time > interval) {
snprintf(line, PIPE_BUF, "stats %s %s %" PRId64 " %" PRId64 " %" PRId64 "\n", addr, subject, child_ops, child_bytes_read, child_bytes_written);
write(pipefd, line, strlen(line));
debug(D_DEBUG, "sending stats: %s", line);
child_ops = child_bytes_read = child_bytes_written = 0;
child_report_time = time(0);
}
}
/* vim: set noexpandtab tabstop=4: */
|