| 468 | |
| 469 | |
| 470 | const string MemoryProfiler::DOWNLOAD_GRAPH_HELP() |
| 471 | { |
| 472 | return HELP( |
| 473 | TLDR( |
| 474 | "Generates and returns a graph visualization."), |
| 475 | DESCRIPTION( |
| 476 | "Generates a graphical representation of the raw profile in SVG.", |
| 477 | "Using this endpoint requires that that jeprof and dot are installed", |
| 478 | "on the host machine.", |
| 479 | "", |
| 480 | "**NOTE:** Generating the returned file might take several minutes.", |
| 481 | "", |
| 482 | "Query parameters:", |
| 483 | "", |
| 484 | "> id=VALUE Optional parameter to request a specific", |
| 485 | "> version of the generated graph."), |
| 486 | AUTHENTICATION(true)); |
| 487 | } |
| 488 | |
| 489 | |
| 490 | const string MemoryProfiler::STATISTICS_HELP() |
nothing calls this directly
no test coverage detected