| 395 | |
| 396 | |
| 397 | const string MemoryProfiler::START_HELP() |
| 398 | { |
| 399 | return HELP( |
| 400 | TLDR( |
| 401 | "Starts collection of stack traces."), |
| 402 | DESCRIPTION( |
| 403 | "Activates memory profiling.", |
| 404 | "The profiling works by statistically sampling the backtraces of", |
| 405 | "calls to 'malloc()'. This requires some additional memory to store", |
| 406 | "the collected data. The required additional space is expected to", |
| 407 | "grow logarithmically.", |
| 408 | "", |
| 409 | "Query parameters:", |
| 410 | "", |
| 411 | "> duration=VALUE How long to collect data before", |
| 412 | "> stopping. (default: 5mins)"), |
| 413 | AUTHENTICATION(true)); |
| 414 | } |
| 415 | |
| 416 | |
| 417 | const string MemoryProfiler::STOP_HELP() |
nothing calls this directly
no test coverage detected