| 449 | |
| 450 | |
| 451 | const string MemoryProfiler::DOWNLOAD_TEXT_HELP() |
| 452 | { |
| 453 | return HELP( |
| 454 | TLDR( |
| 455 | "Generates and returns a symbolized memory profile."), |
| 456 | DESCRIPTION( |
| 457 | "Generates a symbolized profile.", |
| 458 | "Requires that the running binary was built with symbols and that", |
| 459 | "jeprof is installed on the host machine.", |
| 460 | "", |
| 461 | "**NOTE:** Generating the returned file might take several minutes.", |
| 462 | "", |
| 463 | "Query parameters:", |
| 464 | "> id=VALUE Optional parameter to request a specific", |
| 465 | "> version of the generated profile."), |
| 466 | AUTHENTICATION(true)); |
| 467 | } |
| 468 | |
| 469 | |
| 470 | const string MemoryProfiler::DOWNLOAD_GRAPH_HELP() |
nothing calls this directly
no test coverage detected