Skip to content

Commit

Permalink
fix template for output filename and path (elastic#4475)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Álvarez authored and tsg committed Jun 9, 2017
1 parent bdc169b commit cde8f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generator/beat/{beat}/tests/system/config/{beat}.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit cde8f38

Please sign in to comment.