interface LoggerProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Greengrass.CfnLoggerDefinition.LoggerProperty |
![]() | software.amazon.awscdk.services.greengrass.CfnLoggerDefinition.LoggerProperty |
![]() | aws_cdk.aws_greengrass.CfnLoggerDefinition.LoggerProperty |
![]() | @aws-cdk/aws-greengrass » CfnLoggerDefinition » LoggerProperty |
A logger represents logging settings for the AWS IoT Greengrass group, which can be stored in CloudWatch and the local file system of your core device.
All log entries include a timestamp, log level, and information about the event. For more information, see Monitoring with AWS IoT Greengrass Logs in the Developer Guide .
In an AWS CloudFormation template, the Loggers
property of the LoggerDefinitionVersion
property type contains a list of Logger
property types.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as greengrass from '@aws-cdk/aws-greengrass';
const loggerProperty: greengrass.CfnLoggerDefinition.LoggerProperty = {
component: 'component',
id: 'id',
level: 'level',
type: 'type',
// the properties below are optional
space: 123,
};
Properties
Name | Type | Description |
---|---|---|
component | string | The source of the log event. |
id | string | A descriptive or arbitrary ID for the logger. |
level | string | The log-level threshold. |
type | string | The storage mechanism for log events. |
space? | number | The amount of file space (in KB) to use when writing logs to the local file system. |
component
Type:
string
The source of the log event.
Valid values are GreengrassSystem
or Lambda
. When GreengrassSystem
is used, events from Greengrass system components are logged. When Lambda
is used, events from user-defined Lambda functions are logged.
id
Type:
string
A descriptive or arbitrary ID for the logger.
This value must be unique within the logger definition version. Maximum length is 128 characters with pattern [a-zA-Z0-9:_-]+
.
level
Type:
string
The log-level threshold.
Log events below this threshold are filtered out and aren't stored. Valid values are DEBUG
, INFO
(recommended), WARN
, ERROR
, or FATAL
.
type
Type:
string
The storage mechanism for log events.
Valid values are FileSystem
or AWSCloudWatch
. When AWSCloudWatch
is used, log events are sent to CloudWatch Logs . When FileSystem
is used, log events are stored on the local file system.
space?
Type:
number
(optional)
The amount of file space (in KB) to use when writing logs to the local file system.
This property does not apply for CloudWatch Logs .