Skip to content

Instantly share code, notes, and snippets.

@MarcoDorantes
Created November 1, 2021 00:18
Show Gist options
  • Save MarcoDorantes/9d5878fa84a0c9576197f04c71ddbfe4 to your computer and use it in GitHub Desktop.
Save MarcoDorantes/9d5878fa84a0c9576197f04c71ddbfe4 to your computer and use it in GitHub Desktop.
---
Resources:
TopEngine:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: TopEngine
RetentionInDays: 5
EngineStats:
Type: AWS::Logs::LogStream
Properties:
LogStreamName: EngineStats
LogGroupName:
Ref: TopEngine
InputSession:
Type: AWS::Logs::LogStream
Properties:
LogStreamName: InputSession
LogGroupName:
Ref: TopEngine
Resultset:
Type: AWS::Logs::LogStream
Properties:
LogStreamName: Resultset
LogGroupName:
Ref: TopEngine
MainSource:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: MainSource
RetentionInDays: 10
MessageRate:
Type: AWS::Logs::LogStream
Properties:
LogStreamName: MessageRate
LogGroupName:
Ref: MainSource
Threshold:
Type: AWS::Logs::LogStream
Properties:
LogStreamName: Threshold
LogGroupName:
Ref: MainSource
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment