foundationdb/flow/Histogram.cpp

262 lines
7.8 KiB
C++
Raw Normal View History

/*
* Histogram.cpp
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <flow/Histogram.h>
#include <flow/flow.h>
#include <flow/UnitTest.h>
// TODO: remove dependency on fdbrpc.
// we need to be able to check if we're in simulation so that the histograms are properly
// scoped to the right "machine".
// either we pull g_simulator into flow, or flow (and the I/O path) will be unable to log performance
// metrics.
#include <fdbrpc/simulator.h>
2021-06-05 00:52:29 +08:00
#include <limits>
2020-11-06 02:26:51 +08:00
// pull in some global pointers too: These types are implemented in fdbrpc/sim2.actor.cpp, which is not available here.
// Yuck. If you're not using the simulator, these will remain null, and all should be well.
// TODO: create a execution context abstraction that allows independent flow instances within a process.
// The simulator would be the main user of it, and histogram would be the only other user (for now).
ISimulator* g_pSimulator = nullptr;
thread_local ISimulator::ProcessInfo* ISimulator::currentProcess = nullptr;
// Fallback registry when we're not in simulation -- if we had execution contexts we wouldn't need to check if
// we have a simulated contex here; we'd just use the current context regardless.
2020-11-06 02:26:51 +08:00
static HistogramRegistry* globalHistograms = nullptr;
#pragma region HistogramRegistry
2020-11-06 02:26:51 +08:00
HistogramRegistry& GetHistogramRegistry() {
ISimulator::ProcessInfo* info = g_network && g_network->isSimulated() ? g_simulator.getCurrentProcess() : nullptr;
2020-11-06 02:26:51 +08:00
if (info) {
// in simulator; scope histograms to simulated process
return info->histograms;
}
// avoid link order issues where the registry hasn't been initialized, but we're
// instantiating a histogram
if (globalHistograms == nullptr) {
// Note: This will show up as a leak on shutdown, but we're OK with that.
2020-11-06 02:26:51 +08:00
globalHistograms = new HistogramRegistry();
}
return *globalHistograms;
}
2020-11-06 02:26:51 +08:00
void HistogramRegistry::registerHistogram(Histogram* h) {
if (histograms.find(h->name()) != histograms.end()) {
TraceEvent(SevError, "HistogramDoubleRegistered").detail("group", h->group).detail("op", h->op);
ASSERT(false);
}
histograms.insert(std::pair<std::string, Histogram*>(h->name(), h));
}
2020-11-06 02:26:51 +08:00
void HistogramRegistry::unregisterHistogram(Histogram* h) {
std::string name = h->name();
if (histograms.find(name) == histograms.end()) {
2020-11-06 02:26:51 +08:00
TraceEvent(SevError, "HistogramNotRegistered").detail("group", h->group).detail("op", h->op);
}
int count = histograms.erase(name);
ASSERT(count == 1);
}
Histogram* HistogramRegistry::lookupHistogram(std::string const& name) {
2020-11-06 02:26:51 +08:00
auto h = histograms.find(name);
if (h == histograms.end()) {
return nullptr;
}
return h->second;
}
void HistogramRegistry::logReport() {
2020-11-06 02:26:51 +08:00
for (auto& i : histograms) {
i.second->writeToLog();
i.second->clear();
}
}
#pragma endregion // HistogramRegistry
#pragma region Histogram
2021-07-15 08:26:24 +08:00
const char* const Histogram::UnitToStringMapper[] = { "microseconds",
"bytes",
"bytes_per_second",
"percentage",
2021-07-15 09:22:38 +08:00
"count" };
2021-07-15 07:31:13 +08:00
void Histogram::writeToLog() {
2020-11-06 02:26:51 +08:00
bool active = false;
for (uint32_t i = 0; i < 32; i++) {
if (buckets[i]) {
active = true;
break;
}
}
if (!active) {
return;
}
TraceEvent e(SevInfo, "Histogram");
2021-07-15 07:31:13 +08:00
e.detail("Group", group).detail("Op", op).detail("Unit", UnitToStringMapper[(size_t)unit]);
2021-07-27 08:40:34 +08:00
int totalCount = 0;
2020-11-06 02:26:51 +08:00
for (uint32_t i = 0; i < 32; i++) {
uint64_t value = uint64_t(1) << (i + 1);
2020-11-06 02:26:51 +08:00
if (buckets[i]) {
2021-07-27 08:40:34 +08:00
totalCount += buckets[i];
2020-11-06 02:26:51 +08:00
switch (unit) {
case Unit::microseconds:
e.detail(format("LessThan%u.%03u", value / 1000, value % 1000), buckets[i]);
2020-11-06 02:26:51 +08:00
break;
case Unit::bytes:
case Unit::bytes_per_second:
e.detail(format("LessThan%u", value), buckets[i]);
2020-11-06 02:26:51 +08:00
break;
2021-06-24 05:54:41 +08:00
case Unit::percentage:
2021-07-13 07:07:18 +08:00
e.detail(format("LessThan%f", (i + 1) * 0.04), buckets[i]);
2021-06-24 05:54:41 +08:00
break;
2021-07-15 09:22:38 +08:00
case Unit::count:
2021-07-13 07:07:18 +08:00
e.detail(format("LessThan%f", (i + 1) * ((upperBound - lowerBound) / 31.0)), buckets[i]);
2021-06-29 07:32:04 +08:00
break;
2020-11-06 02:26:51 +08:00
default:
ASSERT(false);
}
}
}
2021-07-27 08:40:34 +08:00
e.detail("TotalCount", totalCount);
}
2021-07-13 07:07:18 +08:00
std::string Histogram::drawHistogram() {
std::stringstream result;
const char* verticalLine = "\0";
const char* origin = "\0";
const char* emptyCell = "------\0";
const char* halfCell = "---▄▄▄\0";
const char* fullCell = "---███\0";
const char* xFull = "---▀▀▀\0";
const char* xEmpty = "------\0";
const char* lineEnd = "--- \0";
const unsigned int width = std::strlen(emptyCell);
int max_lines = 23;
uint32_t total = 0;
double maxPct = 0;
2021-07-13 07:07:18 +08:00
for (int i = 0; i < 32; i++) {
total += buckets[i];
}
2021-07-13 07:07:18 +08:00
for (int i = 0; i < 32; i++) {
maxPct = std::max(maxPct, (100.0 * buckets[i]) / total);
}
2021-07-13 07:07:18 +08:00
double intervalSize = (maxPct < (max_lines - 3)) ? 1 : maxPct / (max_lines - 3);
unsigned int lines = (maxPct < (max_lines - 3)) ? (unsigned int)maxPct : (max_lines - 3);
2021-07-13 07:07:18 +08:00
result << "Total Inputs: " << total << std::fixed << "\n";
result << "Percent"
<< "\n";
for (int l = 0; l < lines; l++) {
double currHeight = (lines - l) * intervalSize;
double halfFullHeight = currHeight - intervalSize / 4;
2021-07-13 07:07:18 +08:00
result << std::setw(6) << std::setprecision(2) << currHeight << " " << verticalLine;
for (int i = 0; i < 32; i++) {
double pct = (100.0 * buckets[i]) / total;
2021-07-13 07:07:18 +08:00
if (pct > currHeight)
result << fullCell;
else if (pct > halfFullHeight)
result << halfCell;
else
result << emptyCell;
}
2021-07-13 07:07:18 +08:00
result << lineEnd << "\n";
}
2021-07-13 07:07:18 +08:00
result << " 0.00 " << origin;
for (int i = 0; i < 32; i++) {
double pct = (100.0 * buckets[i]) / total;
2021-07-13 07:07:18 +08:00
if (pct > intervalSize / 4)
result << xFull;
else
result << xEmpty;
}
2021-07-13 07:07:18 +08:00
result << lineEnd << "\n";
2021-07-13 07:07:18 +08:00
result << std::string(9, ' ');
for (int i = 0; i < 32; i++) {
result << std::left << std::setw(width) << " B" + std::to_string(i);
}
2021-07-13 07:07:18 +08:00
result << "\n";
return result.str();
}
#pragma endregion // Histogram
TEST_CASE("/flow/histogram/smoke_test") {
2020-11-06 02:26:51 +08:00
{
Reference<Histogram> h =
Histogram::getHistogram(LiteralStringRef("smoke_test"), LiteralStringRef("counts"), Histogram::Unit::bytes);
2020-11-06 02:26:51 +08:00
h->sample(0);
ASSERT(h->buckets[0] == 1);
h->sample(1);
ASSERT(h->buckets[0] == 2);
2020-11-06 02:26:51 +08:00
h->sample(2);
ASSERT(h->buckets[1] == 1);
2020-11-06 02:26:51 +08:00
GetHistogramRegistry().logReport();
2020-11-06 02:26:51 +08:00
ASSERT(h->buckets[0] == 0);
h->sample(0);
ASSERT(h->buckets[0] == 1);
h = Histogram::getHistogram(
LiteralStringRef("smoke_test"), LiteralStringRef("counts2"), Histogram::Unit::bytes);
2020-11-06 02:26:51 +08:00
// confirm that old h was deallocated.
h = Histogram::getHistogram(LiteralStringRef("smoke_test"), LiteralStringRef("counts"), Histogram::Unit::bytes);
ASSERT(h->buckets[0] == 0);
h = Histogram::getHistogram(
LiteralStringRef("smoke_test"), LiteralStringRef("times"), Histogram::Unit::microseconds);
2020-11-06 02:26:51 +08:00
h->sampleSeconds(0.000000);
h->sampleSeconds(0.0000019);
ASSERT(h->buckets[0] == 2);
h->sampleSeconds(0.0000021);
ASSERT(h->buckets[1] == 1);
h->sampleSeconds(0.000015);
ASSERT(h->buckets[3] == 1);
2020-11-06 02:26:51 +08:00
h->sampleSeconds(4400.0);
ASSERT(h->buckets[31] == 1);
2020-11-06 02:26:51 +08:00
GetHistogramRegistry().logReport();
}
2020-11-06 02:26:51 +08:00
// h has been deallocated. Does this crash?
GetHistogramRegistry().logReport();
return Void();
}