-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
demonstrating flow of data through the wizard steps
(cherry picked from commit 4bcc5a1)
- Loading branch information
Showing
10 changed files
with
57 additions
and
14 deletions.
There are no files selected for viewing
11 changes: 10 additions & 1 deletion
11
src/plugins/kibana/public/settings/sections/data/directives/install_filebeat_step.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
Install filebeat step | ||
<h2>Install filebeat step</h2> | ||
|
||
<div> | ||
Results: | ||
<ul> | ||
<li>Logs: {{results[0]}}</li> | ||
<li>Docs: {{results[1]}}</li> | ||
<li>Pattern: {{results[2]}}</li> | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/plugins/kibana/public/settings/sections/data/directives/paste_samples_step.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
Paste samples step | ||
<h2>Paste samples step</h2> | ||
|
||
<button ng-click="save({results: 'some sample logs'})">Do Stuff</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 7 additions & 1 deletion
8
src/plugins/kibana/public/settings/sections/data/directives/pattern_review_step.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
Pattern review step | ||
<h2>Pattern review step</h2> | ||
|
||
<div> | ||
Docs: {{docs}} | ||
</div> | ||
|
||
<button ng-click="save({results: {id: 'logstash-*', title: 'myFirstIndexPattern'}})">Create an index pattern</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 7 additions & 1 deletion
8
src/plugins/kibana/public/settings/sections/data/directives/pipeline_step.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
Build pipeline step | ||
<h2>Build pipeline step</h2> | ||
|
||
<div> | ||
Logs: {{logs}} | ||
</div> | ||
|
||
<button ng-click="save({results: {os: 'osx'}})">Build a pipeline</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters