Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ Be sure to review the breaking changes before upgrading.
- `FileOutput` — writes JSONL to a file path or file-like object (wraps the
previous default behaviour).
- `RedisOutput` — writes to a Redis list.
- `HttpOutput` - New for v2 - POST each benchmark result to an HTTP/HTTPS endpoint.

The existing `outfile` parameter and class-level `outfile` attribute continue
to work as shorthand for a single `FileOutput`. Passing both `outfile` and
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ is active out of the box.
| Cgroup CPU/RAM limits (containers, Linux only) | `--mixin cgroup-limits` | `MBCgroupLimits` |
| Function call arguments | — | `MBFunctionCall` |
| Function return value | — | `MBReturnValue` |
| Peak RSS memory over a function call | — | `MBPeakMemory` |
| Peak memory over a function call via `tracemalloc` | — | `MBPeakMemory` |
| Python packages loaded into the caller's globals | — | `MBGlobalPackages` |
| Line-by-line performance profile | — | `MBLineProfiler` |

Expand Down
Loading