| {{/* |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */}} |
| |
| {{- if .Values.pod.sidecars.vector }} |
| |
| --- |
| apiVersion: v1 |
| kind: Secret |
| metadata: |
| name: ovn-vector-config |
| type: Opaque |
| stringData: |
| vector.toml: | |
| [sources.file_logs] |
| type = "file" |
| include = [ "/logs/ovn-controller.log" ] |
| |
| [sinks.ovn_log_parser_in] |
| type = "http" |
| inputs = ["file_logs"] |
| uri = "{{ tuple "ovn_logging_parser" "default" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_uri_lookup" }}" |
| encoding.codec = "json" |
| method = "post" |
| |
| [sources.ovn_log_parser_out] |
| type = "http_server" |
| address = "0.0.0.0:5001" |
| encoding = "json" |
| |
| [transforms.parse_log_message] |
| type = "remap" |
| inputs = ["ovn_log_parser_out"] |
| source = ''' |
| del(.source_type) |
| del(.path) |
| ''' |
| |
| [sinks.loki_sink] |
| type = "loki" |
| labels.event_source = "network_logs" |
| inputs = ["parse_log_message"] |
| endpoint = "http://loki.monitoring:3100" |
| encoding.codec = "json" |
| tenant_id = "{{`{{ project_id }}`}}" |
| {{- end }} |