[sr-dev] git:5.2:64d87fd6: core: action.c - use system time to compute execution duration
Daniel-Constantin Mierla
miconda at gmail.com
Wed Apr 3 11:46:11 CEST 2019
Module: kamailio
Branch: 5.2
Commit: 64d87fd6c8971650749fc5238bc1ddab1a48d1c4
URL: https://github.com/kamailio/kamailio/commit/64d87fd6c8971650749fc5238bc1ddab1a48d1c4
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2019-04-03T11:44:20+02:00
core: action.c - use system time to compute execution duration
(cherry picked from commit a7660333c790572201d8bc2f8c19fb72d3cb442b)
---
Modified: src/core/action.c
---
Diff: https://github.com/kamailio/kamailio/commit/64d87fd6c8971650749fc5238bc1ddab1a48d1c4.diff
Patch: https://github.com/kamailio/kamailio/commit/64d87fd6c8971650749fc5238bc1ddab1a48d1c4.patch
---
diff --git a/src/core/action.c b/src/core/action.c
index 2102c1abe6..e7829c38b1 100644
--- a/src/core/action.c
+++ b/src/core/action.c
@@ -1527,7 +1527,9 @@ int run_actions(struct run_act_ctx* h, struct action* a, struct sip_msg* msg)
{
struct action* t;
int ret;
- unsigned int ms = 0;
+ struct timeval tvb, tve;
+ struct timezone tz;
+ unsigned int tdiff;
ret=E_UNSPEC;
h->rec_lev++;
@@ -1555,8 +1557,11 @@ int run_actions(struct run_act_ctx* h, struct action* a, struct sip_msg* msg)
}
for (t=a; t!=0; t=t->next){
- if(unlikely(cfg_get(core, core_cfg, latency_limit_action)>0))
- ms = TICKS_TO_MS(get_ticks_raw());
+
+ if(unlikely(cfg_get(core, core_cfg, latency_limit_action)>0)
+ && is_printable(cfg_get(core, core_cfg, latency_log))) {
+ gettimeofday(&tvb, &tz);
+ }
_cfg_crt_action = t;
if(unlikely(log_prefix_mode==1)) {
log_prefix_set(msg);
@@ -1566,16 +1571,19 @@ int run_actions(struct run_act_ctx* h, struct action* a, struct sip_msg* msg)
if(unlikely(log_prefix_mode==1)) {
log_prefix_set(msg);
}
- if(unlikely(cfg_get(core, core_cfg, latency_limit_action)>0)) {
- ms = TICKS_TO_MS(get_ticks_raw()) - ms;
- if(ms >= cfg_get(core, core_cfg, latency_limit_action)) {
+ if(unlikely(cfg_get(core, core_cfg, latency_limit_action)>0)
+ && is_printable(cfg_get(core, core_cfg, latency_log))) {
+ gettimeofday(&tve, &tz);
+ tdiff = (tve.tv_sec - tvb.tv_sec) * 1000000
+ + (tve.tv_usec - tvb.tv_usec);
+ if(tdiff >= cfg_get(core, core_cfg, latency_limit_action)) {
LOG(cfg_get(core, core_cfg, latency_log),
"alert - action [%s (%d)]"
- " cfg [%s:%d] took too long [%u ms]\n",
+ " cfg [%s:%d] took too long [%u us]\n",
is_mod_func(t) ?
((cmd_export_t*)(t->val[0].u.data))->name
: "corefunc",
- t->type, (t->cfile)?t->cfile:"", t->cline, ms);
+ t->type, (t->cfile)?t->cfile:"", t->cline, tdiff);
}
}
/* break, return or drop/exit stop execution of the current
More information about the sr-dev
mailing list