• Stars
    star
    145
  • Rank 245,680 (Top 5 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 9 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

💻 Events monitor for pg-promise

pg-monitor

Events monitor for pg-promise.

matrix

About

This library takes the flexible event system provided by pg-promise and outputs it on screen, with full details available, and in the most informative way.

Its purpose is to give you the full picture of how the database is used in your application, providing full details with the context, such as tasks and transactions in which queries are executed.

In addition, it simplifies events logging for your application.

Installing

$ npm install pg-monitor

The library has no direct dependency on pg-promise, and will work with any of its versions.

Testing

  • Clone the repository (or download, if you prefer):
$ git clone https://github.com/vitaly-t/pg-monitor
  • Install the library's DEV dependencies:
$ npm install
  • To run all tests:
$ npm test
  • To run all tests with coverage:
$ npm run coverage

Usage

const monitor = require('pg-monitor');

const initOptions = {
    // pg-promise initialization options;
};

const pgp = require('pg-promise')(initOptions);

// attach to all pg-promise events of the initOptions object:
monitor.attach(initOptions);

// Example of attaching to just events 'query' and 'error':
// monitor.attach(initOptions, ['query', 'error']); 

Method attach is to provide the quickest way to start using the library, by attaching to a set of events automatically.

If, however, you want to have full control over event handling, you can use the manual event forwarding.

Example of forwarding events query and error manually:

const initOptions = {
    query(e) {
        /* do some of your own processing, if needed */

        monitor.query(e); // monitor the event;
    },
    error(err, e) {
        /* do some of your own processing, if needed */
        
        monitor.error(err, e); // monitor the event;
    }
};

See the API below for all the methods and options that you have.

Below is a safe forwarding implemented in TypeScript, for events connect, disconnect and query. It works the same for all other events.

import * as monitor from 'pg-monitor';

function forward(event: monitor.LogEvent, args: IArguments) {
    // safe event forwarding into pg-monitor:
    (monitor as any)[event].apply(monitor, [...args]);
} 

const options: IInitOptions = {
    connect() {
        forward('connect', arguments);
    },
    disconnect() {
        forward('disconnect', arguments);
    },
    query() {
        forward('query', arguments);
    }
};

API

attach(options, [events], [override])

Alternative Syntax: attach({options, events, override});

Adds event handlers to object initOptions that's used during pg-promise initialization:

monitor.attach(initOptions); // mutates the options object to attach to all events

A repeated call (without calling detach first) will throw Repeated attachments not supported, must call detach first.

[events]

Optional array of event names to which to attach. Passing null/undefined will attach to all known events.

Example of attaching to just events query and error:

monitor.attach(initOptions, ['query', 'error']);

Query-related events supported by pg-promise: connect, disconnect, query, task, transact and error.

See also: Initialization Options.

[override]

By default, the method uses derivation logic - it will call the previously configured event handler, if you have one, and only then will it call the internal implementation.

If, however, you want to override your own handlers, pass override = true.

Example of overriding all known event handlers:

monitor.attach({options: initOptions, override: true});

isAttached()

Verifies if the monitor is currently attached, and returns a boolean.

detach()

Detaches from all the events to which attached after the last successful call to attach.

Calling it while not attached will throw Event monitor not attached.

connect({client, dc, useCount}, [detailed])

Monitors and reports event connect.

client

Client object passed to the event.

dc

Database Context.

useCount

Number of times the connection has been used.

[detailed]

Optional. When set, it reports such connection details as user@database.

When not set, it defaults to the value of monitor.detailed.

disconnect({client, dc}, [detailed])

Monitors and reports event disconnect.

client

Client object passed to the event.

dc

Database Context.

[detailed]

Optional. When set, it reports such connection details as user@database.

When not set, it defaults to the value of monitor.detailed.

query(e, [detailed])

Monitors and reports event query.

e

Event context object.

[detailed]

Optional. When set, it reports details of the task/transaction context in which the query is executing.

When not set, it defaults to the value of monitor.detailed.

task(e)

Monitors and reports event task.

e

Event context object.

transact(e)

Monitors and reports event transact.

e

Event context object.

error(err, e, [detailed])

Monitors and reports event error.

err

Error message passed to the event.

e

Event context object.

[detailed]

Optional. When set, it reports details of the task/transaction context in which the error occurred.

When not set, it defaults to the value of monitor.detailed.

detailed

This boolean property provides the default for every method that accepts optional parameter detailed.

By default, it is set to be true. Setting this parameter to false will automatically switch off all details in events that support optional details, unless they have their own parameter detailed passed in as true, which then overrides this global one.

Use method setDetailed to change the value.

setTheme(t)

Activates either a predefined or a custom color theme.

t

Either a predefined theme name or a custom theme object.

For details, see Color Themes.

log

This event is to let your application provide your own log for everything that appears on the screen.

monitor.setLog((msg, info) => {
    // save the screen message into your own log;
});

The notification occurs for every single line of text that appears on the screen, so you can maintain a log file with exactly the same content.

msg

New message line, exactly as shown on the screen, with color attributes removed.

info

Object with additional information about the event:

  • time - Date object that was used for the screen, or null when it is an extra line with the event's context details;
  • colorText - color-coded message text, without time in front;
  • text - message text without the time in front (color attributes removed);
  • event - name of the event being logged.
  • ctx - Optional, task/transaction context when available.

If your intent is only to log events, while suppressing any screen output, you can do so on per-event basis, as shown below:

info.display = false; // suppress screen output for the event;

Themes

The library provides a flexible theme support to choose any color palette that you like, with a few of them predefined for your convenience.

For details, see Color Themes.

Useful Tips

If your application uses more than one task or transaction, it is a good idea to tag them, so they provide informative context for every query event that's being logged, i.e. so you can easily see in which task/transaction context queries are executed.

Tagging a task or transaction with pg-promise is very easy, by taking this code:

db.task(t => {
    // task queries; 
});
db.tx(t => {
    // transaction queries; 
});

and replacing it with this one:

db.task(tag, t => {
    // task queries; 
});
db.tx(tag, t => {
    // transaction queries; 
});

where tag is any object or value. In most cases you would want tag to be just a string that represents the task/transaction name, like this:

db.task('MyTask', t => {
    // task queries; 
});
db.tx('MyTransaction', t => {
    // transaction queries; 
});

The tag can be anything, including your custom object, so you can use it for your own reference when handling events. And if you want to use it as your own object, while also allowing this library to log the task/transaction pseudo-name/alias, then have your object implement method toString() that returns the tag name.

More Repositories

1

pg-promise

PostgreSQL interface for Node.js
JavaScript
3,356
star
2

pg-promise-demo

👓 Advanced example of using pg-promise
TypeScript
278
star
3

iter-ops

Basic operations on iterables
TypeScript
127
star
4

connection-string

Advanced URL Connection String
TypeScript
73
star
5

decomment

🔨 Removes comments from JSON, JavaScript, CSS, HTML, etc.
JavaScript
68
star
6

excellent

Basic DOM Component Framework
JavaScript
56
star
7

spex

💡 Specialized Promise Extensions
JavaScript
51
star
8

pg-minify

Minifies PostgreSQL scripts.
JavaScript
45
star
9

sub-events

Lightweight, strongly-typed events, with monitored subscriptions.
TypeScript
36
star
10

manakin

🐦 Prime colors for your Node.js console — quick & safe.
JavaScript
29
star
11

path-value

Property path-to-value resolver, in TypeScript.
TypeScript
12
star
12

gulp-decomment

🍸 Removes comments from JSON, JavaScript, CSS, HTML, etc.
HTML
12
star
13

prime-lib

Prime number library.
TypeScript
10
star
14

pg-tuple

Tuples parser for PostgreSQL
JavaScript
7
star
15

pg-iterator

TypeScript
6
star
16

iter-ops-extras

Custom operators for iter-ops
TypeScript
5
star
17

assert-options

Generic options parameter handling
TypeScript
4
star
18

flex-value

Strongly-typed, value-resolution handler.
TypeScript
4
star
19

subcount

Observable events with monitored subscriptions.
TypeScript
3
star
20

pg-core

PostgreSQL Core Driver for NodeJS.
TypeScript
3
star
21

pg-listener

Reliable notification listener for PostgreSQL
JavaScript
3
star
22

docref

Code documentation by reference
JavaScript
2
star
23

nitrous

Performance Promise Library
JavaScript
2
star
24

connection-string-demo

Advanced use-case for connection-string
JavaScript
2
star
25

grunt-file-wrap

🐷 Inject a header + footer into your text files automatically.
JavaScript
2
star
26

vparse

The smallest version parser, for client + server.
JavaScript
2
star
27

db-types

Universal database types mapper
JavaScript
2
star
28

grunt-decomment

🐷 Removes comments from JSON, JavaScript, CSS, HTML, etc.
JavaScript
2
star
29

what

1
star
30

signal-ext

Angular Signal Extension
TypeScript
1
star
31

text-wrap

Fast and safe way to wrap your text with a header + footer.
JavaScript
1
star