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

@foundryapp/monitoring-cli

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@foundryapp/monitoring-cli

## Installation $ npm i -g @foundryapp/monitoring-cli

  • 1.0.6
  • latest
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Monitoring CLI

Installation

$ npm i -g @foundryapp/monitoring-cli

CLI Usage

Enable monitoring of a function

This enables monitoring of a function <functionName> deployed in the default project (foundry-monitoring) and default region (us-central1).

$ monitoring enable <functionName>

If you want to monitor a function deployed in a different project then use the -p (--project) flag followed by the <projectId>.

$ monitoring enable <functionName> -p <projectId>

If you want to monitor a function deployed in a different region then use the -r (--region) flag followed by the region <region>.

$ monitoring enable <functionName> -r <region>

If you want to group functions to custom groups so you can later retrieve their data together then use the -t (--tag) flag followed by a tag <tag>. This is also a good place to specify the optimization you are testing. Currently a function monitoring can have only one tag.

$ monitoring enable <functionName> -t <tag>

You can use these flags together.

$ monitoring enable <functionName> -p <projectId> -r <region> -t <tag>

Disable monitoring of a function

This disables monitoring of a function <functionName> deployed in the default project (foundry-monitoring) and default region (us-central1).

$ monitoring disable <functionName>

If you want to disable monitoring of a function deployed in a different project then use the -p (--project) flag followed by the <projectId>.

$ monitoring disable <functionName> -p <projectId>

If you want to disable monitoring of a function deployed in a different region then use the -r (--region) flag followed by the region <region>.

$ monitoring disable <functionName> -r <region>

If you used a tag when enabling a function you need to add the -t (--tag) flag followed by the same tag <tag> you used to disable that function.

$ monitoring enable <functionName> -t <tag>

You can use these flags together.

$ monitoring disable <functionName> -p <projectId> -r <region> -t <tag>

Get monitoring data

This command will retrieve and print all saved monitoring data for functions deployed in the default project (foundry-monitoring) and default region (us-central1).

$ monitoring data

If you want to retrieve all the data regardless of a project and region use the -n (--no-default) tag.

$ monitoring data -n

If you want to retrieve data for a specific function add the [functionName] as an argument to get a query for the specified [functionName].

$ monitoring data [functionName]

If you want to retrive only data of functions from a specific project then use the -p (--project) flag followed by the <projectId> to query for the specified <projectId>.

$ monitoring data -p <projectId>

If you want to retrive only data of functions from a specific region then use the -r (--region) flag followed by the <region> to query for the specified <region>.

$ monitoring data -r <region>

If you want to retrieve only data of functions with a specific tag then use the -t (--tag) flag followed by the <tag> to query for the specified <tag>.

$ monitoring data -t <tag>

If you want to save the retrieved data as a JSON file then add the -f (--file) flag followed by a file path <file>.

$ monitoring data -f <file>

The saved JSON adhers to the following schema:

[{
    fn: {
        enabled: boolean;
        functionName: string;
        functionUrl?: string;
        tag?: string;
        region: string;
        projectId: string;
    },
    pings: [{
        responseDuration: number; // in ms
        timestamp: number; // as milliseconds since the epoch
    }],
}]

The pings are ordered in an ascending order by their timestamps.

You can use and combine the argument and the flags to make specific queries.

API Usage

You can use this as a library in the code like this:

$ npm i @foundryapp/monitoring-cli

const monitoring = require('@foundryapp/monitoring-cli');
// Use monitoring.enableMonitoring, monitoring.disableMonitoring, monitoring.getMonitoringData

FAQs

Package last updated on 16 Aug 2020

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