log requests/sec stats per worker

personal/stbuehler/wip
Stefan Bühler 15 years ago
parent a17aa92250
commit 3c00360259

@ -19,18 +19,6 @@ struct server_socket {
ev_io watcher;
};
struct statistics_t;
typedef struct statistics_t statistics_t;
struct statistics_t {
guint64 bytes_out; /** bytes transfered, outgoing */
guint64 bytes_int; /** bytes transfered, incoming */
guint64 requests; /** processed requests */
guint64 actions_executed; /** actions executed */
};
struct worker;
struct server {

@ -164,6 +164,25 @@ static void worker_new_con_cb(struct ev_loop *loop, ev_async *w, int revents) {
}
}
/* stat watcher */
static void worker_stat_watcher_cb(struct ev_loop *loop, ev_timer *w, int revents) {
worker *wrk = (worker*) w->data;
UNUSED(loop);
UNUSED(revents);
ev_tstamp now = ev_now(wrk->loop);
if (wrk->stats.last_update && now != wrk->stats.last_update) {
wrk->stats.requests_per_sec =
(wrk->stats.requests - wrk->stats.last_requests) / (now - wrk->stats.last_update);
if (wrk->stats.requests_per_sec > 0)
TRACE(wrk->srv, "worker %u: %2f requests per second", wrk->ndx, wrk->stats.requests_per_sec);
}
wrk->stats.last_requests = wrk->stats.requests;
wrk->stats.last_update = now;
}
/* init */
worker* worker_new(struct server *srv, struct ev_loop *loop) {
@ -197,6 +216,11 @@ worker* worker_new(struct server *srv, struct ev_loop *loop) {
ev_async_start(wrk->loop, &wrk->new_con_watcher);
wrk->new_con_queue = g_async_queue_new();
ev_timer_init(&wrk->stat_watcher, worker_stat_watcher_cb, 1, 1);
wrk->stat_watcher.data = wrk;
ev_timer_start(wrk->loop, &wrk->stat_watcher);
ev_unref(wrk->loop); /* this watcher shouldn't keep the loop alive */
return wrk;
}
@ -235,6 +259,9 @@ void worker_free(worker *wrk) {
g_async_queue_unref(wrk->new_con_queue);
ev_ref(wrk->loop);
ev_timer_stop(wrk->loop, &wrk->stat_watcher);
g_slice_free(worker, wrk);
}

@ -6,6 +6,23 @@ typedef struct worker worker;
struct server;
struct statistics_t;
typedef struct statistics_t statistics_t;
struct statistics_t {
guint64 bytes_out; /** bytes transfered, outgoing */
guint64 bytes_int; /** bytes transfered, incoming */
guint64 requests; /** processed requests */
guint64 actions_executed; /** actions executed */
/* updated in timer */
guint64 last_requests;
double requests_per_sec;
ev_tstamp last_update;
};
#include "settings.h"
#define CUR_TS(wrk) ((time_t)ev_now((wrk)->loop))
@ -50,6 +67,7 @@ struct worker {
ev_async new_con_watcher;
GAsyncQueue *new_con_queue;
ev_timer stat_watcher;
statistics_t stats;
};

Loading…
Cancel
Save