Learn how to use the mean latency test
The mean latency test ensures that the mean latency for the data is within a given range.
If you are writing a tests.json, here are a few valid configurations for the character length test:
tests.json
[ { "name": "Mean latency below 8000 msec", "description": "Make sure that the mean latency is below 8000 msec", "type": "performance", "subtype": "metricThreshold", "thresholds": [ { "insightName": "metrics", "insightParameters": null, "measurement": "meanLatency", "operator": "<", "value": 8000 } ], "subpopulationFilters": null, "mode": "development", "usesValidationDataset": true, // Apply test to the validation set "usesTrainingDataset": false, "usesMlModel": false, "syncId": "b4dee7dc-4f15-48ca-a282-63e2c04e0689" // Some unique id } ]
Was this page helpful?