-
I used bench-node to create Bencher JSON with In Bencher report I see that there is no threshold for I also notice no model set for the throughput threshold. I edited that manually and I think the warning disappears when I open a report from Feels like I'm doing something wrong here |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@tpluscode you are only creating a singe Threshold ( --threshold-measure latency \
--threshold-test t_test \
--threshold-max-sample-size 64 \
--threshold-upper-boundary 0.99 \ In order to create an additional Threshold ( --threshold-measure throughput \
--threshold-test t_test \
--threshold-max-sample-size 64 \
--threshold-upper-boundary 0.99 \ See the multiple thresholds section of the docs. Note, the old Reports will still warn that no Threshold is found, even if one now exists as that warning is generated based on the data within the Report itself. |
Beta Was this translation helpful? Give feedback.
@tpluscode you are only creating a singe Threshold (
latency
) for the baseline onmain
:https://github.com/zazuko/rdf-validate-shacl/blob/5ed9c4154d262e0657839093b4db6ca7341571fd/.github/workflows/benchmarks-baseline.yml#L28-L31
In order to create an additional Threshold (
throughput
), you need to add something like this directly below it:See the multiple thresholds …