first commit

This commit is contained in:
Myk
2025-07-31 23:47:20 +03:00
commit 2186b278a0
5149 changed files with 537218 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
import { IMetricContext } from "./contexts";
/**
* A simple interface for listening for Metric updates. Should be plugged into
* something like Prometheus for recording.
*
* Metric names are defined in metric_names.ts - see documentation on the name
* for what the context object contains. All metrics have a context object,
* with applicable interface. See the IMetricContext interface for more
* information.
* @category Metrics
*/
export interface IMetricListener {
/**
* Called when the given metric should start being tracked. Will be
* paired with a matching onEndMetric() call.
* @param {string} metricName The metric being called.
* @param {IMetricContext} context Context for the metric. Never null.
*/
onStartMetric(metricName: string, context: IMetricContext): void;
/**
* Called when the given metric should stop being tracked. Will have
* started with a matching onStartMetric() call.
* @param {string} metricName The metric being called.
* @param {any} context Context for the metric. Never null.
* @param {number} timeMs The measured time in milliseconds between
* the start and end.
*/
onEndMetric(metricName: string, context: IMetricContext, timeMs: number): void;
/**
* Called when a linear metric (increasing/decreasing number) should
* be incremented.
* @param {string} metricName The metric being called.
* @param {IMetricContext} context Context for the metric. Never null.
* @param {number} amount The amount to add. Never negative or zero.
*/
onIncrement(metricName: string, context: IMetricContext, amount: number): any;
/**
* Called when a linear metric (increasing/decreasing number) should
* be decremented.
* @param {string} metricName The metric being called.
* @param {IMetricContext} context Context for the metric. Never null.
* @param {number} amount The amount to subtract. Never negative or zero.
*/
onDecrement(metricName: string, context: IMetricContext, amount: number): any;
/**
* Called when a linear metric (increasing/decreasing number) should
* be reset to zero.
* @param {string} metricName The metric being called.
* @param {IMetricContext} context Context for the metric. Never null.
*/
onReset(metricName: string, context: IMetricContext): any;
}

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IMetricListener.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"IMetricListener.js","sourceRoot":"","sources":["../../src/metrics/IMetricListener.ts"],"names":[],"mappings":""}

66
node_modules/matrix-bot-sdk/lib/metrics/Metrics.d.ts generated vendored Normal file
View File

@@ -0,0 +1,66 @@
import { IMetricListener } from "./IMetricListener";
import { IMetricContext } from "./contexts";
/**
* Tracks metrics.
* @category Metrics
*/
export declare class Metrics {
private listeners;
private requestStartTimes;
private uid;
/**
* Creates a new Metrics handler with optional parent handler. When
* a parent handler is defined, metrics will be automatically published
* upwards to the parent.
* @param {Metrics} parent Optional parent for upstream metrics.
*/
constructor(parent?: Metrics);
/**
* Registers a metric listener.
* @param {IMetricListener} listener The listener.
*/
registerListener(listener: IMetricListener): void;
/**
* De-registers a metric listener.
* @param {IMetricListener} listener The listener.
*/
unregisterListener(listener: IMetricListener): void;
/**
* Starts a timer on a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
*/
start(metricName: string, context: IMetricContext): void;
/**
* Ends a timer on a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
*/
end(metricName: string, context: IMetricContext): void;
/**
* Increments a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
* @param {number} amount The amount.
*/
increment(metricName: string, context: IMetricContext, amount: number): void;
/**
* Decrements a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
* @param {number} amount The amount.
*/
decrement(metricName: string, context: IMetricContext, amount: number): void;
/**
* Resets a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
*/
reset(metricName: string, context: IMetricContext): void;
/**
* Assigns a unique ID to the context object, returning it back.
* @param {IMetricContext} context The context to modify.
* @returns {IMetricContext} The provided context.
*/
assignUniqueContextId(context: IMetricContext): IMetricContext;
}

