| 371 | } |
| 372 | |
| 373 | static void printMetrics(std::ostream& stream = std::cout) |
| 374 | { |
| 375 | stream << "Available error metrics:" << std::endl; |
| 376 | for (const auto& metric : errorMetrics) |
| 377 | { |
| 378 | stream << " " << metric.name << " - " << metric.desc << std::endl; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | int main(int argc, char** argv) |
| 383 | { |