File tree 6 files changed +27
-17
lines changed
6 files changed +27
-17
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : axosyslog
3
3
description : AxoSyslog for Kubernetes
4
4
type : application
5
- version : 0.10.1
5
+ version : 0.11.0
6
6
appVersion : " 4.8.1"
Original file line number Diff line number Diff line change 30
30
{{- if .keyDelimiter }}
31
31
key-delimiter({{ .keyDelimiter | quote }})
32
32
{{- end }}
33
- );
33
+ );
34
34
};
35
35
{{- end }}
36
36
{{- end }}
@@ -106,10 +106,10 @@ data:
106
106
};
107
107
{{- end }}
108
108
{{- end }}
109
- {{- with .Values.collector.config.destinations.syslogNgOtlp }}
109
+ {{- with .Values.collector.config.destinations.axosyslogOtlp }}
110
110
{{- if .enabled }}
111
111
destination {
112
- syslog-ng -otlp (
112
+ axosyslog -otlp (
113
113
url({{ tpl .url $ | quote }})
114
114
{{- if .extraOptionsRaw }}
115
115
{{ .extraOptionsRaw }}
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ spec:
35
35
port : 601
36
36
targetPort : rfc5424-tcp
37
37
{{- end }}
38
- {{- if .syslogNgOtlp .enabled }}
38
+ {{- if .axosyslogOtlp .enabled }}
39
39
- name : otlp
40
40
protocol : TCP
41
- nodePort : {{ .syslogNgOtlp .port | default 30317 }}
41
+ nodePort : {{ .axosyslogOtlp .port | default 30317 }}
42
42
port : 4317
43
43
targetPort : otlp
44
44
{{- end }}
Original file line number Diff line number Diff line change @@ -56,10 +56,10 @@ data:
56
56
{{- end }}
57
57
{{- end }}
58
58
59
- {{- with .Values.syslog.config.sources.syslogNgOtlp }}
59
+ {{- with .Values.syslog.config.sources.axosyslogOtlp }}
60
60
{{- if .enabled }}
61
61
source s_syslogng_otlp {
62
- syslog-ng -otlp();
62
+ axosyslog -otlp();
63
63
};
64
64
{{- end }}
65
65
{{- end }}
68
68
{{- if .Values.syslog.config.sources.syslog.enabled }}
69
69
source (s_syslog);
70
70
{{- end }}
71
- {{- if .Values.syslog.config.sources.syslogNgOtlp .enabled }}
71
+ {{- if .Values.syslog.config.sources.axosyslogOtlp .enabled }}
72
72
source (s_syslogng_otlp);
73
73
{{- end }}
74
74
@@ -133,10 +133,10 @@ data:
133
133
};
134
134
{{- end }}
135
135
{{- end }}
136
- {{- with .Values.syslog.config.destinations.syslogNgOtlp }}
136
+ {{- with .Values.syslog.config.destinations.axosyslogOtlp }}
137
137
{{- if .enabled }}
138
138
destination {
139
- syslog-ng -otlp (
139
+ axosyslog -otlp (
140
140
url({{ tpl .url $ | quote }})
141
141
{{- if .extraOptionsRaw }}
142
142
{{ .extraOptionsRaw }}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ collector:
46
46
peerVerify : false
47
47
template : " $(format-json .*)"
48
48
extraOptionsRaw : " time-reopen(10)"
49
- syslogNgOtlp :
49
+ axosyslogOtlp :
50
50
enabled : false
51
51
url : " 192.168.77.133:4317"
52
52
extraOptionsRaw : " time-reopen(1) batch-timeout(1000) batch-lines(1000)"
@@ -74,7 +74,7 @@ syslog:
74
74
enabled : false
75
75
storageClass : standard
76
76
size : 10Gi
77
- config :
77
+ config :
78
78
raw : " " # Use this to manually set the contents of the syslog-ng.conf file.
79
79
stats :
80
80
level : 2
@@ -94,12 +94,12 @@ syslog:
94
94
# Cert: "/path/to/Cert.pem"
95
95
# Key: "/path/to/Key.pem"
96
96
# peerVerify: false
97
- syslogNgOtlp :
97
+ axosyslogOtlp :
98
98
enabled : true
99
99
# nodePort
100
100
port : 30317
101
101
extraOptionsRaw : " "
102
-
102
+
103
103
rewrites :
104
104
set : {}
105
105
# foo: "${foovalue}"
@@ -134,11 +134,11 @@ syslog:
134
134
# peerVerify: false
135
135
# template: "$(format-json --scope rfc5424 --exclude DATE --key ISODATE @timestamp=${ISODATE})"
136
136
extraOptionsRaw : " time-reopen(10)"
137
- syslogNgOtlp :
137
+ axosyslogOtlp :
138
138
enabled : false
139
139
url : " 192.168.77.133:4317"
140
140
extraOptionsRaw : " time-reopen(1) batch-timeout(1000) batch-lines(1000)"
141
-
141
+
142
142
metricsExporter :
143
143
enabled : false # deploy the axosyslog Deamonset with the axosyslog-metrics-exporter sidecar
144
144
image :
Original file line number Diff line number Diff line change @@ -58,6 +58,16 @@ static Plugin otel_plugins[] =
58
58
.name = "syslog_ng_otlp" ,
59
59
.parser = & otel_parser ,
60
60
},
61
+ {
62
+ .type = LL_CONTEXT_DESTINATION ,
63
+ .name = "axosyslog_otlp" ,
64
+ .parser = & otel_parser ,
65
+ },
66
+ {
67
+ .type = LL_CONTEXT_SOURCE ,
68
+ .name = "axosyslog_otlp" ,
69
+ .parser = & otel_parser ,
70
+ },
61
71
{
62
72
.type = LL_CONTEXT_FILTERX_ENUM ,
63
73
.name = "otel" ,
You can’t perform that action at this time.
0 commit comments