#### Pre-Submission Checklist <!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply --> <!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above--> <!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list --> - [x] Commit message has the format required by CONTRIBUTING guide - [x] Commits are split per component (core, individual modules, libs, utils, ...) - [x] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README files for modules (changes must be done to docbook files in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change - [ ] Small bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds new functionality) - [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist: <!-- Go over all points below, and after creating the PR, tick the checkboxes that apply --> - [ ] PR should be backported to stable branches - [x] Tested changes locally - [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
I remember there was some discussion about adding DNS statistics, I think I remember a discussion involving @ngvoice Carsten ?
This is adding a parameter to the core `dns_slow_query_ms`
Example: ``` dns_slow_query_ms=100 ```
When using the internal resolver any query taking more than `dns_slow_query_ms` will be lodged as a warning : ``` dns_slow_query_ms=10 (example with 10ms)
5(5960) WARNING: <core> [core/resolve.c:752]: get_record(): res_search[35][us-west-wa.sip.flowroute.com]elapsed[12ms] 5(5960) WARNING: <core> [core/resolve.c:752]: get_record(): res_search[1][ep-us-west-wa-01.flowroute.com]elapsed[12ms] ```
and a statistic counter will be incremented : ``` kamcmd stats.fetch dns:slow_dns_request { dns.slow_dns_request: 1 } ```
I think this will be a good start to monitor the impact of slow DNS queries on Kamailio.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1824
-- Commit Summary --
* core: dns slow queries reporting
-- File Changes --
M src/core/cfg.lex (3) M src/core/cfg.y (3) M src/core/cfg_core.c (3) M src/core/cfg_core.h (1) M src/core/resolve.c (17) M src/core/resolve.h (3)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1824.patch https://github.com/kamailio/kamailio/pull/1824.diff
Thanks! It can be merged, but then I suggest to have a follow up commit to use the value of latency_log instead of L_WARN for printing the message:
* https://www.kamailio.org/wiki/cookbooks/devel/core#latency_log
It can be controlled via modparam and it would become coherent with the other latency related stuff.
modification implemented and tested using latency_log core settings as the logging level .
thanks for the review !
Thanks, merging!
Merged #1824 into master.