128
node_modules/matrix-bot-sdk/lib/metrics/Metrics.js generated vendored Normal file
View File

@@ -0,0 +1,128 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Metrics = void 0;
const __1 = require("..");
/**
* Tracks metrics.
* @category Metrics
*/
class Metrics {
/**
* Creates a new Metrics handler with optional parent handler. When
* a parent handler is defined, metrics will be automatically published
* upwards to the parent.
* @param {Metrics} parent Optional parent for upstream metrics.
*/
constructor(parent = null) {
this.listeners = [];
this.requestStartTimes = {};
this.uid = 0;
if (parent !== null) {
this.registerListener({
onIncrement(metricName, context, amount) {
parent.listeners.forEach(h => h.onIncrement(metricName, context, amount));
},
onDecrement(metricName, context, amount) {
parent.listeners.forEach(h => h.onDecrement(metricName, context, amount));
},
onReset(metricName, context) {
parent.listeners.forEach(h => h.onReset(metricName, context));
},
onStartMetric(metricName, context) {
parent.listeners.forEach(h => h.onStartMetric(metricName, context));
},
onEndMetric(metricName, context, timeMs) {
parent.listeners.forEach(h => h.onEndMetric(metricName, context, timeMs));
},
});
}
}
/**
* Registers a metric listener.
* @param {IMetricListener} listener The listener.
*/
registerListener(listener) {
this.listeners.push(listener);
}
/**
* De-registers a metric listener.
* @param {IMetricListener} listener The listener.
*/
unregisterListener(listener) {
const idx = this.listeners.indexOf(listener);
if (idx !== -1)
this.listeners.splice(idx, 1);
}
/**
* Starts a timer on a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
*/
start(metricName, context) {
this.requestStartTimes[context.uniqueId] = new Date().getTime();
this.listeners.forEach(h => h.onStartMetric(metricName, context));
}
/**
* Ends a timer on a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
*/
end(metricName, context) {
const timeMs = (new Date().getTime()) - this.requestStartTimes[context.uniqueId];
delete this.requestStartTimes[context.uniqueId];
this.listeners.forEach(h => h.onEndMetric(metricName, context, timeMs));
// Trim the context for logging
const trimmedContext = {};
for (const key of Object.keys(context)) {
if (key === 'client') {
const client = context[key];
trimmedContext[key] = `<MatrixClient ${client['userId'] || 'NoCachedUserID'}>`;
}
else if (key === 'intent') {
const intent = context[key];
trimmedContext[key] = `<Intent ${intent['userId'] || 'NoImpersonatedUserID'}>`;
}
else {
trimmedContext[key] = context[key];
}
}
__1.LogService.trace("Metrics", metricName, trimmedContext, timeMs);
}
/**
* Increments a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
* @param {number} amount The amount.
*/
increment(metricName, context, amount) {
this.listeners.forEach(h => h.onIncrement(metricName, context, amount));
}
/**
* Decrements a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
* @param {number} amount The amount.
*/
decrement(metricName, context, amount) {
this.listeners.forEach(h => h.onDecrement(metricName, context, amount));
}
/**
* Resets a metric.
* @param {string} metricName The metric name.
* @param {IMetricContext} context The metric context. Expected to have a unique ID.
*/
reset(metricName, context) {
this.listeners.forEach(h => h.onReset(metricName, context));
}
/**
* Assigns a unique ID to the context object, returning it back.
* @param {IMetricContext} context The context to modify.
* @returns {IMetricContext} The provided context.
*/
assignUniqueContextId(context) {
context.uniqueId = `${new Date().getTime()}-${this.uid++}`;
return context;
}
}
exports.Metrics = Metrics;
//# sourceMappingURL=Metrics.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Metrics.js","sourceRoot":"","sources":["../../src/metrics/Metrics.ts"],"names":[],"mappings":";;;AAEA,0BAAgC;AAEhC;;;GAGG;AACH,MAAa,OAAO;IAKhB;;;;;OAKG;IACH,YAAY,SAAkB,IAAI;QAV1B,cAAS,GAAsB,EAAE,CAAC;QAClC,sBAAiB,GAAoC,EAAE,CAAC;QACxD,QAAG,GAAG,CAAC,CAAC;QASZ,IAAI,MAAM,KAAK,IAAI,EAAE;YACjB,IAAI,CAAC,gBAAgB,CAAC;gBAClB,WAAW,CAAC,UAAkB,EAAE,OAAuB,EAAE,MAAc;oBACnE,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;gBAC9E,CAAC;gBACD,WAAW,CAAC,UAAkB,EAAE,OAAuB,EAAE,MAAc;oBACnE,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;gBAC9E,CAAC;gBACD,OAAO,CAAC,UAAkB,EAAE,OAAuB;oBAC/C,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;gBAClE,CAAC;gBACD,aAAa,CAAC,UAAkB,EAAE,OAAuB;oBACrD,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,aAAa,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;gBACxE,CAAC;gBACD,WAAW,CAAC,UAAkB,EAAE,OAAuB,EAAE,MAAc;oBACnE,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;gBAC9E,CAAC;aACJ,CAAC,CAAC;SACN;IACL,CAAC;IAED;;;OAGG;IACI,gBAAgB,CAAC,QAAyB;QAC7C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IAClC,CAAC;IAED;;;OAGG;IACI,kBAAkB,CAAC,QAAyB;QAC/C,MAAM,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAC7C,IAAI,GAAG,KAAK,CAAC,CAAC;YAAE,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;IAClD,CAAC;IAED;;;;OAIG;IACI,KAAK,CAAC,UAAkB,EAAE,OAAuB;QACpD,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC;QAChE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,aAAa,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;IACtE,CAAC;IAED;;;;OAIG;IACI,GAAG,CAAC,UAAkB,EAAE,OAAuB;QAClD,MAAM,MAAM,GAAG,CAAC,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QACjF,OAAO,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAChD,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;QAExE,+BAA+B;QAC/B,MAAM,cAAc,GAAG,EAAE,CAAC;QAC1B,KAAK,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE;YACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;gBAClB,MAAM,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;gBAC5B,cAAc,CAAC,GAAG,CAAC,GAAG,iBAAiB,MAAM,CAAC,QAAQ,CAAC,IAAI,gBAAgB,GAAG,CAAC;aAClF;iBAAM,IAAI,GAAG,KAAK,QAAQ,EAAE;gBACzB,MAAM,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;gBAC5B,cAAc,CAAC,GAAG,CAAC,GAAG,WAAW,MAAM,CAAC,QAAQ,CAAC,IAAI,sBAAsB,GAAG,CAAC;aAClF;iBAAM;gBACH,cAAc,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;aACtC;SACJ;QAED,cAAU,CAAC,KAAK,CAAC,SAAS,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,CAAC,CAAC;IACpE,CAAC;IAED;;;;;OAKG;IACI,SAAS,CAAC,UAAkB,EAAE,OAAuB,EAAE,MAAc;QACxE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;IAC5E,CAAC;IAED;;;;;OAKG;IACI,SAAS,CAAC,UAAkB,EAAE,OAAuB,EAAE,MAAc;QACxE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC;IAC5E,CAAC;IAED;;;;OAIG;IACI,KAAK,CAAC,UAAkB,EAAE,OAAuB;QACpD,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;IAChE,CAAC;IAED;;;;OAIG;IACI,qBAAqB,CAAC,OAAuB;QAChD,OAAO,CAAC,QAAQ,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,IAAI,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC;QAC3D,OAAO,OAAO,CAAC;IACnB,CAAC;CACJ;AA7HD,0BA6HC"}

