| 429 | |
| 430 | |
| 431 | const string MemoryProfiler::DOWNLOAD_RAW_HELP() |
| 432 | { |
| 433 | return HELP( |
| 434 | TLDR( |
| 435 | "Returns a raw memory profile."), |
| 436 | DESCRIPTION( |
| 437 | "Returns a file that was generated when the '/stop' endpoint", |
| 438 | "was last accessed. See the jemalloc [manual page][manpage] for", |
| 439 | "information about the file format.", |
| 440 | "", |
| 441 | "Query parameters:", |
| 442 | "", |
| 443 | "> id=VALUE Optional parameter to request a specific", |
| 444 | "> version of the profile."), |
| 445 | AUTHENTICATION(true), |
| 446 | None(), |
| 447 | REFERENCES("[manpage]: http://jemalloc.net/jemalloc.3.html")); |
| 448 | } |
| 449 | |
| 450 | |
| 451 | const string MemoryProfiler::DOWNLOAD_TEXT_HELP() |
nothing calls this directly
no test coverage detected