You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-10Lines changed: 12 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,17 +73,17 @@ $ sudo apt update
73
73
$ sudo apt install yarn
74
74
```
75
75
76
-
6. Download Kibana source code and select the target version (v7.6.2, v7.0.0, etc.). `kibana` is the top directory.
76
+
6. Download Kibana source code and select the target version (v7.6.2, v7.0.0, etc.). `kibana` is the top directory
77
77
78
78
```
79
79
$ git clone https://github.com/elastic/kibana.git
80
80
$ cd kibana
81
81
$ git checkout v7.6.2
82
82
```
83
83
84
-
7. Copy the source code with modified name inside the `kibana/plugins` directory.
84
+
7. Copy the source code with modified name inside the `kibana/plugins` directory
85
85
86
-
8. Start Kibana in development mode, ensuring only OSS (Open Source) features are used
86
+
8. Start Kibana in development mode, ensuring only OSS (Open Source Software) features are used
87
87
88
88
```
89
89
$ cd kibana
@@ -99,17 +99,17 @@ $ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
99
99
$ sudo sysctl -p
100
100
```
101
101
102
-
10. If you have problem to start Kibana 7.7.0 (from Git. For some reason it thinks it is already in version 8.0.0) with ElasticSearch 7.7.0, add this line in `config/kibana.yml` config file. When upgrading from 7.6 to 7.7 I had to delete all indexes `curl -XDELETE localhost:9200/*`.
102
+
10. If you have problem to start Kibana 7.7.0 (from Git. For some reason it thinks it is already in version 8.0.0) with ElasticSearch 7.7.0, add this line in `config/kibana.yml` config file. When upgrading from 7.6 to 7.7 I had to delete all indexes `curl -XDELETE localhost:9200/*`
103
103
104
104
```
105
105
elasticsearch.ignoreVersionMismatch: true
106
106
```
107
107
108
-
## Creating the actual form (step 7)
108
+
## Creating the actual form (step 7) for your own usecase
109
109
110
-
The current plugin name is based on accounts data. Simply perform a search replace in filenames and in the source code, respecting letter capitalization.
110
+
The current plugin name is based on accounts test data. Simply perform a search replace in filenames and in the source code, respecting letter capitalization.
111
111
112
-
The form itself is contained in the [controller file](https://github.com/guyplusplus/Kibana-Plugin-Custom-Form-Filter-Visualization/blob/master/vis_type_custom_form_filter_accounts/public/custom_form_filter_accounts_vis_controller.tsx). An [option tab](https://github.com/guyplusplus/Kibana-Plugin-Custom-Form-Filter-Visualization/blob/master/vis_type_custom_form_filter_accounts/public/custom_form_filter_accounts_options.tsx) is also possible.
112
+
The form itself is contained in the [controller file](https://github.com/guyplusplus/Kibana-Plugin-Custom-Form-Filter-Visualization/blob/master/vis_type_custom_form_filter_accounts/public/custom_form_filter_accounts_vis_controller.tsx) file. An [option tab](https://github.com/guyplusplus/Kibana-Plugin-Custom-Form-Filter-Visualization/blob/master/vis_type_custom_form_filter_accounts/public/custom_form_filter_accounts_options.tsx) is also possible, actually one or more.
113
113
114
114
The form code looks like this and is very simple to modify, based on EUI React components.
0 commit comments