51
node_modules/matrix-bot-sdk/lib/metrics/contexts.d.ts generated vendored Normal file
View File

@@ -0,0 +1,51 @@
/**
* Default context for all metrics.
* @category Metrics
*/
import { MatrixClient } from "../MatrixClient";
import { Intent } from "../appservice/Intent";
import { IdentityClient } from "../identity/IdentityClient";
export interface IMetricContext {
/**
* Unique identifier for the context object. Used to differentiate
* contexts over a start/end event.
*/
uniqueId: string;
}
/**
* Metric context for function call metrics.
* @category Metrics
*/
export interface FunctionCallContext extends IMetricContext {
/**
* The function name being called
*/
functionName: string;
}
/**
* Metric context for metrics from a MatrixClient
* @category Metrics
*/
export interface MatrixClientCallContext extends FunctionCallContext {
/**
* The client that raised the metric.
*/
client: MatrixClient;
}
/**
* Metric context for metrics from an IdentityClient
* @category Metrics
*/
export interface IdentityClientCallContext extends FunctionCallContext {
client: IdentityClient;
}
/**
* Metric context for metrics from an Intent
* @category Metrics
*/
export interface IntentCallContext extends MatrixClientCallContext {
/**
* The intent that is raising the metric.
*/
intent: Intent;
}

