-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathredis_logging.tf
58 lines (40 loc) · 1.19 KB
/
redis_logging.tf
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
resource "oci_logging_log_group" "redis_log_group" {
compartment_id = var.compartment_ocid
display_name = "Redis Log Group"
}
resource "oci_logging_log" "redis_log" {
display_name = "Redis Logs"
is_enabled = true
log_group_id = oci_logging_log_group.redis_log_group.id
log_type = "CUSTOM"
retention_duration = "30"
}
resource "oci_logging_unified_agent_configuration" "redis_log_agent_config" {
compartment_id = var.compartment_ocid
description = "Log Agent configuration for Redis nodes"
display_name = "redis-log-agent-config"
group_association {
group_list = [
oci_identity_dynamic_group.redis_dynamic_group.id
]
}
is_enabled = true
service_configuration {
configuration_type = "LOGGING"
destination {
log_object_id = oci_logging_log.redis_log.id
}
sources {
name = "redis_server"
parser {
parser_type = "REGEXP"
expression = "^(?<pid>\\d+):(?<role>[XCSM]) (?<time>[^\\]]*) (?<level>[\\.\\-\\*\\#]) (?<message>.+)$"
time_format = "%d %B %Y %H:%M:%S.%L"
}
paths = [
"/tmp/redis-server.log"
]
source_type = "LOG_TAIL"
}
}
}