Socket
Book a DemoInstallSign in
Socket

@types/pidusage

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/pidusage

TypeScript definitions for pidusage

Source
npmnpm
Version
2.0.3
Version published
Weekly downloads
44K
73.3%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/pidusage

Summary

This package contains type definitions for pidusage (https://github.com/soyuka/pidusage).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pidusage.

index.d.ts

// Type definitions for pidusage 2.0
// Project: https://github.com/soyuka/pidusage
// Definitions by: Cyril Schumacher <https://github.com/cyrilschumacher>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

interface Stat {
    /**
     * percentage (from 0 to 100*vcore)
     */
    cpu: number;

    /**
     * bytes
     */
    memory: number;

    /**
     * PPID
     */
    ppid: number;

    /**
     * PID
     */
    pid: number;

    /**
     * ms user + system time
     */
    ctime: number;

    /**
     * ms since the start of the process
     */
    elapsed: number;

    /**
     * ms since epoch
     */
    timestamp: number;
}

declare function pidusage(pid: number | string, callback: (err: Error | null, stats: Stat) => void): void;
declare function pidusage(
    pid: number | string,
    options: { [key: string]: any },
    callback: (err: Error | null, stats: Stat) => void,
): void;
declare function pidusage(
    pids: Array<number | string>,
    callback: (err: Error | null, stats: { [key: string]: Stat }) => void,
): void;
declare function pidusage(
    pids: Array<number | string>,
    options: { [key: string]: any },
    callback: (err: Error | null, stats: { [key: string]: Stat }) => void,
): void;
declare function pidusage(pid: number | string, options?: { [key: string]: any }): Promise<Stat>;
declare function pidusage(
    pids: Array<number | string>,
    options?: { [key: string]: any },
): Promise<{ [key: string]: Stat }>;

declare namespace pidusage {
    type Status = Stat;

    /**
     * If needed this function can be used to clear the event loop.
     * Indeed, we're registering an interval to free up the in-memory metrics.
     * By calling this, it will clear this interval and all delete all in-memory data
     */
    function clear(): void;
}

export = pidusage;

Additional Details

  • Last updated: Sun, 24 Sep 2023 06:37:28 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Cyril Schumacher.

FAQs

Package last updated on 24 Sep 2023

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