anys-web-plugin-monitor-ajax

8.0.0 • Public • Published

AnysMonitorAjaxPlugin

Monitor ajax.

Install

npm i anys-web-plugin-monitor-ajax
<script src="https://unpkg.com/anys-web-plugin-monitor-ajax"></script>

Usage

import { AnysMonitorAjaxPlugin } from 'anys-web-plugin-monitor-ajax';
<script>
    const { AnysMonitorAjaxPlugin } = window.anys;
    const anys = new Anys({
        plugins: [AnysMonitorAjaxPlugin],
    });
</script>

Options

  • xhr: boolean, wheather to monitor XMLHttpRequest
  • fetch: boolean, wheather to monitor fetch function
  • ajaxResponse: boolean, wheather to record ajax response, when set to false, response data will be removed from log
  • patchRequestId: boolean, wheather to patch anys.traceId + anys.requestId to each ajax request's url search query with a key _request_id
const anys = new Anys({
    ajaxResponse: false,
    patchRequestId: false,
});

Log

xhr

{
    type: 'xhr.req',
    time: Date.now(),
    name: `xhr_${name}`,
    url,
    detail: {
        method,
        async,
        body,
    },
}
{
    type: 'xhr.ok' | 'xhr.fail' | 'xhr.err',
    time: Date.now(),
    name: `xhr_${name}`,
    url,
    detail: {
        status: xhr.status,
        method,
        responseType,
        response: response || undefined,
    },
}

fetch

{
    type: 'fetch.init',
    time: Date.now(),
    name: `fetch_${name}`,
    url,
    detail: { body, method },
}
{
    type: 'fetch.ok',
    time: Date.now(),
    name: `fetch_${name}`,
    url,
    detail: {
        status,
        data,
        method,
    },
}
{
    type: 'fetch.fail',
    time: Date.now(),
    name: `fetch_${name}`,
    url,
    detail: {
        status,
        method,
    },
}
{
    type: 'fetch.err',
    time: Date.now(),
    name: `fetch_${name}`,
    url,
    detail: {
        method,
        err: message,
    },
}

Readme

Keywords

none

Package Sidebar

Install

npm i anys-web-plugin-monitor-ajax

Weekly Downloads

1

Version

8.0.0

License

Apache-2.0

Unpacked Size

60.6 kB

Total Files

6

Last publish

Collaborators

  • tangshuang