@blueking/open-telemetry 0.0.3 → 0.0.4
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.
- package/package.json +2 -3
- package/src/index.ts +0 -55
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueking/open-telemetry",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "OpenTelemetry browser SDK for BK RUM",
|
|
5
5
|
"author": "TencentCloud Real User Monitoring",
|
|
6
|
-
"main": "
|
|
7
|
-
"types": "src/index.ts",
|
|
6
|
+
"main": "dist/index.js",
|
|
8
7
|
"unpkg": "dist/bk-rum.global.js",
|
|
9
8
|
"jsdelivr": "dist/bk-rum.global.js",
|
|
10
9
|
"license": "MIT",
|
package/src/index.ts
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Tencent is pleased to support the open source community by making
|
|
3
|
-
* 蓝鲸智云PaaS平台 (BlueKing PaaS) available.
|
|
4
|
-
*
|
|
5
|
-
* Copyright (C) 2017-2025 Tencent. All rights reserved.
|
|
6
|
-
*
|
|
7
|
-
* 蓝鲸智云PaaS平台 (BlueKing PaaS) is licensed under the MIT License.
|
|
8
|
-
*
|
|
9
|
-
* License for 蓝鲸智云PaaS平台 (BlueKing PaaS):
|
|
10
|
-
*
|
|
11
|
-
* ---------------------------------------------------
|
|
12
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
13
|
-
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation
|
|
14
|
-
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
|
|
15
|
-
* to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
16
|
-
*
|
|
17
|
-
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of
|
|
18
|
-
* the Software.
|
|
19
|
-
*
|
|
20
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
21
|
-
* THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
23
|
-
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
24
|
-
* IN THE SOFTWARE.
|
|
25
|
-
*/
|
|
26
|
-
|
|
27
|
-
export {
|
|
28
|
-
type BkOTAttributesConfig,
|
|
29
|
-
type BkOTAttributeValue,
|
|
30
|
-
type BkOTBatchConfig,
|
|
31
|
-
type BkOTConfig,
|
|
32
|
-
type BkOTCustomEventPayload,
|
|
33
|
-
type BkOTHttpBodyConfig,
|
|
34
|
-
type BkOTHttpBodyRedactPayload,
|
|
35
|
-
type BkOTRedactConfig,
|
|
36
|
-
type BkOTRumConfig,
|
|
37
|
-
normalizeConfig,
|
|
38
|
-
type NormalizedBkOTConfig,
|
|
39
|
-
type SignalExporterConfig,
|
|
40
|
-
} from './core/config';
|
|
41
|
-
export { type BkOTPlugin, type BkOTRuntimeContext, createPlugin, type PluginManager } from './core/plugin';
|
|
42
|
-
export { FilteringSpanProcessor } from './core/processor';
|
|
43
|
-
export { type BkOTInstance, createBkOT, initBkOT } from './core/sdk';
|
|
44
|
-
export { createBlankScreenPlugin } from './plugins/blank-screen';
|
|
45
|
-
export { createCommonInstrumentationsPlugin } from './plugins/common';
|
|
46
|
-
export { createCspViolationPlugin } from './plugins/csp-violation';
|
|
47
|
-
export { createDevicePlugin } from './plugins/device';
|
|
48
|
-
export { createErrorPlugin } from './plugins/error';
|
|
49
|
-
export { createHttpBodyPlugin } from './plugins/http-body';
|
|
50
|
-
export { createLongTaskPlugin } from './plugins/long-task';
|
|
51
|
-
export { createPageViewPlugin } from './plugins/page-view';
|
|
52
|
-
export { createRouteTimingPlugin } from './plugins/route-timing';
|
|
53
|
-
export { createSessionPlugin } from './plugins/session';
|
|
54
|
-
export { createWebVitalsPlugin } from './plugins/web-vitals';
|
|
55
|
-
export { createWebSocketPlugin } from './plugins/websocket';
|