count slow frames
This commit is contained in:
parent
9b90b1d302
commit
766e33774c
@ -48,16 +48,14 @@ namespace ix
|
|||||||
auto lt_08 = 100 * frameRateHistogram[7].asFloat() / frameTimeTotal;
|
auto lt_08 = 100 * frameRateHistogram[7].asFloat() / frameTimeTotal;
|
||||||
|
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << msg["id"].asString() << "."
|
ss << msg["id"].asString() << "."
|
||||||
<< msg["device"]["game"].asString() << "."
|
<< msg["device"]["game"].asString() << "."
|
||||||
<< msg["device"]["os_name"].asString() << "."
|
<< msg["device"]["os_name"].asString() << "."
|
||||||
<< removeSpaces(msg["data"]["Tag"].asString());
|
<< removeSpaces(msg["data"]["Tag"].asString());
|
||||||
|
|
||||||
std::string id = ss.str();
|
std::string id = ss.str();
|
||||||
|
|
||||||
statsdClient.gauge(id + ".gt_60", gt_60);
|
statsdClient.gauge(id + ".lt_30", gt_60 + lt_60 + lt_30);
|
||||||
statsdClient.gauge(id + ".lt_60", lt_60);
|
|
||||||
statsdClient.gauge(id + ".lt_30", lt_30);
|
|
||||||
statsdClient.gauge(id + ".lt_20", lt_20);
|
statsdClient.gauge(id + ".lt_20", lt_20);
|
||||||
statsdClient.gauge(id + ".lt_15", lt_15);
|
statsdClient.gauge(id + ".lt_15", lt_15);
|
||||||
statsdClient.gauge(id + ".lt_12", lt_12);
|
statsdClient.gauge(id + ".lt_12", lt_12);
|
||||||
@ -67,6 +65,29 @@ namespace ix
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool processPerfMetricsEventSlowFrames(const Json::Value& msg,
|
||||||
|
StatsdClient& statsdClient)
|
||||||
|
{
|
||||||
|
auto frameRateHistogramCounts = msg["data"]["FrameRateHistogramCounts"];
|
||||||
|
|
||||||
|
int slowFrames = 0;
|
||||||
|
slowFrames += frameRateHistogramCounts[4].asInt();
|
||||||
|
slowFrames += frameRateHistogramCounts[5].asInt();
|
||||||
|
slowFrames += frameRateHistogramCounts[6].asInt();
|
||||||
|
slowFrames += frameRateHistogramCounts[7].asInt();
|
||||||
|
|
||||||
|
std::stringstream ss;
|
||||||
|
ss << msg["id"].asString() << "_slow_frames" << "."
|
||||||
|
<< msg["device"]["game"].asString() << "."
|
||||||
|
<< msg["device"]["os_name"].asString() << "."
|
||||||
|
<< removeSpaces(msg["data"]["Tag"].asString());
|
||||||
|
|
||||||
|
std::string id = ss.str();
|
||||||
|
statsdClient.gauge(id, slowFrames);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
int64_t cobra_metrics_to_statsd_bot(const ix::CobraBotConfig& config,
|
int64_t cobra_metrics_to_statsd_bot(const ix::CobraBotConfig& config,
|
||||||
StatsdClient& statsdClient,
|
StatsdClient& statsdClient,
|
||||||
bool verbose)
|
bool verbose)
|
||||||
@ -95,6 +116,7 @@ namespace ix
|
|||||||
if (msg["id"].asString() == "engine_performance_metrics_id")
|
if (msg["id"].asString() == "engine_performance_metrics_id")
|
||||||
{
|
{
|
||||||
success = processPerfMetricsEvent(msg, statsdClient);
|
success = processPerfMetricsEvent(msg, statsdClient);
|
||||||
|
success |= processPerfMetricsEventSlowFrames(msg, statsdClient);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (success) sentCount++;
|
if (success) sentCount++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user