diff --git a/ansible/roles/common/tasks/config.yml b/ansible/roles/common/tasks/config.yml
index cef1d4753a..c8b1594f59 100644
--- a/ansible/roles/common/tasks/config.yml
+++ b/ansible/roles/common/tasks/config.yml
@@ -104,6 +104,8 @@
enabled: "{{ enable_prometheus_fluentd_integration | bool }}"
- name: "conf/input/09-monasca.conf.j2"
enabled: true
+ - name: "conf/input/10-openvswitch.conf.j2"
+ enabled: true
customised_input_files: "{{ find_custom_fluentd_inputs.files | map(attribute='path') | list }}"
# Filters
fluentd_filter_files: "{{ default_filter_files | customise_fluentd(customised_filter_files) }}"
diff --git a/ansible/roles/common/templates/conf/input/10-openvswitch.conf.j2 b/ansible/roles/common/templates/conf/input/10-openvswitch.conf.j2
new file mode 100644
index 0000000000..41b640a651
--- /dev/null
+++ b/ansible/roles/common/templates/conf/input/10-openvswitch.conf.j2
@@ -0,0 +1,25 @@
+
+
+
diff --git a/releasenotes/notes/bug-1965815-37fc4f82bef7a47e.yaml b/releasenotes/notes/bug-1965815-37fc4f82bef7a47e.yaml
new file mode 100644
index 0000000000..412471ac9c
--- /dev/null
+++ b/releasenotes/notes/bug-1965815-37fc4f82bef7a47e.yaml
@@ -0,0 +1,5 @@
+---
+fixes:
+ - |
+ Adds Fluentd configurations to allow matching OpenvSwitch logs.
+ `LP#1965815 `__