UNPKG

1.34 kBTypeScriptView Raw
1/**
2 * Time-series metric for how long a function call takes on MatrixClient. Uses a MatrixClientCallContext.
3 * @category Metrics
4 */
5export declare const METRIC_MATRIX_CLIENT_FUNCTION_CALL = "matrix_client_function_call";
6/**
7 * Counter metric for failed function calls on a MatrixClient. Uses a MatrixClientCallContext.
8 * @category Metrics
9 */
10export declare const METRIC_MATRIX_CLIENT_FAILED_FUNCTION_CALL = "matrix_client_failed_function_call";
11/**
12 * Counter metric for successful function calls on a MatrixClient. Uses a MatrixClientCallContext.
13 * @category Metrics
14 */
15export declare const METRIC_MATRIX_CLIENT_SUCCESSFUL_FUNCTION_CALL = "matrix_client_successful_function_call";
16/**
17 * Time-series metric for how long a function call takes on an Intent. Uses a IntentCallContext.
18 * @category Metrics
19 */
20export declare const METRIC_INTENT_FUNCTION_CALL = "intent_function_call";
21/**
22 * Counter metric for failed function calls on an Intent. Uses a IntentCallContext.
23 * @category Metrics
24 */
25export declare const METRIC_INTENT_FAILED_FUNCTION_CALL = "intent_failed_function_call";
26/**
27 * Counter metric for successful function calls on an Intent. Uses a IntentCallContext.
28 * @category Metrics
29 */
30export declare const METRIC_INTENT_SUCCESSFUL_FUNCTION_CALL = "intent_successful_function_call";