Github user jacksontj commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/653#discussion_r65805818 --- Diff: iocore/hostdb/P_RefCountCache.h --- @@ -281,6 +311,14 @@ RefCountCachePartition<C>::copy(std::vector<RefCountCacheHashingValue> *items) } } +template <class C> +void +RefCountCachePartition<C>::metric_inc(int metric_enum, int64_t data) { + if (this->rsb) { + RecIncrGlobalRawStatCount(this->rsb, metric_enum, data); --- End diff -- Maybe? Whats there now works (meaning the numbers are correct). When I switch to that the metrics seems all messed up, presumably because they are of type `RecRawStatSyncCount` -- is there just a RecRawStatSync (not that exact name, I looked-- can't find the equivalent).
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---