From e3e6075d2a7f4eb73162fa1ecd9764ba29558274 Mon Sep 17 00:00:00 2001 From: Juan A Date: Thu, 8 Jun 2017 12:00:14 +0200 Subject: [PATCH] fix template for output filename and path --- generator/beat/{beat}/tests/system/config/{beat}.yml.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generator/beat/{beat}/tests/system/config/{beat}.yml.j2 b/generator/beat/{beat}/tests/system/config/{beat}.yml.j2 index 9a2bc9223e4..ece38d02c0d 100644 --- a/generator/beat/{beat}/tests/system/config/{beat}.yml.j2 +++ b/generator/beat/{beat}/tests/system/config/{beat}.yml.j2 @@ -14,12 +14,12 @@ output: enabled: true # Path to the directory where to save the generated files. The option is mandatory. - path: {{ '{{' }} output_file_path|default(beat.working_dir + "/output") {{ '}}' }} + path: {{ output_file_path|default(beat.working_dir + "/output") }} # Name of the generated files. The default is `{beat}` and it generates # files: `{beat}`, `{beat}.1`, `{beat}.2`, etc. - filename: "{{ '{{' }} output_file_filename|default("{beat}") {{ '}}' }}" + filename: {{ output_file_filename|default("{beat}") }} # Maximum size in kilobytes of each file. When this size is reached, the files are # rotated. The default value is 10 MB.