npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

keep-observers

v2.0.7

Published

This is a monitoring service applied to the web side Support Elasticsearch+kiban The middleware extension interface is provided by means of plug-in service compositionkeep-observers

Downloads

194

Readme

Keep-observer

Coverage Status

中文说明

This is a monitoring service applied to the web side

online demo

  • About keep-observer:
    • This is a javascript-based tool written for online environment monitoring, for web:PC and mobile embedded capture and continuous tracking of user interactions,
    • Support Elasticsearch+kibana data visualization background display to provide quick private docker deployment
    • Provides fine-grained time dimension analysis and key field index search
    • Provide single user tracking record, continuous tracking of a series of events
    • Provides PageLoad first screen load analysis, time dimension, multi-version comparison
    • The middleware extension interface is provided by means of plug-in service composition
    • Support can freely combine the monitoring content, and allow custom extension control capture service, custom escalation service, etc。
    • Configuration information and apis as well as custom services, see keepObserver
  • Why do you need a keep-observer?
    • Your business needs: business monitoring, abnormal alarm, error tracking
    • Your business needs: analyze the performance information of the first screen, and provide data analysis of the results of grayscale tests such as ABtest
    • You need: log fine-grained searches as well as queries, and provide visual data reports
    • You need: user behavior action trace, exception error backtrace query
    • Your team: no back-end resources are provided, completely operated by the front-end team
    • can provide fast access monitoring, rapid deployment of back-end services, no complex server operations, front-end technicians can install deployment
    • high degree of custom extension, allowing custom extension of other services
  • Function:
    • keepObserverLog
      • Intercept capture global console Related log, including (error, log, warn, time, timeEnd, clear, info, debug), etc
      • See configuration information and API details keepObserverLog
    • keepObserverNetwork
      • Global XMLHttpRequest and fetch requests
      • See configuration information and API details keepObserverNetwork
    • KeepObserverHtmlElementActive
      • Capture user dom interaction (click,change) events and provide xPath path tracing
      • See configuration information and API details KeepObserverHtmlElementActive
    • KeepObserverKibanaApmReport
      • This service is required using Elasticsearch+kibana. Rely on kibana APM to report data
      • See configuration information and API details KeepObserverKibanaApmReport
    • KeepObserverMiddlewareKibanaApmTrack
  • Compatibility and Support : compatibility with all the current mainstream framework running version, vue angular react and other frameworks. **IE 678 has not been tested yet **

Use And reportMonitorData

Installation and indexing

ElasticsearchKibana

About keepObserver:

KeepObserver itself only maintains one pipeMQ and the related middlewareServer service. All the monitoring and capture services and escalation services are provided by plug-ins, and the middleware extension interface and the extended information channel are provided

The structural design is as follows
  • ProducerServer: Provide capture data. For example, log network error is related to catch
  • ConsumerServer: Processing received data. Check in to the background server kibanaAPM above
  • MiddlerwareServer: When ProducerServer initiates a message, it is processed by MiddlerwareServerArray before finally reaching ConsumerServer. MiddlerwareServer has the properties of interrupt and next and controls whether the message reaches the next MiddlerwareServer or is interrupted

image

The MiddlerwareServer is constructed as follows

image

About Elasticsearch+kibana

Data storage stage, the core of usage scenario is that different data dimension of flexible query, analysis step by step in each dimension data quickly to the positioning problem, which can use elasticsearch retrieval features, even for a minimal set of elasticsearch cluster, also can more easily implement every day must level of log volume of storage and query, and supporting kibana complete data visualization, and query search related log content, as well as provide rapid privatization deployment docker

Kibana query log tutorial: https://www.elastic.co/guide/cn/kibana/current/discover.html

index Patten apm*

On the right, click the APM menu to view the summary of all mounted log services. And page-load information for the service

Report service, index mapping table (filter field table): https://github.com/keep-observer/keepObserver/blob/master/document/ElasticsearchKibana.md

The simplest log query, providing a fine-grained time dimension and search for related fields