3
node_modules/matrix-bot-sdk/lib/metrics/contexts.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=contexts.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"contexts.js","sourceRoot":"","sources":["../../src/metrics/contexts.ts"],"names":[],"mappings":""}

View File

@@ -0,0 +1,15 @@
/**
* Times a MatrixClient function call for metrics.
* @category Metrics
*/
export declare function timedMatrixClientFunctionCall(): (_target: unknown, functionName: string, descriptor: PropertyDescriptor) => void;
/**
* Times an IdentityClient function call for metrics.
* @category Metrics
*/
export declare function timedIdentityClientFunctionCall(): (_target: unknown, functionName: string, descriptor: PropertyDescriptor) => void;
/**
* Times an Intent function call for metrics.
* @category Metrics
*/
export declare function timedIntentFunctionCall(): (_target: unknown, functionName: string, descriptor: PropertyDescriptor) => void;

93
node_modules/matrix-bot-sdk/lib/metrics/decorators.js generated vendored Normal file
View File

@@ -0,0 +1,93 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.timedIntentFunctionCall = exports.timedIdentityClientFunctionCall = exports.timedMatrixClientFunctionCall = void 0;
const names_1 = require("./names");
/**
* Times a MatrixClient function call for metrics.
* @category Metrics
*/
function timedMatrixClientFunctionCall() {
return function (_target, functionName, descriptor) {
const originalMethod = descriptor.value;
descriptor.value = async function (...args) {
const context = this.metrics.assignUniqueContextId({
functionName,
client: this,
});
this.metrics.start(names_1.METRIC_MATRIX_CLIENT_FUNCTION_CALL, context);
try {
const result = await originalMethod.apply(this, args);
this.metrics.increment(names_1.METRIC_MATRIX_CLIENT_SUCCESSFUL_FUNCTION_CALL, context, 1);
return result;
}
catch (e) {
this.metrics.increment(names_1.METRIC_MATRIX_CLIENT_FAILED_FUNCTION_CALL, context, 1);
throw e;
}
finally {
this.metrics.end(names_1.METRIC_MATRIX_CLIENT_FUNCTION_CALL, context);
}
};
};
}
exports.timedMatrixClientFunctionCall = timedMatrixClientFunctionCall;
/**
* Times an IdentityClient function call for metrics.
* @category Metrics
*/
function timedIdentityClientFunctionCall() {
return function (_target, functionName, descriptor) {
const originalMethod = descriptor.value;
descriptor.value = async function (...args) {
const context = this.metrics.assignUniqueContextId({
functionName,
client: this,
});
this.metrics.start(names_1.METRIC_IDENTITY_CLIENT_FUNCTION_CALL, context);
try {
const result = await originalMethod.apply(this, args);
this.metrics.increment(names_1.METRIC_IDENTITY_CLIENT_SUCCESSFUL_FUNCTION_CALL, context, 1);
return result;
}
catch (e) {
this.metrics.increment(names_1.METRIC_IDENTITY_CLIENT_FAILED_FUNCTION_CALL, context, 1);
throw e;
}
finally {
this.metrics.end(names_1.METRIC_IDENTITY_CLIENT_FUNCTION_CALL, context);
}
};
};
}
exports.timedIdentityClientFunctionCall = timedIdentityClientFunctionCall;
/**
* Times an Intent function call for metrics.
* @category Metrics
*/
function timedIntentFunctionCall() {
return function (_target, functionName, descriptor) {
const originalMethod = descriptor.value;
descriptor.value = async function (...args) {
const context = this.metrics.assignUniqueContextId({
functionName,
client: this.client,
intent: this,
});
this.metrics.start(names_1.METRIC_INTENT_FUNCTION_CALL, context);
try {
const result = await originalMethod.apply(this, args);
this.metrics.increment(names_1.METRIC_INTENT_SUCCESSFUL_FUNCTION_CALL, context, 1);
return result;
}
catch (e) {
this.metrics.increment(names_1.METRIC_INTENT_FAILED_FUNCTION_CALL, context, 1);
throw e;
}
finally {
this.metrics.end(names_1.METRIC_INTENT_FUNCTION_CALL, context);
}
};
};
}
exports.timedIntentFunctionCall = timedIntentFunctionCall;
//# sourceMappingURL=decorators.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"decorators.js","sourceRoot":"","sources":["../../src/metrics/decorators.ts"],"names":[],"mappings":";;;AAAA,mCAUiB;AAGjB;;;GAGG;AACH,SAAgB,6BAA6B;IACzC,OAAO,UAAS,OAAgB,EAAE,YAAoB,EAAE,UAA8B;QAClF,MAAM,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;QACxC,UAAU,CAAC,KAAK,GAAG,KAAK,WAAU,GAAG,IAAI;YACrC,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAA0B;gBACxE,YAAY;gBACZ,MAAM,EAAE,IAAI;aACf,CAAC,CAAC;YACH,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,0CAAkC,EAAE,OAAO,CAAC,CAAC;YAChE,IAAI;gBACA,MAAM,MAAM,GAAG,MAAM,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;gBACtD,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,qDAA6C,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;gBAClF,OAAO,MAAM,CAAC;aACjB;YAAC,OAAO,CAAC,EAAE;gBACR,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,iDAAyC,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;gBAC9E,MAAM,CAAC,CAAC;aACX;oBAAS;gBACN,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,0CAAkC,EAAE,OAAO,CAAC,CAAC;aACjE;QACL,CAAC,CAAC;IACN,CAAC,CAAC;AACN,CAAC;AArBD,sEAqBC;AAED;;;GAGG;AACH,SAAgB,+BAA+B;IAC3C,OAAO,UAAS,OAAgB,EAAE,YAAoB,EAAE,UAA8B;QAClF,MAAM,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;QACxC,UAAU,CAAC,KAAK,GAAG,KAAK,WAAU,GAAG,IAAW;YAC5C,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAA4B;gBAC1E,YAAY;gBACZ,MAAM,EAAE,IAAI;aACf,CAAC,CAAC;YACH,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,4CAAoC,EAAE,OAAO,CAAC,CAAC;YAClE,IAAI;gBACA,MAAM,MAAM,GAAG,MAAM,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;gBACtD,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,uDAA+C,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;gBACpF,OAAO,MAAM,CAAC;aACjB;YAAC,OAAO,CAAC,EAAE;gBACR,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,mDAA2C,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;gBAChF,MAAM,CAAC,CAAC;aACX;oBAAS;gBACN,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,4CAAoC,EAAE,OAAO,CAAC,CAAC;aACnE;QACL,CAAC,CAAC;IACN,CAAC,CAAC;AACN,CAAC;AArBD,0EAqBC;AAED;;;GAGG;AACH,SAAgB,uBAAuB;IACnC,OAAO,UAAS,OAAgB,EAAE,YAAoB,EAAE,UAA8B;QAClF,MAAM,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;QACxC,UAAU,CAAC,KAAK,GAAG,KAAK,WAAU,GAAG,IAAW;YAC5C,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAoB;gBAClE,YAAY;gBACZ,MAAM,EAAE,IAAI,CAAC,MAAM;gBACnB,MAAM,EAAE,IAAI;aACf,CAAC,CAAC;YACH,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,mCAA2B,EAAE,OAAO,CAAC,CAAC;YACzD,IAAI;gBACA,MAAM,MAAM,GAAG,MAAM,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;gBACtD,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,8CAAsC,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;gBAC3E,OAAO,MAAM,CAAC;aACjB;YAAC,OAAO,CAAC,EAAE;gBACR,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,0CAAkC,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;gBACvE,MAAM,CAAC,CAAC;aACX;oBAAS;gBACN,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,mCAA2B,EAAE,OAAO,CAAC,CAAC;aAC1D;QACL,CAAC,CAAC;IACN,CAAC,CAAC;AACN,CAAC;AAtBD,0DAsBC"}

