| 488 | |
| 489 | |
| 490 | const string MemoryProfiler::STATISTICS_HELP() |
| 491 | { |
| 492 | return HELP( |
| 493 | TLDR( |
| 494 | "Shows memory allocation statistics."), |
| 495 | DESCRIPTION( |
| 496 | "Memory allocation statistics as returned by 'malloc_stats_print()'.", |
| 497 | "These track e.g. the total number of bytes allocated by the current", |
| 498 | "process and the bin-size of these allocations.", |
| 499 | "These statistics are unrelated to the profiling mechanism managed", |
| 500 | "by the '/start' and '/stop' endpoints, and are always accurate.", |
| 501 | "", |
| 502 | "Returns a JSON object."), |
| 503 | AUTHENTICATION(true)); |
| 504 | } |
| 505 | |
| 506 | |
| 507 | const string MemoryProfiler::STATE_HELP() |
nothing calls this directly
no test coverage detected