This package has been deprecated

Author message:

The package @aws-sdk/client-cloudwatch-logs-browser has been renamed to @aws-sdk/client-cloudwatch-logs. Please install the renamed package.

@aws-sdk/client-cloudwatch-logs-browser
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-preview.2 • Public • Published

@aws-sdk/client-cloudwatch-logs-browser

NPM version NPM downloads

Description

You can use Amazon CloudWatch Logs to monitor, store, and access your log files from Amazon EC2 instances, AWS CloudTrail, or other sources. You can then retrieve the associated log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the AWS CLI, CloudWatch Logs API, or CloudWatch Logs SDK.

You can use CloudWatch Logs to:

  • Monitor logs from EC2 instances in real-time: You can use CloudWatch Logs to monitor applications and systems using log data. For example, CloudWatch Logs can track the number of errors that occur in your application logs and send you a notification whenever the rate of errors exceeds a threshold that you specify. CloudWatch Logs uses your log data for monitoring; so, no code changes are required. For example, you can monitor application logs for specific literal terms (such as "NullReferenceException") or count the number of occurrences of a literal term at a particular position in log data (such as "404" status codes in an Apache access log). When the term you are searching for is found, CloudWatch Logs reports the data to a CloudWatch metric that you specify.

  • Monitor AWS CloudTrail logged events: You can create alarms in CloudWatch and receive notifications of particular API activity as captured by CloudTrail and use the notification to perform troubleshooting.

  • Archive log data: You can use CloudWatch Logs to store your log data in highly durable storage. You can change the log retention setting so that any log events older than this setting are automatically deleted. The CloudWatch Logs agent makes it easy to quickly send both rotated and non-rotated log data off of a host and into the log service. You can then access the raw log data when you need it.

Installing

To install the this package using NPM, simply type the following into a terminal window:

npm install @aws-sdk/client-cloudwatch-logs-browser

Getting Started

Import

The AWS SDK is modulized by clients and commands in CommonJS modules. To send a request, you only need to import the client(CloudWatchLogsClient) and the commands you need, for example AssociateKmsKeyCommand:

//JavaScript
const {
  CloudWatchLogsClient
} = require("@aws-sdk/client-cloudwatch-logs-browser/CloudWatchLogsClient");
const {
  AssociateKmsKeyCommand
} = require("@aws-sdk/client-cloudwatch-logs-browser/commands/AssociateKmsKeyCommand");
//TypeScript
import { CloudWatchLogsClient } from "@aws-sdk/client-cloudwatch-logs-browser/CloudWatchLogsClient";
import { AssociateKmsKeyCommand } from "@aws-sdk/client-cloudwatch-logs-browser/commands/AssociateKmsKeyCommand";

Usage

To send a request, you:

  • Initiate client with configuration (e.g. credentials, region). For more information you can refer to the API reference.
  • Initiate command with input parameters.
  • Call send operation on client with command object as input.
  • If you are using a custom http handler, you may call destroy() to close open connections.
const cloudWatchLogs = new CloudWatchLogsClient({region: 'region'});
//clients can be shared by different commands
const params = {
  logGroupName: /**a string value*/,
  kmsKeyId: /**a string value*/,
};
const associateKmsKeyCommand = new AssociateKmsKeyCommand(params);
cloudWatchLogs.send(associateKmsKeyCommand).then(data => {
    // do something
}).catch(error => {
    // error handling
})

In addition to using promises, there are 2 other ways to send a request:

// async/await
try {
  const data = await cloudWatchLogs.send(associateKmsKeyCommand);
  // do something
} catch (error) {
  // error handling
}
// callback
cloudWatchLogs.send(associateKmsKeyCommand, (err, data) => {
  //do something
});

The SDK can also send requests using the simplified callback style from version 2 of the SDK.

import * as AWS from "@aws-sdk/@aws-sdk/client-cloudwatch-logs-browser/CloudWatchLogs";
const cloudWatchLogs = new AWS.CloudWatchLogs({ region: "region" });
cloudWatchLogs.associateKmsKey(params, (err, data) => {
  //do something
});

Troubleshooting

When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

try {
  const data = await cloudWatchLogs.send(associateKmsKeyCommand);
  // do something
} catch (error) {
  const metadata = error.$metadata;
  console.log(
    `requestId: ${metadata.requestId}
cfId: ${metadata.cfId}
extendedRequestId: ${metadata.extendedRequestId}`
  );
  /*
The keys within exceptions are also parsed. You can access them by specifying exception names:
    if(error.name === 'SomeServiceException') {
        const value = error.specialKeyInException;
    }
*/
}

Getting Help

Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them.

  • Ask a question on StackOverflow and tag it with aws-sdk-js
  • Come join the AWS JavaScript community on gitter
  • If it turns out that you may have found a bug, please open an issue

Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/@aws-sdk/client-cloudwatch-logs-browser' package is updated. To contribute to SDK you can checkout our code generator package.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

Readme

Keywords

none

Package Sidebar

Install

npm i @aws-sdk/client-cloudwatch-logs-browser

Weekly Downloads

2

Version

0.1.0-preview.2

License

Apache-2.0

Unpacked Size

623 kB

Total Files

1119

Last publish

Collaborators

  • mattsb42-aws
  • kuhe
  • amzn-oss
  • aws-sdk-bot
  • trivikr-aws