interface ParseJSONProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Logs.CfnTransformer.ParseJSONProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnTransformer_ParseJSONProperty |
![]() | software.amazon.awscdk.services.logs.CfnTransformer.ParseJSONProperty |
![]() | aws_cdk.aws_logs.CfnTransformer.ParseJSONProperty |
![]() | aws-cdk-lib » aws_logs » CfnTransformer » ParseJSONProperty |
This processor parses log events that are in JSON format.
It can extract JSON key-value pairs and place them under a destination that you specify.
Additionally, because you must have at least one parse-type processor in a transformer, you can use ParseJSON
as that processor for JSON-format logs, so that you can also apply other processors, such as mutate processors, to these logs.
For more information about this processor including examples, see parseJSON in the CloudWatch Logs User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
const parseJSONProperty: logs.CfnTransformer.ParseJSONProperty = {
destination: 'destination',
source: 'source',
};
Properties
Name | Type | Description |
---|---|---|
destination? | string | The location to put the parsed key value pair into. |
source? | string | Path to the field in the log event that will be parsed. |
destination?
Type:
string
(optional)
The location to put the parsed key value pair into.
If you omit this parameter, it is placed under the root node.
source?
Type:
string
(optional)
Path to the field in the log event that will be parsed.
Use dot notation to access child fields. For example, store.book