-
Notifications
You must be signed in to change notification settings - Fork 546
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
Add automation for Netperf with Azure VMs #3974
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3974 +/- ##
==========================================
- Coverage 87.08% 87.04% -0.05%
==========================================
Files 56 56
Lines 16938 16938
==========================================
- Hits 14751 14744 -7
- Misses 2187 2194 +7 ☔ View full report in Codecov by Sentry. |
nibanks
reviewed
Nov 28, 2023
nibanks
reviewed
Nov 28, 2023
ProjectsByJackHe
changed the title
Add automation for Netperf with Azure VMs for now.
Add automation for Netperf with Azure VMs
Nov 29, 2023
…into jackhe/netperf
nibanks
approved these changes
Jan 11, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Schema for Sqlite database:
-- Table: Environment
CREATE TABLE IF NOT EXISTS Environment (
Environment_ID INTEGER PRIMARY KEY AUTOINCREMENT,
OS TEXT,
OS_type TEXT,
OS_version TEXT,
Architecture TEXT,
[NIC_type ] TEXT,
CPU_type TEXT
);
-- Table: Secnetperf_builds
CREATE TABLE IF NOT EXISTS Secnetperf_builds (
Secnetperf_build_ID INTEGER PRIMARY KEY AUTOINCREMENT,
Secnetperf_commit TEXT,
Build_date_time TEXT,
TLS_enabled INTEGER,
Advanced_build_config TEXT
);
-- Table: Secnetperf_latency_stats
CREATE TABLE IF NOT EXISTS Secnetperf_latency_stats (
Secnetperf_latency_stats_ID INTEGER PRIMARY KEY AUTOINCREMENT,
P0 REAL,
P50 REAL,
P90 REAL,
P99 REAL,
P999 REAL,
P9999 REAL,
P99999 REAL,
P999999 REAL
);
-- Table: Secnetperf_test_runs
CREATE TABLE IF NOT EXISTS Secnetperf_test_runs (
Secnetperf_test_ID INTEGER REFERENCES Secnetperf_tests (Secnetperf_test_ID),
Client_environment_ID INTEGER REFERENCES Environment (Environment_ID),
Server_environment_ID INTEGER REFERENCES Environment (Environment_ID),
Result REAL,
Secnetperf_latency_stats_ID INTEGER
);
-- Table: Secnetperf_tests
CREATE TABLE IF NOT EXISTS Secnetperf_tests (
Secnetperf_test_ID INTEGER PRIMARY KEY AUTOINCREMENT,
Kernel_mode INTEGER,
Run_arguments TEXT
);
Testing
CI & RDP validation
Documentation
Docs added in netperf/docs