You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@metron.apache.org by "Jon Zeolla (JIRA)" <ji...@apache.org> on 2019/02/05 14:29:00 UTC

[jira] [Created] (METRON-1989) Tooltip for ES mpack path_data is incorrect

Jon Zeolla created METRON-1989:
----------------------------------

             Summary: Tooltip for ES mpack path_data is incorrect
                 Key: METRON-1989
                 URL: https://issues.apache.org/jira/browse/METRON-1989
             Project: Metron
          Issue Type: Bug
            Reporter: Jon Zeolla
            Assignee: Jon Zeolla


Currently the tooltip for the ES mpack path_data is incorrect.  It says:
'Comma-separated list of directories where to store index data allocated for each node: "/mnt/first","/mnt/second".'
This is incorrect, as the way the elasticsearch.yml gets updated results in invalid yaml.  Specifically:
```
path:
  data: "/mnt/first","/mnt/second"
```

Two valid yaml options are either of the following (I'm excluding any multiline solutions here):
```
path:
  data:"/mnt/first","/mnt/second"
```
or
```
path:
  data: [ "/mnt/first", "/mnt/second" ]
```

We can either remove the space after `data:` or use the [ ] notation.  Since we use the [ ] notation elsewhere, I suggest we move in that direction with the tooltip.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)