New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

azure-logging

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-logging

Logging module for azure

  • 0.3.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

azure-logging

Azure logging module

reader(options)

var reader = require('azure-logging').reader;

Creates a log reader. Options are:

{
    app: null,        // app filter
    format: 'text',    // output format (text | html | json)
    skip: 0, // number of lines to skip
    top: 10, // number of lines to fetch (limit)
    level: 'warn', // maximum level ('log' < 'info' < 'warn' < 'error')
    farm: null, // farm filter (e.g. 'anodejs')
    instance: null, // instance filter (e.g. 'anodejsrole_IN_0')
    since: null, // time query (find `top` entries since `since`. `null` means now).
    message: null, // regex query on message (very slow, will not work probably)
}

The log reader is an EventEmitter with the following events:

  • 'line' - function(line, entry) emitted on each log line.
  • 'error' - function(err) emitted if there was an error.
  • 'end' - function() emitted at the end of the log stream.

FAQs

Package last updated on 20 Mar 2018

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