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

bunyan-stackdriver

v1.3.0

Published

StackDriver stream for Bunyan

Downloads

15

Readme

bunyan-stackdriver

Bunyan stream for StackDriver (Google Cloud Logging API) integration

Installation

Install bunyan and bunyan-stackdriver...

npm install bunyan bunyan-stackdriver

Setup

  1. Enable Google Cloud Logging API in your Google Developer Console.
  2. Start using bunyan-stackdriver to create log your messages

Basic usage

var bunyan  = require("bunyan"),
    BunyanStackDriver = require("bunyan-stackdriver"),
    log;

log = bunyan.createLogger({
    name: "myApp",
    streams: [{
      type: "raw", // faster; makes Bunyan send objects instead of stringifying messages
      stream: new BunyanStackDriver({
        projectId: "your_project_id"
      })
    }],
    level: "error"
});

log.error("hello bunyan user");

Full options

new BunyanStackDriver({
  // The path to your key file:
  keyFilename: "/path/to/keyfile.json",
  // Or the contents of the key file:
  credentials: require('./path/to/keyfile.json'),
  logName: "logname",
  projectId: "project-id",
  writeInterval: 500, // ms
  resource: {
    type: "resource_type",
    labels: {key1: value1}
  }
}, function errorCallback(err) { console.log(err); });
  • If you are running on Google Cloud Platform, authentication will be taken care of automatically. If you're running elsewhere, or wish to provide alternative authentication, you can specify the keyFilename pointing to a service account JSON key.

  • logName. Must be less than 512 characters and include only alphanumeric characters, forward-slash, underscore, hyphen and period.

  • projectId. The id of the project. This can be omitted if the environment variable "GCLOUD_PROJECT" is set.

  • writeInterval. Specifies the maximum write frequency. Messages will be batched between writes to avoid exceeding API rate limits. (The default GCP limit is 20 RPS. The default setting for BunyanStackDriver is 500 ms.)

  • resource. See https://cloud.google.com/logging/docs/api/ref_v2beta1/rest/v2beta1/MonitoredResource.

  • errorCallback. Will report errors during the logging process itself.

Stackdriver Error Reporting

When errors with stack traces are logged - bunyan.error(new Error('message')) - these can automatically be captured by the Error Reporting interface in Google Cloud Platform. To do so some additional configuration is required as per Stackdriver Formatting Error Messages

When logging, a service context is required. This can be added on a per log basis or configured for all logs during logger creation like so:

const logger = bunyan.createLogger({
    name: 'Example',
    serializers: ...
    streams: ...,
    serviceContext: {
        service: 'example',
        version: 'x.x.x'
    }
});

Links

Stackdriver Logging - Method entries.write

License

MIT License

Copyright (C) 2016 Martin Lazarov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.