Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update stress test results for eventheader #140

Merged
merged 3 commits into from
Dec 12, 2024
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
4 changes: 2 additions & 2 deletions stress/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[[bin]] # Bin to run the metrics stress tests for Logs UserEvent Exporter
name = "user-events-enabled"
path = "src/user_events_enabled.rs"
name = "eventheader"
path = "src/eventheader.rs"
doc = false

[dependencies]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// To run the test, execute the following command in the stress directory as sudo:
// sudo -E ~/.cargo/bin/cargo rnu --bin user-events-enabled --release
// sudo -E ~/.cargo/bin/cargo run --bin eventheader --release -- <num-of-threads>

// TODO : Add stess result here.
// Conf - AMD EPYC 7763 64-Core Processor 2.44 GHz, 64GB RAM, Cores:8 , Logical processors: 16
// Number of threads 1: 231,423,880 iterations/sec
// Number of threads 2: 27,482,150 iterations/sec
// Number of threads 16: 26,651,534 iterations/sec

mod throughput;
use eventheader_dynamic::{Provider, ProviderOptions};
Expand Down
Loading