-
Notifications
You must be signed in to change notification settings - Fork 74
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
Index benchmark metadata #346
Index benchmark metadata #346
Conversation
Signed-off-by: Raul Sevilla <[email protected]>
/rerun all |
LGTM! |
Signed-off-by: Raul Sevilla <[email protected]>
/rerun all kube-burner:WORKLOAD=cluster-density ./run.sh |
Results for e2e-benchmarking CI Tests
|
Signed-off-by: Raul Sevilla <[email protected]>
Signed-off-by: Raul Sevilla <[email protected]>
Signed-off-by: Raul Sevilla <[email protected]>
/rerun all |
Results for e2e-benchmarking CI Tests
|
Signed-off-by: Raul Sevilla <[email protected]>
/rerun all |
Sure, I was going nuts cuz I couldn't find any document :D |
Results for e2e-benchmarking CI Tests
|
/rerun all kube-burner:WORKLOAD=max-namespaces ./run.sh |
Results for e2e-benchmarking CI Tests
|
@@ -177,15 +178,16 @@ local METADATA=$(cat << EOF | |||
"total_nodes":"${TOTAL_NODES}", | |||
"sdn_type":"${SDN_TYPE}", | |||
"benchmark":"${BENCHMARK}", | |||
"start_date":"${START_DATE}", | |||
"timestamp":"${START_DATE}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are we changing this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We generally use timestamp as date field in our indexes and grafana is only able to handle a time field (Except for uperf which is uperf_ts, that's something we'll have to change to stantarize)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ohh right yeah, this was added recently
Signed-off-by: Raul Sevilla <[email protected]>
/rerun all |
Results for e2e-benchmarking CI Tests
|
LGTM |
* Index benchmark metadata Signed-off-by: Raul Sevilla <[email protected]> * Add check for workload nodes Signed-off-by: Raul Sevilla <[email protected]> * Add informative log Signed-off-by: Raul Sevilla <[email protected]> * Fix delete CR Signed-off-by: Raul Sevilla <[email protected]> * Set static index variable Signed-off-by: Raul Sevilla <[email protected]> * Timestamp must be on milliseconds Signed-off-by: Raul Sevilla <[email protected]> * Send node count as integer Signed-off-by: Raul Sevilla <[email protected]>
Signed-off-by: Raul Sevilla [email protected]
Description
Index benchmark metadata leveraging the run_benchmark helper. Some benchmarks such as router-perf does not use that wrapper, we'll have to implement this functionallity separately.
Also renaming the start_date to the common timestamp field
Fixes