2.1.0 • Published 8 months ago

@loglayer/transport-google-cloud-logging v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Google Cloud Logging Transport for LogLayer

NPM Version NPM Downloads TypeScript

Implements the Google Cloud Logging library for use with the LogLayer logging library.

This transport sends logs to Google Cloud Logging (formerly known as Stackdriver Logging).

Installation

npm install @loglayer/transport-google-cloud-logging @google-cloud/logging serialize-error

Notes

This transport uses log.entry(metadata, data) as described in the library documentation.

  • The metadata portion is not the data from withMetadata() or withContext(). See the rootLevelData option for this transport on how to modify this value.
  • The data portion is actually the jsonPayload is what the transport uses for all LogLayer data.
  • The message data is stored in jsonPayload.message

For more information, see Structured Logging, specifically LogEntry.

Usage

import { LogLayer } from "loglayer";
import { GoogleCloudLoggingTransport } from "@loglayer/transport-google-cloud-logging";
import { Logging } from '@google-cloud/logging';
import { serializeError } from "serialize-error";

// Create the logging client
const logging = new Logging({ projectId: "GOOGLE_CLOUD_PLATFORM_PROJECT_ID" });
const log = logging.log('my-log');

// Create LogLayer instance with the transport
const logger = new LogLayer({
  errorSerializer: serializeError,
  transport: new GoogleCloudLoggingTransport({
    logger: log,
  })
});

// The logs will include the default metadata
logger.info("Hello from Cloud Run!");

Configuration Options

rootLevelData

The root level data to include for all log entries. This is not the same as using withContext(), which would be included as part of the jsonPayload.

The rootLevelData option accepts any valid Google Cloud LogEntry fields except for severity, timestamp, and jsonPayload which are managed by the transport.

const logger = new LogLayer({
  transport: new GoogleCloudLoggingTransport({
    logger: log,
    rootLevelData: {
      resource: {
        type: "cloud_run_revision",
        labels: {
          project_id: "my-project",
          service_name: "my-service",
          revision_name: "my-revision",
        },
      },
      labels: {
        environment: "production",
        version: "1.0.0",
      },
    },
  }),
});

Log Level Mapping

LogLayer log levels are mapped to Google Cloud Logging severity levels as follows:

LogLayer LevelGoogle Cloud Logging Severity
fatalCRITICAL
errorERROR
warnWARNING
infoINFO
debugDEBUG
traceDEBUG

Documentation

For more details, visit https://loglayer.dev/transports/google-cloud-logging

2.1.0

8 months ago

2.0.4

10 months ago

2.0.3

10 months ago

2.0.2

10 months ago

2.0.1

10 months ago

2.0.0

10 months ago

1.1.5

11 months ago

1.1.4

11 months ago

1.1.3

11 months ago

1.1.2

11 months ago

1.1.1

11 months ago

1.1.0

11 months ago

1.0.1

12 months ago

1.0.0

12 months ago