forked from aliyun/ros-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sls.yml
335 lines (335 loc) · 7.57 KB
/
sls.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
ROSTemplateFormatVersion: '2015-09-01'
Description: SLS Project/Logstore/Alert/Index/SavedSearch/LogtailConfig/MachineGroup/ApplyConfigToMachineGroup/ApiGatewayLogConfig
resource example
Parameters:
ImageId:
Type: String
Label: ECS Image Id
Description: Image Id, represents the image resource to startup one ECS instance,
<a href='#/product/cn-beijing/list/imageList' target='_blank'>View image resources</a>
Default: centos_7
InstanceType:
Type: String
Label: ECS Instance Type
Description: The ECS instance type, <a href='#/product/cn-beijing/list/typeList'
target='_blank'>View instance types</a>
Default: ecs.c5.large
SystemDiskCategory:
Type: String
Description: Category of system disk. Default is cloud_efficiency. support cloud|cloud_efficiency|cloud_ssd|cloud_essd|ephemeral_ssd.Old
instances will not be changed.
Default: cloud_essd
AllowedValues:
- cloud
- cloud_efficiency
- cloud_ssd
- cloud_essd
- ephemeral_ssd
LoginPassword:
Type: String
Description: ECS Login Password
MinLength: 8
MaxLength: 41
NoEcho: true
PublicIp:
Type: Boolean
Label: Allocate Public IP or Not
Description: Allocate Public IP or Not
Default: false
VpcId:
Type: String
Description: VPC Id.
VSwitchId:
Type: String
Description: VSW Id.
SecurityGroupId:
Type: String
Description: Security Group Id.
InstanceName:
Type: String
Description: Instance Name
Default: mytest
SlsProjectName:
Type: String
Default: mytest
MinLength: 3
MaxLength: 63
SlsLogStoreName:
Type: String
Default: mytest
MinLength: 3
MaxLength: 63
LogtailConfigName:
Type: String
Default: mytest
MinLength: 3
MaxLength: 63
SearchQuery:
Type: String
Description: 查询语句
SavedsearchName:
Type: String
Description: 查询名称,以 "savedsearch-" 开头
DisplayName:
Type: String
Description: 快速查询名称
Default: null
AlertName:
Type: String
Description: 告警名称, 以 'alert-' 开头
AlertDisplayName:
Type: String
Description: 告警显示的名称
Dashboard:
Type: String
Description: 仪表盘,以 'dashboard-' 开头
ChartTitle:
Type: String
Description: 图表标题,以 'chart-' 开头
Schedule:
Type: Json
Description: 日志服务评估警报规则的时间间隔
Default:
Type: FixedRate
Interval: 10m
Delay: 10
RunImmediately: false
Throttling:
Type: String
Description: 通知间隔
Default: 5m
Condition:
Type: String
Description: 触发条件
Default: a>0
Query:
Type: String
Description: 查询语句
Default: a>0
Start:
Type: String
Description: 查询开始时间
Default: -900s
TimeSpanType:
Type: String
Description: 查询区间
Default: Custom
Resources:
Instance:
Type: ALIYUN::ECS::Instance
Properties:
VpcId:
Ref: VpcId
VSwitchId:
Ref: VSwitchId
SecurityGroupId:
Ref: SecurityGroupId
ImageId:
Ref: ImageId
InstanceName:
Ref: InstanceName
IoOptimized: optimized
AllocatePublicIP: false
InstanceType:
Ref: InstanceType
SystemDiskCategory:
Ref: SystemDiskCategory
Password:
Ref: LoginPassword
SlsProject:
Type: ALIYUN::SLS::Project
Properties:
Description: Test SLS Project
Name:
Ref: SlsProjectName
SlsLogStore:
Type: ALIYUN::SLS::Logstore
Properties:
LogstoreName:
Ref: SlsLogStoreName
PreserveStorage: true
ProjectName:
Fn::GetAtt:
- SlsProject
- Name
AppendMeta: true
MaxSplitShard: 64
AutoSplit: true
EnableTracking: false
ShardCount: 2
DependsOn: SlsProject
LogIndex:
Type: ALIYUN::SLS::Index
Properties:
ProjectName:
Fn::GetAtt:
- SlsProject
- Name
FullTextIndex:
CaseSensitive: true
LogstoreName:
Fn::GetAtt:
- SlsLogStore
- LogstoreName
DependsOn: SlsLogStore
LogtailConfig:
Type: ALIYUN::SLS::LogtailConfig
Properties:
ProjectName:
Fn::GetAtt:
- SlsProject
- Name
LogtailConfigName:
Ref: LogtailConfigName
LogstoreName:
Fn::GetAtt:
- SlsLogStore
- LogstoreName
RawConfigData:
configName:
Ref: LogtailConfigName
outputType: LogService
inputType: file
inputDetail:
logPath: /logPath
filePattern: access.log
logType: json_log
topicFormat: default
discardUnmatch: false
enableRawLog: true
fileEncoding: utf8
maxDepth: 10
outputDetail:
projectName:
Fn::GetAtt:
- SlsProject
- Name
logstoreName:
Fn::GetAtt:
- SlsLogStore
- LogstoreName
DependsOn: LogIndex
MachineGroup:
Type: ALIYUN::SLS::MachineGroup
Properties:
ProjectName:
Ref: SlsProject
GroupName: machine-group-test2
MachineIdentifyType: ip
MachineList:
- Fn::GetAtt:
- Instance
- PrivateIp
DependsOn: LogtailConfig
ApplyConfigToMachineGroup:
Type: ALIYUN::SLS::ApplyConfigToMachineGroup
Properties:
ProjectName:
Fn::GetAtt:
- SlsProject
- Name
ConfigName:
Ref: LogtailConfigName
GroupName:
Fn::GetAtt:
- MachineGroup
- GroupName
DependsOn: MachineGroup
ApiGatewayLogConfig:
Type: ALIYUN::ApiGateway::LogConfig
Properties:
SlsLogStore:
Fn::GetAtt:
- SlsLogStore
- LogstoreName
SlsProject:
Fn::GetAtt:
- SlsProject
- Name
SavedSearch:
Type: ALIYUN::SLS::Savedsearch
Properties:
Project:
Fn::GetAtt:
- SlsProject
- Name
Detail:
SearchQuery:
Ref: SearchQuery
Logstore:
Fn::GetAtt:
- SlsLogStore
- LogstoreName
DisplayName:
Ref: DisplayName
SavedsearchName:
Ref: SavedsearchName
Topic: test
DependsOn: SlsLogStore
Alert:
Type: ALIYUN::SLS::Alert
Properties:
Project:
Fn::GetAtt:
- SlsProject
- Name
Detail:
Configuration:
Throttling:
Ref: Throttling
Condition:
Ref: Condition
Dashboard:
Ref: Dashboard
QueryList:
- Query:
Ref: Query
LogStore:
Fn::GetAtt:
- SlsLogStore
- LogstoreName
Start:
Ref: Start
TimeSpanType:
Ref: TimeSpanType
End: now
ChartTitle:
Fn::Sub: ${SlsProject.Name}-${ChartTitle}
State: Enabled
Schedule:
Ref: Schedule
DisplayName:
Ref: AlertDisplayName
Name:
Ref: AlertName
Outputs:
InstanceId:
Value:
Fn::GetAtt:
- Instance
- InstanceId
PrivateIp:
Value:
Fn::GetAtt:
- Instance
- PrivateIp
SlsProjectName:
Value:
Fn::GetAtt:
- SlsProject
- Name
SlsLogStoreName:
Value:
Fn::GetAtt:
- SlsLogStore
- LogstoreName
SavedsearchName:
Value:
Fn::GetAtt:
- SavedSearch
- SavedsearchName
AlertName:
Value:
Fn::GetAtt:
- Alert
- Name