This file contains hidden or 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
| - How to extend functions in Kibana e.g. currency? Would we need to plugin to do this. |
- SQL Errors
[Fri Dec 09 17:58:55.023091 2016] [:error] [pid 27539] [client 101.127.112.54:52609] WordPress database error Table 'hotel53_20161205.wp_hotel_booking_order_items' doesn't exist for query SELECT order_item_id FROM wp_hotel_booking_order_items WHERE `order_item_id` IS NOT NULL made by require('wp-blog-header.php'), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, apply_filters_ref_array, WP_Hook->apply_filters, call_user_func_array, HB_Post_Types->posts_join_paged, referer: http://www.hotel53.com/
[Fri Dec 09 17:58:58.497043 2016] [:error] [pid 27653] [client 101.127.112.54:52617] WordPress database error Table 'hotel53_20161205.wp_hotel_booking_order_items' doesn't exist for query SELECT order_item_id FROM wp_hotel_booking_order_items WHERE `order_item_id` IS NOT NULL made by require('wp-blog-header.php'), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, apply_filters_ref_array, WP_Hook->apply_filte
Issues with timestamp parsing with python:
Most of your timestamps come out as such:
YYYY-mm-DDTHH:MM:SS.%fZ 2017-01-09T20:44:16.241201Z
However I have just see this: 2017-01-08T15:02:41.1218785Z
This file contains hidden or 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
| { | |
| "trigger": { | |
| "schedule": { | |
| "interval": "1m" | |
| } | |
| }, | |
| "input": { | |
| "search": { | |
| "request": { | |
| "indices": "##INDEX##", |
Cloud Signup Link:https://www.elastic.co/cloud/as-a-service/signup
Metricbeat Getting started Link: https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-getting-started.html
Username: elastic
This file contains hidden or 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
| ## CURRENT | |
| Site Admin - EVERYTHING - Chris | |
| - Marriott | |
| - Admin | |
| - Michael | |
| - Chirs | |
| - Users - Employee | |
| - Dave | |
| - Bob | |
| etc... |
This file contains hidden or 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
| // -- ** ELASTICSEARCH | |
| List<HttpHost> httpHost = new ArrayList<>(); | |
| httpHost.add(new HttpHost("127.0.0.1", 9200, "http")); | |
| ElasticsearchSink.Builder<String> esSinkBuilder = new ElasticsearchSink.Builder<>( | |
| httpHost, | |
| new ElasticsearchSinkFunction<String>() { | |
| public IndexRequest createIndexRequest(String element) { | |
| // Map<String, String> json = new HashMap<>(); |