uint8_t html = 0;
switch_core_time_duration_t duration;
char *http = NULL;
+ int sps, last_sps;
if (session) {
return SWITCH_STATUS_FALSE;
duration.mms == 1 ? "" : "s");
stream->write_function(stream, "%"SWITCH_SIZE_T_FMT" sessions since startup\n", switch_core_session_id() - 1 );
- stream->write_function(stream, "%d sessions\n", switch_core_session_count());
+ switch_core_session_ctl(SCSC_LAST_SPS, &last_sps);
+ switch_core_session_ctl(SCSC_SPS, &sps);
+ stream->write_function(stream, "%d session(s) %d/%d\n", switch_core_session_count(), last_sps, sps);
if (html) {
stream->write_function(stream, "</b>\n");
}
switch_core_session_ctl(SCSC_LOGLEVEL, &arg);
stream->write_function(stream, "log level: %s [%d]\n", switch_log_level2str(arg), arg);
+ } else if (!strcasecmp(argv[0], "last_sps")) {
+ switch_core_session_ctl(SCSC_LAST_SPS, &arg);
+ stream->write_function(stream, "last sessions per second: %d\n", arg);
} else if (!strcasecmp(argv[0], "sps")) {
if (argc > 1) {
arg = atoi(argv[1]);
uint32_t current_ms = 0;
uint32_t x, tick = 0;
switch_time_t ts = 0;
-
+
memset(&globals, 0, sizeof(globals));
switch_mutex_init(&globals.mutex, SWITCH_MUTEX_NESTED, module_pool);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Over Session Rate of %d!\n", runtime.sps_total);
}
switch_mutex_lock(runtime.throttle_mutex);
+ runtime.sps_last = runtime.sps_total - runtime.sps;
runtime.sps = runtime.sps_total;
switch_mutex_unlock(runtime.throttle_mutex);
tick = 0;