File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ ______ _
2
+ |___ / | |
3
+ / / ___ ___ | | _____ ___ _ __ ___ _ __
4
+ / / / _ \ / _ \| |/ / _ \/ _ \ '_ \ / _ \ '__|
5
+ ./ /__| (_) | (_) | < __/ __/ |_) | __/ |
6
+ \_____/\___/ \___/|_|\_\___|\___| .__/ \___|_|
7
+ | |
8
+ |_|
9
+
10
+ #### Introduction
11
+
Original file line number Diff line number Diff line change
1
+ output "zookeeper_asg_arns" {
2
+ value = [aws_autoscaling_group . zookeeper . * . arn ]
3
+ }
4
+
5
+ output "zookeeper_internal_sg_id" {
6
+ value = aws_security_group. zookeeper-internal . id
7
+ }
8
+
9
+ output "zookeeper_external_sg_id" {
10
+ value = aws_security_group. zookeeper-external . id
11
+ }
Original file line number Diff line number Diff line change @@ -107,6 +107,19 @@ server.${node}=zk${node}.${domain}:2888:3888
107
107
"metrics_collection_interval": 60,
108
108
"run_as_user": "cwagent"
109
109
},
110
+ "logs": {
111
+ "logs_collected": {
112
+ "files": {
113
+ "collect_list": [
114
+ {
115
+ "file_path": "/zookeeper/logs/zookeeper-zookeeper*",
116
+ "log_group_name": "zookeeper.log",
117
+ "timestamp_format": "%Y-%m-%d %H:%M:%S,%f"
118
+ }
119
+ ]
120
+ }
121
+ }
122
+ },
110
123
"metrics": {
111
124
"namespace": "${cloudwatch_namespace}",
112
125
"append_dimensions": {
You can’t perform that action at this time.
0 commit comments