@salesforce/lds-instrumentation 1.260.0 → 1.261.0
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.
|
@@ -1502,4 +1502,4 @@ function onIdleDetected(callback) {
|
|
|
1502
1502
|
const instrumentation = new Instrumentation();
|
|
1503
1503
|
|
|
1504
1504
|
export { Instrumentation, LRUCache, metricKeys as METRIC_KEYS, handleIngestedNewData, handleOnDataOutOfTtlDurationUpdate, incrementCounterMetric, incrementGetRecordNormalInvokeCount, incrementGetRecordNotifyChangeAllowCount, incrementGetRecordNotifyChangeDropCount, incrementNotifyRecordUpdateAvailableAllowCount, incrementNotifyRecordUpdateAvailableDropCount, instrumentAdapter, instrumentLuvio, instrumentMethods, instrumentStoreMethods, instrumentation, logObjectInfoChanged, onIdleDetected, setInstrumentationHooks, setLdsAdaptersUiapiInstrumentation, setLdsNetworkAdapterInstrumentation, setStoreEventObservers, setupInstrumentation, startAdapterActivity, updatePercentileHistogramMetric };
|
|
1505
|
-
// version: 1.
|
|
1505
|
+
// version: 1.261.0-faaa0c74a
|
|
@@ -7,4 +7,5 @@ export declare function getInstrumentation(_name: string): {
|
|
|
7
7
|
startActivity: (_name: string) => any;
|
|
8
8
|
incrementCounter: (_operation: string, _increment?: number | undefined, _hasError?: boolean | undefined, _tags?: any) => void;
|
|
9
9
|
trackValue: (_operation: string, _value: number, _hasError?: boolean | undefined, _tags?: any) => void;
|
|
10
|
+
bucketValue: (_operation: string, _value: number, _buckets: number[]) => void;
|
|
10
11
|
};
|
|
@@ -3,11 +3,13 @@ declare function error(_error: unknown, _userSchemaOrText?: any | string, _userD
|
|
|
3
3
|
declare function startActivity(_name: string): any;
|
|
4
4
|
declare function incrementCounter(_operation: string, _increment?: number, _hasError?: boolean, _tags?: any): void;
|
|
5
5
|
declare function trackValue(_operation: string, _value: number, _hasError?: boolean, _tags?: any): void;
|
|
6
|
+
declare function bucketValue(_operation: string, _value: number, _buckets: number[]): void;
|
|
6
7
|
export declare const instrumentation: {
|
|
7
8
|
log: typeof log;
|
|
8
9
|
error: typeof error;
|
|
9
10
|
startActivity: typeof startActivity;
|
|
10
11
|
incrementCounter: typeof incrementCounter;
|
|
11
12
|
trackValue: typeof trackValue;
|
|
13
|
+
bucketValue: typeof bucketValue;
|
|
12
14
|
};
|
|
13
15
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-instrumentation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Instrumentation utils for Lightning Data Service",
|
|
6
6
|
"main": "dist/ldsInstrumentation.js",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-instrumentation"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@salesforce/lds-bindings": "^1.
|
|
37
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
38
|
-
"@salesforce/lds-utils-adapters": "^1.
|
|
36
|
+
"@salesforce/lds-bindings": "^1.261.0",
|
|
37
|
+
"@salesforce/lds-default-luvio": "^1.261.0",
|
|
38
|
+
"@salesforce/lds-utils-adapters": "^1.261.0",
|
|
39
39
|
"o11y": "244.0.0",
|
|
40
40
|
"o11y_schema": "244.37.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
44
|
-
"@salesforce/lds-network-adapter": "^1.
|
|
45
|
-
"@salesforce/nimbus-plugin-lds": "^1.
|
|
43
|
+
"@salesforce/lds-adapters-uiapi": "^1.261.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.261.0",
|
|
45
|
+
"@salesforce/nimbus-plugin-lds": "^1.261.0"
|
|
46
46
|
},
|
|
47
47
|
"luvioBundlesize": [
|
|
48
48
|
{
|