45
node_modules/matrix-bot-sdk/lib/metrics/names.d.ts generated vendored Normal file
View File

@@ -0,0 +1,45 @@
/**
* Time-series metric for how long a function call takes on MatrixClient. Uses a MatrixClientCallContext.
* @category Metrics
*/
export declare const METRIC_MATRIX_CLIENT_FUNCTION_CALL = "matrix_client_function_call";
/**
* Counter metric for failed function calls on a MatrixClient. Uses a MatrixClientCallContext.
* @category Metrics
*/
export declare const METRIC_MATRIX_CLIENT_FAILED_FUNCTION_CALL = "matrix_client_failed_function_call";
/**
* Counter metric for successful function calls on a MatrixClient. Uses a MatrixClientCallContext.
* @category Metrics
*/
export declare const METRIC_MATRIX_CLIENT_SUCCESSFUL_FUNCTION_CALL = "matrix_client_successful_function_call";
/**
* Time-series metric for how long a function call takes on an IdentityClient. Uses an IdentityClientCallContext.
* @category Metrics
*/
export declare const METRIC_IDENTITY_CLIENT_FUNCTION_CALL = "identity_client_function_call";
/**
* Counter metric for failed function calls on an IdentityClient. Uses an IdentityClientCallContext.
* @category Metrics
*/
export declare const METRIC_IDENTITY_CLIENT_FAILED_FUNCTION_CALL = "identity_client_failed_function_call";
/**
* Counter metric for successful function calls on an IdentityClient. Uses an IdentityClientCallContext.
* @category Metrics
*/
export declare const METRIC_IDENTITY_CLIENT_SUCCESSFUL_FUNCTION_CALL = "identity_client_successful_function_call";
/**
* Time-series metric for how long a function call takes on an Intent. Uses a IntentCallContext.
* @category Metrics
*/
export declare const METRIC_INTENT_FUNCTION_CALL = "intent_function_call";
/**
* Counter metric for failed function calls on an Intent. Uses a IntentCallContext.
* @category Metrics
*/
export declare const METRIC_INTENT_FAILED_FUNCTION_CALL = "intent_failed_function_call";
/**
* Counter metric for successful function calls on an Intent. Uses a IntentCallContext.
* @category Metrics
*/
export declare const METRIC_INTENT_SUCCESSFUL_FUNCTION_CALL = "intent_successful_function_call";

