You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
I want to use metrics provided by artillery-plugin-metrics-by-endpoint in thresholds. The problem is that checks always fails whatever the threshold value or the response time of measured requests.
Note: metrics plugins.metrics-by-endpoint.response_time.publish and plugins.metrics-by-endpoint.response_time.filter come from the artillery-plugin-metrics-by-endpoint plugin.
Checks:
fail: plugins.metrics-by-endpoint.response_time.publish.p99 < 9999
fail: plugins.metrics-by-endpoint.response_time.filter.p99 < 9999
Process finished with exit code 1
Hypotesis
This issue happened when a metric name containing - is provided to the function compileExpression from filtrex module because the minus signs are interpreted as subtraction operators.
This behavior is problematic since the naming standard of artillery plugins is to used - in compound names.
The text was updated successfully, but these errors were encountered:
Problem
I want to use metrics provided by artillery-plugin-metrics-by-endpoint in thresholds. The problem is that checks always fails whatever the threshold value or the response time of measured requests.
Example
According the following configuration:
Note: metrics
plugins.metrics-by-endpoint.response_time.publish
andplugins.metrics-by-endpoint.response_time.filter
come from the artillery-plugin-metrics-by-endpoint plugin.And the following results:
Checks an these metrics keep failing:
Hypotesis
This issue happened when a metric name containing
-
is provided to the functioncompileExpression
fromfiltrex
module because the minus signs are interpreted as subtraction operators.This behavior is problematic since the naming standard of artillery plugins is to used
-
in compound names.The text was updated successfully, but these errors were encountered: