Skip to content

Commit

Permalink
More progress on Deb instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
ycombinator committed Nov 27, 2017
1 parent 6dbb4ff commit 9d9c692
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ export const LOGSTASH_INSTRUCTIONS = {
{
title: 'Download and install the Java runtime environment',
textPre: `Follow the installation instructions [here](https://docs.oracle.com/javase/8/docs/technotes/guides/install/mac_jre.html). ` +
`${SKIP_INSTALL_SENTENCE} ${FIRST_TIME_SENTENCE}`,
commands: []
`${SKIP_INSTALL_SENTENCE} ${FIRST_TIME_SENTENCE}`
},
{
title: 'Download and install Logstash',
Expand Down
17 changes: 17 additions & 0 deletions src/core_plugins/kibana/server/tutorials/netflow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,24 @@ export function netflowSpecProvider() {
' Kibana dashboards and visualizations. If the dashboards are already setup, you don\'t need to use this flag.'
}
]
},
{
id: INSTRUCTION_VARIANT.DEB,
instructions: [
...LOGSTASH_INSTRUCTIONS.INSTALL.DEB,
{
title: 'TODO: Set up and run the Netflow module',
textPre: 'In the Logstash install directory, run the following command to set up and run the Netflow module.',
commands: [
'cd logstash-{config.kibana.version}',
'./bin/logstash --modules netflow -M netflow.var.input.udp.port={params.netflow_var_input_udp_port} --setup',
],
textPost: 'The `--setup` flag loads the' +
' Kibana dashboards and visualizations. If the dashboards are already setup, you don\'t need to use this flag.'
}
]
}

]
}
]
Expand Down

0 comments on commit 9d9c692

Please sign in to comment.