image

Detailed single user behavior tracking

image

Query analysis for page-load

image

Installation

	npm install keep-observers

Examples

A simple example of use

import KeepObserver,{
    KeepObserverLog,
    KeepObserverNetwork,
    KeepObserverHtmlElementActive,
    KeepObserverMiddlewareKibanaApmTrack,
    KeepObserverKibanaApmReport,
} from 'keep-observers'
//The instance
const ko = new KeepObserver({ 
    isInterruptNormal:true,         //KeepObserverMiddlewareKibanaApmTrack use
    isGlobalElementActionCatch:true, //KeepObserverHtmlElementActive use
    serverUrl:'http://localhost:8200', //KeepObserverKibanaApmReport use
    serviceName: "push-test", //KeepObserverKibanaApmReport use
    agentVersion: "step_1",   //KeepObserverKibanaApmReport use
})
// sign up for monitoring services
ko.use(KeepObserverLog)
ko.use(KeepObserverNetwork)
ko.use(KeepObserverHtmlElementActive)
// register with kibanaApm to report
ko.use(KeepObserverKibanaApmReport)
// register middleware timeline tracking service
ko.use(KeepObserverMiddlewareKibanaApmTrack)

Custom service examples

import KeepObserver,{
    KeepObserverLog,
    KeepObserverNetwork,
    KeepObserverHtmlElementActive,
    KeepObserverMiddlewareKibanaApmTrack,
    KeepObserverKibanaApmReport,
} from 'keep-observers'

//A simple local storage plug-in
/*
    This captures the extended middleware services
    Ps: note that the middleware services thus acquired cannot be Shared with other plug-ins
    
    import { KeepObserverPublic } from 'keep-observers/@util/index'
    class LocalstorageMiddlewareServer extends KeepObserverPublic{
        apply(){
            
        }
    }
    const server = new LocalstorageMiddlewareServer()
    server.useMiddle //register
    server.runMiddle //exec
*/
class LocalstorageMiddlewareServer {
    constructor(config) {
        /*
        config={
            isInterruptNormal:true,
            isGlobalElementActionCatch:true,
            serverUrl:'http://localhost:8200',
            serviceName: "push-test",
            agentVersion: "step_1"
        }
        */
    }
    apply({
        //See Documentation for more parameters
        sendMessage,                //Send message method
        useExtendMiddle,            //Registration middleware extension, equivalent ko.usemiddle ()
        middleScopeNames,           //middleScopeNames
        registerSendDoneCallback    //Register the send end idle callback
    }) {
        const [sendMessageName] = middleScopeNames
        //Registry middleware service
        useExtendMiddle(sendMessageNamem,(interrupt,next)=>(message)=>{
            //This is just a simple example of using an example
            var value = JSON.stringify(message)
            localStorage.setItem('message', value);
            // move on to the next middleware
            // interrupt(message) simply bypasses the processing of the subordinate middleware and enters the kibanaApm escalation
            // interrupt(false) will simply skip the processing of the subordinate middleware and ignore the message
            next(message)
        })
        /*
            If there is a return
            return {
                remove:(key)=>localStorage.removeItem(key)
            }
            This return method can be called through  ko.apis('remove','message')
        */
    }
}

//The instance
const ko = new KeepObserver({ 
    isInterruptNormal:true,
    isGlobalElementActionCatch:true,
    serverUrl:'http://localhost:8200',
    serviceName: "push-test",
    agentVersion: "step_1",
})
// sign up for monitoring services
ko.use(KeepObserverLog)
ko.use(KeepObserverNetwork)
ko.use(KeepObserverHtmlElementActive)
// register with kibanaApm to report
ko.use(KeepObserverKibanaApmReport)
// register middleware timeline tracking service
ko.use(KeepObserverMiddlewareKibanaApmTrack)
// sign up for custom services
// You can also  ko.use(new LocalstorageMiddlewareServer ())
ko.use(LocalstorageMiddlewareServer)
For more config configuration details, and related apis, please refer to Documentation.