gitextract__q_184o4/ ├── Install/ │ ├── config/ │ │ ├── docker-compose-higee.yml │ │ ├── docker-compose.yml │ │ └── kibana.yml │ ├── data/ │ │ ├── access.log │ │ ├── access2.log │ │ ├── apache.log │ │ ├── date.log │ │ ├── ip-address.log │ │ ├── test.csv │ │ ├── titanic-header.csv │ │ ├── titanic.csv │ │ └── titanic2.csv │ ├── driver/ │ │ └── mysql-connector-java-5.1.36-bin.jar │ └── object/ │ ├── nginx-dashboard.json │ ├── nginx-visualizations.json │ ├── shopping-dashboard.json │ └── shopping-visualizations.json ├── README.md ├── Week1_Kibana/ │ └── code/ │ ├── es_conf.py │ ├── fake.py │ └── insert.py ├── Week2_Kibana/ │ └── code/ │ └── timelion/ │ ├── all │ ├── exercise │ ├── tl10_scale_interval │ ├── tl11_if │ ├── tl1_index │ ├── tl2_timefield │ ├── tl3_query │ ├── tl4_metric │ ├── tl5_indices │ ├── tl6_label │ ├── tl7_divide │ ├── tl8_offset │ └── tl9_range ├── Week3_Kibana/ │ └── code/ │ ├── lucene_query_syntax/ │ │ ├── all │ │ ├── and │ │ ├── compound │ │ ├── exact_field_match │ │ ├── exercise │ │ ├── field_match │ │ ├── fuzzy │ │ ├── keyword │ │ ├── negative │ │ ├── not │ │ ├── numeric │ │ ├── or │ │ ├── positive │ │ ├── proximity │ │ ├── range │ │ ├── term │ │ ├── wildcard_1 │ │ └── wildcard_2 │ └── scripted_field/ │ ├── arithmetic_operation_1 │ ├── arithmetic_operation_2 │ ├── concat_1 │ ├── date_1 │ ├── date_2 │ ├── date_3 │ ├── date_4 │ ├── date_5 │ ├── if_1 │ └── if_2 ├── Week4_Elasticsearch/ │ ├── code/ │ │ ├── data-type/ │ │ │ ├── complex/ │ │ │ │ ├── array/ │ │ │ │ │ ├── indexing │ │ │ │ │ ├── mapping │ │ │ │ │ └── search │ │ │ │ ├── nested/ │ │ │ │ │ ├── indexing │ │ │ │ │ ├── mapping │ │ │ │ │ ├── search_1 │ │ │ │ │ └── search_2 │ │ │ │ └── object/ │ │ │ │ ├── indexing │ │ │ │ └── mapping │ │ │ └── core/ │ │ │ ├── float │ │ │ ├── numeric │ │ │ └── string │ │ └── elasticsearch_API/ │ │ ├── document/ │ │ │ ├── add-document-post │ │ │ ├── add-document-put │ │ │ ├── check-document-id │ │ │ ├── delete-document-id │ │ │ ├── delete-document-query │ │ │ ├── exercise │ │ │ ├── reindex-all-documents │ │ │ ├── reindex-some-documents │ │ │ ├── update-document-id-all-fields │ │ │ ├── update-document-id-some-fields │ │ │ ├── update-document-query │ │ │ └── upsert-document │ │ ├── indices/ │ │ │ ├── add-mapping │ │ │ ├── check-mapping │ │ │ ├── check-mapping-template │ │ │ ├── create-index │ │ │ ├── create-mapping-template │ │ │ ├── create-mapping-with-index │ │ │ ├── create-mapping-without-index │ │ │ ├── delete-index │ │ │ └── exercise │ │ └── search/ │ │ ├── from-size │ │ ├── query_dsl/ │ │ │ ├── Compound-queries/ │ │ │ │ ├── bool-a-and-b │ │ │ │ ├── bool-a-and-b-or-c │ │ │ │ ├── bool-a-and-b-or-c-or-d │ │ │ │ ├── bool-a-and-not-b │ │ │ │ ├── bool-a-or-b │ │ │ │ └── bool-example │ │ │ ├── Full-text-queries/ │ │ │ │ ├── match │ │ │ │ └── query-string │ │ │ ├── Specialized-queries/ │ │ │ │ └── script-query │ │ │ ├── TERM-VS-MATCH/ │ │ │ │ ├── indexing │ │ │ │ ├── keyword-match-search │ │ │ │ ├── keyword-term-search │ │ │ │ ├── mapping │ │ │ │ ├── text-match-search │ │ │ │ └── text-term-search │ │ │ ├── Term-level-queries/ │ │ │ │ ├── exists │ │ │ │ ├── fuzzy │ │ │ │ ├── prefix │ │ │ │ ├── range │ │ │ │ ├── term │ │ │ │ ├── terms │ │ │ │ └── wildcard │ │ │ └── match_all │ │ ├── sort │ │ └── source │ └── object/ │ ├── dashboard/ │ │ ├── nginx-dashboard.json │ │ └── shopping-dashboard.json │ ├── search/ │ │ └── nginx-search.json │ └── visualization/ │ ├── nginx-visualization.json │ └── shopping-visualization.json ├── Week5_Logstash/ │ └── code/ │ ├── filter/ │ │ ├── csv/ │ │ │ ├── autodetect-column-names.conf │ │ │ ├── convert.conf │ │ │ └── separator.conf │ │ ├── date/ │ │ │ ├── date.conf │ │ │ └── default.conf │ │ ├── drop/ │ │ │ ├── drop1.conf │ │ │ └── drop2.conf │ │ ├── elasticsearch/ │ │ │ ├── example1.conf │ │ │ ├── example1_.conf │ │ │ ├── example2.conf │ │ │ ├── example3.conf │ │ │ ├── example3.json │ │ │ ├── example4.conf │ │ │ └── example4.json │ │ ├── grok/ │ │ │ ├── access.conf │ │ │ └── apache.conf │ │ ├── mutate/ │ │ │ ├── add_field.conf │ │ │ ├── remove_field.conf │ │ │ └── split.conf │ │ └── ruby/ │ │ ├── example1.conf │ │ └── example2.conf │ ├── input/ │ │ ├── elasticsearch/ │ │ │ └── elasticsearch.conf │ │ ├── file/ │ │ │ ├── file-sincedb-path.conf │ │ │ ├── file-start-position.conf │ │ │ ├── file.conf │ │ │ └── nginx.conf │ │ ├── jdbc/ │ │ │ ├── jdbc-schedule.conf │ │ │ ├── jdbc-sql-last-value-1.conf │ │ │ ├── jdbc-sql-last-value-2.conf │ │ │ └── jdbc.conf │ │ └── stdin/ │ │ └── stdin.conf │ ├── logstash.md │ └── output/ │ ├── conditional.conf │ ├── csv/ │ │ └── csv.conf │ ├── elasticsearch/ │ │ ├── elasticsearch-dynamic-field-name-1.conf │ │ ├── elasticsearch-dynamic-field-name-2.conf │ │ ├── elasticsearch-stdout.conf │ │ └── elasticsearch.conf │ └── stdout/ │ └── stdout.conf └── Week6_Review/ └── solution/ ├── p44_template ├── p46_logstash ├── p53-heatmap.json ├── p54-coordinate-map.json ├── p55-coordinate-map.json ├── p58-timelion.json ├── p60-pie-chart.json ├── p62-data-table.json ├── p64-markdown.json ├── p65-dashboard.json ├── p66_query_dsl ├── p67_logstash ├── p71_backup_logstash └── p73_backup_reindex