Lines Matching refs:item
237 for (auto item : memStrategy_) {
238 repeateValue += PROCESS_METRICES + PROCESS_NAME + "\"" + item.processName + "\"," + OVERALL_COUNTERS +
239 ANON_RSS + MIN + std::to_string(item.overallCounters.min) + "," + MAX +
240 std::to_string(item.overallCounters.max) + "," + AVG +
241 std::to_string(item.overallCounters.avg) + "}}},";
247 for (auto item : memStrategy_) {
248 repeateValue += PROCESS_METRICES + PROCESS_NAME + "\"" + item.processName + "\"," + OVERALL_COUNTERS +
249 ANON_RSS + MIN + std::to_string(item.overallCounters.min) + "," + MAX +
250 std::to_string(item.overallCounters.max) + "," + AVG +
251 std::to_string(item.overallCounters.avg) + "}}},";
257 for (auto item : memAggStrategy_) {
258 repeateValue += PROCESS_VALUES + PROCESS_NAME + "\"" + item.processName + "\"," + ANON_RSS + TS +
259 std::to_string(item.anonRss.ts) + "," + OOM_SCORE + std::to_string(item.anonRss.oomScore) +
260 "," + VALUE + std::to_string(item.anonRss.value) + "}," + FILE_RSS + TS +
261 std::to_string(item.fileRss.ts) + "," + OOM_SCORE + std::to_string(item.fileRss.oomScore) +
262 "," + VALUE + std::to_string(item.fileRss.value) + "}," + SWAP + TS +
263 std::to_string(item.swap.ts) + "," + OOM_SCORE + std::to_string(item.swap.oomScore) + "," +
264 VALUE + std::to_string(item.swap.value) + "}},";
270 for (auto item : taskNameStrategy_) {
271 repeateValue += PROCESS + PID + std::to_string(item.pid) + "," + PROCESS_NAME + "\"" + item.processName + "\",";
272 for (auto threadItem : item.threadName) {
282 for (auto item : statStrategy_) {
283 repeateValue += STAT + NAME + "\"" + item.name + "\"," + COUNT + std::to_string(item.count) + "," + SOURCE +
284 "\"" + item.source + "\"," + SEVERITY + "\"" + item.severity + "\"" + "},";
290 for (auto item : metaDataStrategy_) {
292 TRACE_METADATA + ":{" + NAME + "\"" + item.name + "\"," + VALUE + "\"" + item.value + "\"" + "},";
298 for (auto item : sysCallStrategy_) {
299 repeateValue += FUNCTION + FUNCTION_NAME + "\"" + item.functionName + "\"," + DUR_MAX +
300 std::to_string(item.durMax) + "," + DUR_MIN + std::to_string(item.durMin) + "," + DUR_AVG +
301 std::to_string(item.durAvg) + "},";