Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@apm-insight-web/rangers-mini-sdk

Package Overview
Dependencies
Maintainers
4
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apm-insight-web/rangers-mini-sdk

## 使用方式

  • 0.4.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
30
increased by50%
Maintainers
4
Weekly downloads
 
Created
Source

APM - Insight 小程序 SDK

使用方式

app.js 中初始化:

import $$Rangers from './vender/rangers' // DataFinder
import Rangers from '@apm-insight-web/rangers-mini-sdk'

Rangers.init({
  aid: 111, // 应用 ID
  finderInstance: $$Rangers, // 如果已有,可接入 DataFinder 实例
  userId: 'xxx', // 或者直接传入用户 ID
  ...
})

App({
  onLaunch() {
    setTimeout(() => {
      Rangers.capture(new Error('oops')) // 手动捕获错误上报
    }, 1000)
    ...
  }
  ...
})

API

  • init 初始化,只能调用一次

    • 参数
      {
        aid: number, // 应用 ID, 必传
        finderInstance?: DataFinderInstance // DataFinder SDK 的实例
        userId?: string // 若传入 DataFinder 实例则优先检测 DataFinder 中已配置的值,否则使用传入值,不传则生成一个随机 UUID
        context?: { // 自定义维度,默认为 {}
          [key: string]: any // 注意,不可序列化的值类型在最终上报时会被丢弃
        }
      }
    
  • config 修改配置

    • 参数
      {
        userId?: string // 修改用户 ID
        context?: { // 覆盖之前的定义的值
          [key: string]: any
        }
      }
    
  • report 发送自定义事件(暂不支持)

  • capture 手动捕获异常上报

  • addBreadcrumb 手动记录用户行为(暂不支持)

  • sendNow 立刻发送上报请求(清空批量上报队列)

  • context 快速修改 context

    • 用法:
    // 通过 config 方法修改
    Rangers.config('context', {
      foo: 'bar',
    })
    // 通过 context 属性获取值
    Rangers.context.get('foo') // => 'bar'
    // 通过 context 属性链式修改
    Rangers.context.set('foo2', 'bar').delete('foo').set('bar', 'foo')
    // 获取目前的 context 对象
    Rangers.context.toObject() // => { foo2: 'bar', bar: 'foo' }
    
    • 最终上报时 context 将会被序列化为 Record<string, string> 类型

事件

  • PageViewPage.onShow 回调时触发
  • JsErrorApp.onError | App.onUncaughtRejection (必须有 reason) 回调时触发,或者手动捕获

数据结构

面包屑 Breadcrumb

用于记录用户行为轨迹

enum BreadcrumbType {
  DOM = 'dom',
  HTTP = 'http',
}

enum BreadcrumbCategory {
  ROUTE = 'route',
}

interface Breadcrumb {
  type: BreadcrumbType
  level?: string
  category?: BreadcrumbCategory
  message?: string
  timestamp: number
}

一个路由变化面包屑

{
  "type": "dom",
  "category": "route",
  "message": "pages/index/index",
  "timestamp": 1606310419183
}

FAQs

Package last updated on 19 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc