UNPKG

skywalking-client-js-netease

Version:

Client-side JavaScript exception and tracing library for Apache SkyWalking APM

59 lines (58 loc) 1.82 kB
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export declare enum ErrorsCategory { AJAX_ERROR = "ajax", RESOURCE_ERROR = "resource", VUE_ERROR = "vue", PROMISE_ERROR = "promise", JS_ERROR = "js", UNKNOWN_ERROR = "unknown" } export declare enum GradeTypeEnum { INFO = "Info", WARNING = "Warning", ERROR = "Error" } export declare enum ReportTypes { ERROR = "/browser/errorLog", ERRORS = "/browser/errorLogs", PERF = "/browser/perfData", SEGMENT = "/v3/segment", SEGMENTS = "/v3/segments" } export declare enum SpanLayerType { UNKNOWN = 0, DATABASE = 1, RPC_FRAMEWORK = 2, HTTP = 3, MQ = 4, CACHE = 4 } export declare const SpanLayer = SpanLayerType.HTTP; export declare enum SpanTypeEnum { ENTRY = 0, EXIT = 1, LOCAL = 2 } export declare const SpanType = SpanTypeEnum.EXIT; export declare enum ReadyStatus { OPENED = 1, DONE = 4 } export declare const ComponentId = 10001; export declare const ServiceTag = "<browser>"; export declare const Version = "0.7.0";