49
node_modules/matrix-bot-sdk/lib/metrics/names.js generated vendored Normal file
View File

@@ -0,0 +1,49 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.METRIC_INTENT_SUCCESSFUL_FUNCTION_CALL = exports.METRIC_INTENT_FAILED_FUNCTION_CALL = exports.METRIC_INTENT_FUNCTION_CALL = exports.METRIC_IDENTITY_CLIENT_SUCCESSFUL_FUNCTION_CALL = exports.METRIC_IDENTITY_CLIENT_FAILED_FUNCTION_CALL = exports.METRIC_IDENTITY_CLIENT_FUNCTION_CALL = exports.METRIC_MATRIX_CLIENT_SUCCESSFUL_FUNCTION_CALL = exports.METRIC_MATRIX_CLIENT_FAILED_FUNCTION_CALL = exports.METRIC_MATRIX_CLIENT_FUNCTION_CALL = void 0;
/**
* Time-series metric for how long a function call takes on MatrixClient. Uses a MatrixClientCallContext.
* @category Metrics
*/
exports.METRIC_MATRIX_CLIENT_FUNCTION_CALL = "matrix_client_function_call";
/**
* Counter metric for failed function calls on a MatrixClient. Uses a MatrixClientCallContext.
* @category Metrics
*/
exports.METRIC_MATRIX_CLIENT_FAILED_FUNCTION_CALL = "matrix_client_failed_function_call";
/**
* Counter metric for successful function calls on a MatrixClient. Uses a MatrixClientCallContext.
* @category Metrics
*/
exports.METRIC_MATRIX_CLIENT_SUCCESSFUL_FUNCTION_CALL = "matrix_client_successful_function_call";
/**
* Time-series metric for how long a function call takes on an IdentityClient. Uses an IdentityClientCallContext.
* @category Metrics
*/
exports.METRIC_IDENTITY_CLIENT_FUNCTION_CALL = "identity_client_function_call";
/**
* Counter metric for failed function calls on an IdentityClient. Uses an IdentityClientCallContext.
* @category Metrics
*/
exports.METRIC_IDENTITY_CLIENT_FAILED_FUNCTION_CALL = "identity_client_failed_function_call";
/**
* Counter metric for successful function calls on an IdentityClient. Uses an IdentityClientCallContext.
* @category Metrics
*/
exports.METRIC_IDENTITY_CLIENT_SUCCESSFUL_FUNCTION_CALL = "identity_client_successful_function_call";
/**
* Time-series metric for how long a function call takes on an Intent. Uses a IntentCallContext.
* @category Metrics
*/
exports.METRIC_INTENT_FUNCTION_CALL = "intent_function_call";
/**
* Counter metric for failed function calls on an Intent. Uses a IntentCallContext.
* @category Metrics
*/
exports.METRIC_INTENT_FAILED_FUNCTION_CALL = "intent_failed_function_call";
/**
* Counter metric for successful function calls on an Intent. Uses a IntentCallContext.
* @category Metrics
*/
exports.METRIC_INTENT_SUCCESSFUL_FUNCTION_CALL = "intent_successful_function_call";
//# sourceMappingURL=names.js.map

1
node_modules/matrix-bot-sdk/lib/metrics/names.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"names.js","sourceRoot":"","sources":["../../src/metrics/names.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACU,QAAA,kCAAkC,GAAG,6BAA6B,CAAC;AAEhF;;;GAGG;AACU,QAAA,yCAAyC,GAAG,oCAAoC,CAAC;AAE9F;;;GAGG;AACU,QAAA,6CAA6C,GAAG,wCAAwC,CAAC;AAEtG;;;GAGG;AACU,QAAA,oCAAoC,GAAG,+BAA+B,CAAC;AAEpF;;;GAGG;AACU,QAAA,2CAA2C,GAAG,sCAAsC,CAAC;AAElG;;;GAGG;AACU,QAAA,+CAA+C,GAAG,0CAA0C,CAAC;AAE1G;;;GAGG;AACU,QAAA,2BAA2B,GAAG,sBAAsB,CAAC;AAElE;;;GAGG;AACU,QAAA,kCAAkC,GAAG,6BAA6B,CAAC;AAEhF;;;GAGG;AACU,QAAA,sCAAsC,GAAG,iCAAiC,CAAC"}