@nsshunt/stsobservability 1.0.7 → 1.0.8
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.
|
@@ -5497,6 +5497,12 @@ const _ObservabilityModelUtils = class _ObservabilityModelUtils {
|
|
|
5497
5497
|
...globalServiceDefinitions.services[serviceType].fieldList
|
|
5498
5498
|
];
|
|
5499
5499
|
fieldList.forEach((field) => {
|
|
5500
|
+
console.log(`${field.fieldName} ${field.histo}`);
|
|
5501
|
+
if (field.histo) {
|
|
5502
|
+
console.log(` YES has histo`);
|
|
5503
|
+
} else {
|
|
5504
|
+
console.log(` NO has histo`);
|
|
5505
|
+
}
|
|
5500
5506
|
if (field.quantile) {
|
|
5501
5507
|
_ObservabilityModelUtils.ParseModelNodeWithQuantile(model, data, parseLog, field.gauge, field.fieldName, `${field.fieldName}_quantile`);
|
|
5502
5508
|
} else if (field.histo) {
|