Sample current RSS memory usage.
(state, **kwargs)
| 514 | |
| 515 | @inspect_command() |
| 516 | def memsample(state, **kwargs): |
| 517 | """Sample current RSS memory usage.""" |
| 518 | from celery.utils.debug import sample_mem |
| 519 | return sample_mem() |
| 520 | |
| 521 | |
| 522 | @inspect_command( |
nothing calls this directly
no test coverage detected