Searched refs:busy (Results 1 - 15 of 15) sorted by relevance

/httpd/include/
H A Dheartbeat.h44 int busy; member in struct:hm_slot_server_t
H A Dhttpd.h1359 /* percentage of process/threads busy (0->100) */
1360 int busy; member in struct:ap_sload_t
/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_bybusyness.c93 || (*worker)->s->busy < mycandidate->s->busy
94 || ((*worker)->s->busy == mycandidate->s->busy && (*worker)->s->lbstatus > mycandidate->s->lbstatus))
112 "proxy: bybusyness selected worker \"%s\" : busy %" APR_SIZE_T_FMT " : lbstatus %d",
113 mycandidate->s->name, mycandidate->s->busy, mycandidate->s->lbstatus);
128 (*worker)->s->busy = 0;
H A Dmod_lbmethod_bytraffic.c116 "proxy: bytraffic selected worker \"%s\" : busy %" APR_SIZE_T_FMT,
117 mycandidate->s->name, mycandidate->s->busy);
131 (*worker)->s->busy = 0;
H A Dmod_lbmethod_heartbeat.c51 int busy; member in struct:hb_server_t
183 if (apr_table_get(hbt, "busy")) {
184 server->busy = atoi(apr_table_get(hbt, "busy"));
199 if (server->busy == 0 && server->ready != 0) {
228 server->busy = slotserver->busy;
232 if (server->busy == 0 && server->ready != 0) {
H A Dmod_lbmethod_byrequests.c143 "proxy: byrequests selected worker \"%s\" : busy %" APR_SIZE_T_FMT " : lbstatus %d",
144 mycandidate->s->name, mycandidate->s->busy, mycandidate->s->lbstatus);
/httpd/modules/cluster/
H A Dmod_heartbeat.c41 static const char *msg_format = "v=%u&ready=%u&busy=%u";
52 apr_uint32_t busy = 0; local
76 busy++;
81 len = apr_snprintf(buf, sizeof(buf), msg_format, MSG_VERSION, ready, busy);
H A Dmod_heartmonitor.c49 int busy; member in struct:hm_server_t
176 old->busy = new->busy;
206 hmserver.busy = s->busy;
308 if (apr_table_get(hbt, "busy")) {
309 node.busy = atoi(apr_table_get(hbt, "busy"));
311 node.busy = 0;
332 apr_file_printf(fp, "%s &ready=%u&busy
[all...]
/httpd/modules/arch/unix/
H A Dmod_systemd.c78 sload.access_count, sload.idle, sload.busy,
/httpd/modules/generators/
H A Dmod_status.c190 int busy; local
231 busy = 0;
330 busy++;
523 "%d idle workers</dt>\n", busy, ready);
525 ap_rprintf(r, "BusyWorkers: %d\nIdleWorkers: %d\n", busy, ready);
534 * These differ from 'busy' and 'ready' in how gracefully finishing
545 "<th>busy</th><th>idle</th><th>writing</th>"
/httpd/modules/proxy/
H A Dmod_serf.c809 int busy; member in struct:hb_server_t
897 if (apr_table_get(hbt, "busy")) {
898 server->busy = atoi(apr_table_get(hbt, "busy"));
913 if (server->busy == 0 && server->ready != 0) {
H A Dmod_proxy_balancer.c446 if (worker->s->busy) {
447 worker->s->busy--;
585 (*worker)->s->busy++;
1378 " <httpd:busy>%" APR_SIZE_T_FMT "</httpd:busy>\n",
1379 worker->s->busy);
1549 ap_rprintf(r, "<td>%" APR_SIZE_T_FMT "</td>", worker->s->busy);
H A Dmod_proxy.h383 apr_size_t busy; /* busyness factor */ member in struct:__anon284
/httpd/server/
H A Dutil.c2994 int busy = 0; local
3000 ld->busy = -1;
3025 busy++;
3038 total = busy + ready;
3041 ld->busy = busy * 100 / total;
/httpd/modules/metadata/
H A Dmod_headers.c245 return apr_psprintf(r->pool, "b=%d", t.busy);

Completed in 1787 milliseconds