@nsshunt/stsvueutils 1.0.63 → 1.0.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/stsvueutils.mjs +14 -0
- package/dist/stsvueutils.mjs.map +1 -1
- package/dist/stsvueutils.umd.js +14 -0
- package/dist/stsvueutils.umd.js.map +1 -1
- package/package.json +10 -10
- package/types/plugins/stsTestWorkerDefinitions.d.ts +2 -0
- package/types/plugins/stsTestWorkerDefinitions.d.ts.map +1 -1
- package/types/plugins/workerManager.d.ts.map +1 -1
package/dist/stsvueutils.mjs
CHANGED
|
@@ -1929,6 +1929,18 @@ class STSWorkerManager {
|
|
|
1929
1929
|
});
|
|
1930
1930
|
update = true;
|
|
1931
1931
|
}
|
|
1932
|
+
if (runner.instrumentData.authenticationErrorCount) {
|
|
1933
|
+
runnerEx.publishInstrumentController.UpdateInstrument(Gauge.AUTHENTICATION_ERROR_COUNT_GAUGE, {
|
|
1934
|
+
val: runnerEx.instrumentData.authenticationCount
|
|
1935
|
+
});
|
|
1936
|
+
update = true;
|
|
1937
|
+
}
|
|
1938
|
+
if (runner.instrumentData.authenticationRetryCount) {
|
|
1939
|
+
runnerEx.publishInstrumentController.UpdateInstrument(Gauge.AUTHENTICATION_RETRY_COUNT_GAUGE, {
|
|
1940
|
+
val: runnerEx.instrumentData.authenticationCount
|
|
1941
|
+
});
|
|
1942
|
+
update = true;
|
|
1943
|
+
}
|
|
1932
1944
|
if (runner.instrumentData.coreCount) {
|
|
1933
1945
|
runnerEx.publishInstrumentController.UpdateInstrument(Gauge.CORE_COUNT_GAUGE, {
|
|
1934
1946
|
val: runnerEx.instrumentData.coreCount
|
|
@@ -2016,6 +2028,8 @@ class STSWorkerManager {
|
|
|
2016
2028
|
errorCount: 0,
|
|
2017
2029
|
retryCount: 0,
|
|
2018
2030
|
authenticationCount: 0,
|
|
2031
|
+
authenticationErrorCount: 0,
|
|
2032
|
+
authenticationRetryCount: 0,
|
|
2019
2033
|
velocity: 0,
|
|
2020
2034
|
coreCount: 0,
|
|
2021
2035
|
timer: 0,
|