diff --git a/LICENSE.rst b/LICENSE.rst index 24fe94ec3..f43af23f9 100755 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -67,4 +67,4 @@ In no event and under no legal theory, whether in tort (including negligence), c ---- While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONSISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +END OF TERMS AND CONDITIONSISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.rst b/README.rst index 53853c02a..2b49c30c0 100755 --- a/README.rst +++ b/README.rst @@ -51,7 +51,7 @@ to build from the source just clone source and package with maven cd logisland mvn install -the final package is available at `logisland-assembly/target/logisland-0.10.0-rc1-bin-hdp2.5.tar.gz` +the final package is available at `logisland-assembly/target/logisland-0.10.1-bin-hdp2.5.tar.gz` You can also download the `latest release build `_ @@ -72,9 +72,9 @@ basically **logisland** depends on Kafka and Spark, you can deploy it on any lin curl -s http://d3kbcqa49mib13.cloudfront.net/spark-2.1.0-bin-hadoop2.7.tgz | tar -xz -C /usr/local/ export SPARK_HOME=/usr/local/spark-2.1.0-bin-hadoop2.7 - # install Logisland 0.10.0-rc1 - curl -s https://github.com/Hurence/logisland/releases/download/v0.10.0/logisland-0.10.0-rc1-bin-hdp2.5.tar.gz | tar -xz -C /usr/local/ - cd /usr/local/logisland-0.10.0-rc1 + # install Logisland 0.10.1 + curl -s https://github.com/Hurence/logisland/releases/download/v0.10.0/logisland-0.10.1-bin-hdp2.5.tar.gz | tar -xz -C /usr/local/ + cd /usr/local/logisland-0.10.1 # launch a logisland job bin/logisland.sh --conf conf/index-apache-logs.yml @@ -99,7 +99,7 @@ The first part is the `ProcessingEngine` configuration (here a Spark streaming e .. code-block:: yaml - version: 0.10.0-rc1 + version: 0.10.1 documentation: LogIsland job config file engine: component: com.hurence.logisland.engine.spark.KafkaStreamProcessingEngine diff --git a/logisland-api/pom.xml b/logisland-api/pom.xml index 60f514d8a..e408d0896 100644 --- a/logisland-api/pom.xml +++ b/logisland-api/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 logisland-api jar diff --git a/logisland-assembly/pom.xml b/logisland-assembly/pom.xml index 9a75c5053..dc515b018 100644 --- a/logisland-assembly/pom.xml +++ b/logisland-assembly/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 logisland-assembly pom diff --git a/logisland-docker/base/README.rst b/logisland-docker/base/README.rst index 3df0b059c..ec1b3cb60 100644 --- a/logisland-docker/base/README.rst +++ b/logisland-docker/base/README.rst @@ -27,4 +27,4 @@ then login and push the latest image .. code-block:: sh docker login - docker push hurence/base \ No newline at end of file + docker push hurence/base diff --git a/logisland-docker/full-container/README.rst b/logisland-docker/full-container/README.rst index 1c9b93f16..5a46cf419 100644 --- a/logisland-docker/full-container/README.rst +++ b/logisland-docker/full-container/README.rst @@ -7,7 +7,7 @@ Small standalone Hadoop distribution for development and testing purpose : - Elasticsearch 2.3.3 - Kibana 4.5.1 - Kafka 0.9.0.1 -- Logisland 0.10.0-rc1 +- Logisland 0.10.1 This repository contains a Docker file to build a Docker image with Apache Spark, HBase, Flume & Zeppelin. @@ -32,14 +32,14 @@ Building the image # build logisland mvn clean install - cp logisland-assembly/target/logisland-0.10.0-rc1-bin.tar.gz logisland-docker + cp logisland-assembly/target/logisland-0.10.1-bin.tar.gz logisland-docker The archive is generated under dist directory, you have to copy this file into your Dockerfile directory you can now issue .. code-block:: sh - docker build --rm -t hurence/logisland:0.10.0-rc1 . + docker build --rm -t hurence/logisland:0.10.1 . Running the image @@ -64,13 +64,13 @@ Running the image -p 4040-4060:4040-4060 \ --name logisland \ -h sandbox \ - hurence/logisland-hdp2.4:0.10.0-rc1 bash + hurence/logisland-hdp2.4:0.10.1 bash or .. code-block:: - docker run -d -h sandbox hurence/logisland-hdp2.4:0.10.0-rc1 -d + docker run -d -h sandbox hurence/logisland-hdp2.4:0.10.1 -d if you want to mount a directory from your host, add the following option : @@ -96,4 +96,4 @@ then login and push the latest image .. code-block:: sh docker login - docker push hurence/logisland-hdp2.4 \ No newline at end of file + docker push hurence/logisland-hdp2.4 diff --git a/logisland-docker/pom.xml b/logisland-docker/pom.xml index 784c2c54f..4cdd6fba4 100644 --- a/logisland-docker/pom.xml +++ b/logisland-docker/pom.xml @@ -7,7 +7,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 pom logisland-docker diff --git a/logisland-documentation/README.rst b/logisland-documentation/README.rst index 1c8e6fa2c..3ccf3a81a 100644 --- a/logisland-documentation/README.rst +++ b/logisland-documentation/README.rst @@ -49,4 +49,4 @@ Then run the monitoring script in the background: python autoreload.py & If you install the [browser extensions](http://livereload.com/) then everything should update every time any files are -saved without any manual steps on your part. \ No newline at end of file +saved without any manual steps on your part. diff --git a/logisland-documentation/api.rst b/logisland-documentation/api.rst index b23e11040..db0b9d893 100644 --- a/logisland-documentation/api.rst +++ b/logisland-documentation/api.rst @@ -409,7 +409,7 @@ You can then start to generate the source code from the swgger yaml file swagger-codegen generate \ --group-id com.hurence.logisland \ --artifact-id logisland-agent \ - --artifact-version 0.10.0-rc1 \ + --artifact-version 0.10.1 \ --api-package com.hurence.logisland.agent.rest.api \ --model-package com.hurence.logisland.agent.rest.model \ -o logisland-framework/logisland-agent \ @@ -438,4 +438,4 @@ To run the server, please execute the following: You can then view the `swagger.json `_ . > Note that if you have configured the `host` to be something other than localhost, the calls through -swagger-ui will be directed to that host and not localhost! \ No newline at end of file +swagger-ui will be directed to that host and not localhost! diff --git a/logisland-documentation/changes.rst b/logisland-documentation/changes.rst index 89e4c1570..991738753 100644 --- a/logisland-documentation/changes.rst +++ b/logisland-documentation/changes.rst @@ -103,4 +103,4 @@ v0.9.5 - add raw_content to event if regex matching failed in SplitText - integration testing with embedded Kafka/Spark - processor chaining -- \ No newline at end of file +- diff --git a/logisland-documentation/developer.rst b/logisland-documentation/developer.rst index 31819c772..8cc81c26e 100644 --- a/logisland-documentation/developer.rst +++ b/logisland-documentation/developer.rst @@ -204,14 +204,14 @@ to release artifacts (if you're allowed to), follow this guide `release to OSS S .. code-block:: sh - mvn versions:set -DnewVersion=0.10.0-rc1 + mvn versions:set -DnewVersion=0.10.1 mvn license:format mvn test mvn -DperformRelease=true clean deploy mvn versions:commit - git tag -a v0.10.0-rc1 -m "new logisland release 0.10.0-rc1" - git push origin v0.10.0-rc1 + git tag -a v0.10.1 -m "new logisland release 0.10.1" + git push origin v0.10.1 follow the staging procedure in `oss.sonatype.org `_ or read `Sonatype book `_ @@ -242,4 +242,4 @@ then login and push the latest image Publish artifact to github -------------------------- -Tag the release + upload latest tgz \ No newline at end of file +Tag the release + upload latest tgz diff --git a/logisland-documentation/faq.rst b/logisland-documentation/faq.rst index e43f88d68..7bad2a575 100644 --- a/logisland-documentation/faq.rst +++ b/logisland-documentation/faq.rst @@ -157,4 +157,4 @@ then, you can run this command: .. code-block:: bash - bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic test \ No newline at end of file + bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic test diff --git a/logisland-documentation/intro.rst b/logisland-documentation/intro.rst index 290fb691f..bbc1a1a0d 100644 --- a/logisland-documentation/intro.rst +++ b/logisland-documentation/intro.rst @@ -5,4 +5,4 @@ you can find a quick presentation below : .. raw:: html -
Logisland "Event Mining at scale" from Thomas Bailet
\ No newline at end of file +
Logisland "Event Mining at scale" from Thomas Bailet
diff --git a/logisland-documentation/pom.xml b/logisland-documentation/pom.xml index da5f402b4..063291c5f 100644 --- a/logisland-documentation/pom.xml +++ b/logisland-documentation/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 logisland-documentation diff --git a/logisland-documentation/tutorials/query-matching.rst b/logisland-documentation/tutorials/query-matching.rst index fa5f9a54c..8394fa3d0 100644 --- a/logisland-documentation/tutorials/query-matching.rst +++ b/logisland-documentation/tutorials/query-matching.rst @@ -211,4 +211,4 @@ by adding another filter on ``alert_match_name:blacklisted_host`` you'll only ge if we filter now on threshold alerts whith ``record_type:threshold_alert`` you'll get the 13 src_ip that have been catched by the threshold query. -.. image:: /_static/kibana-threshold-alerts.png \ No newline at end of file +.. image:: /_static/kibana-threshold-alerts.png diff --git a/logisland-engines/logisland-spark_1_6-engine/pom.xml b/logisland-engines/logisland-spark_1_6-engine/pom.xml index 2fcb2d9f7..60af802f1 100644 --- a/logisland-engines/logisland-spark_1_6-engine/pom.xml +++ b/logisland-engines/logisland-spark_1_6-engine/pom.xml @@ -23,7 +23,7 @@ http://www.w3.org/2001/XMLSchema-instance "> com.hurence.logisland logisland-engines - 0.10.0-rc1 + 0.10.1 logisland-spark_1_6-engine_${scala.binary.version} jar diff --git a/logisland-engines/pom.xml b/logisland-engines/pom.xml index fc7f53998..f2e54a1f3 100644 --- a/logisland-engines/pom.xml +++ b/logisland-engines/pom.xml @@ -6,7 +6,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 pom @@ -43,4 +43,4 @@ - \ No newline at end of file + diff --git a/logisland-framework/logisland-agent/pom.xml b/logisland-framework/logisland-agent/pom.xml index 26838a0b6..5fcd64fbc 100644 --- a/logisland-framework/logisland-agent/pom.xml +++ b/logisland-framework/logisland-agent/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-framework - 0.10.0-rc1 + 0.10.1 logisland-agent jar diff --git a/logisland-framework/logisland-bootstrap/pom.xml b/logisland-framework/logisland-bootstrap/pom.xml index 3905f4c07..bb9de72a1 100644 --- a/logisland-framework/logisland-bootstrap/pom.xml +++ b/logisland-framework/logisland-bootstrap/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-framework - 0.10.0-rc1 + 0.10.1 logisland-bootstrap jar diff --git a/logisland-framework/logisland-hadoop-utils/pom.xml b/logisland-framework/logisland-hadoop-utils/pom.xml index af2c63c68..197270811 100644 --- a/logisland-framework/logisland-hadoop-utils/pom.xml +++ b/logisland-framework/logisland-hadoop-utils/pom.xml @@ -18,7 +18,7 @@ com.hurence.logisland logisland-framework - 0.10.0-rc1 + 0.10.1 logisland-hadoop-utils jar diff --git a/logisland-framework/logisland-resources/pom.xml b/logisland-framework/logisland-resources/pom.xml index 1005f1475..244b2bb7d 100644 --- a/logisland-framework/logisland-resources/pom.xml +++ b/logisland-framework/logisland-resources/pom.xml @@ -21,7 +21,7 @@ com.hurence.logisland logisland-framework - 0.10.0-rc1 + 0.10.1 logisland-resources pom diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/configuration-template.yml b/logisland-framework/logisland-resources/src/main/resources/conf/configuration-template.yml index 90096ca7e..c0aacad33 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/configuration-template.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/configuration-template.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/enrich-apache-logs.yml b/logisland-framework/logisland-resources/src/main/resources/conf/enrich-apache-logs.yml index fab315f94..133f98912 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/enrich-apache-logs.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/enrich-apache-logs.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/index-apache-logs.yml b/logisland-framework/logisland-resources/src/main/resources/conf/index-apache-logs.yml index 41503cdcf..e032a4494 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/index-apache-logs.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/index-apache-logs.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### @@ -111,4 +111,4 @@ engine: default.type: event timebased.index: yesterday es.index.field: search_index - es.type.field: record_type \ No newline at end of file + es.type.field: record_type diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/index-network-packets.yml b/logisland-framework/logisland-resources/src/main/resources/conf/index-network-packets.yml index d36250e4c..d22a413c5 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/index-network-packets.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/index-network-packets.yml @@ -2,7 +2,7 @@ # Logisland configuration script example: parse network packets and display them in Kibana ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/outlier-detection.yml b/logisland-framework/logisland-resources/src/main/resources/conf/outlier-detection.yml index 61298512b..ba1677b6a 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/outlier-detection.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/outlier-detection.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### @@ -185,4 +185,4 @@ engine: default.type: event timebased.index: yesterday es.index.field: search_index - es.type.field: record_type \ No newline at end of file + es.type.field: record_type diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/python-processing.yml b/logisland-framework/logisland-resources/src/main/resources/conf/python-processing.yml index 97dd67ba6..5b51c695d 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/python-processing.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/python-processing.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/query-matching.yml b/logisland-framework/logisland-resources/src/main/resources/conf/query-matching.yml index 9d102d94a..770200938 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/query-matching.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/query-matching.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/retrieve-data-from-elasticsearch.yml b/logisland-framework/logisland-resources/src/main/resources/conf/retrieve-data-from-elasticsearch.yml index 14ef62234..e9da2fdbf 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/retrieve-data-from-elasticsearch.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/retrieve-data-from-elasticsearch.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/save-to-hdfs.yml b/logisland-framework/logisland-resources/src/main/resources/conf/save-to-hdfs.yml index 9c7d2f7c4..121434bcb 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/save-to-hdfs.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/save-to-hdfs.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: LogIsland analytics main config file. Put here every engine or component config ######################################################################################################### @@ -56,4 +56,4 @@ engine: kafka.topic.default.partitions: 2 kafka.topic.default.replicationFactor: 1 output.format: parquet - output.folder.path: data/syslog_events \ No newline at end of file + output.folder.path: data/syslog_events diff --git a/logisland-framework/logisland-resources/src/main/resources/conf/send-apache-logs-to-hbase.yml b/logisland-framework/logisland-resources/src/main/resources/conf/send-apache-logs-to-hbase.yml index 83b2c6695..b5d1c438b 100644 --- a/logisland-framework/logisland-resources/src/main/resources/conf/send-apache-logs-to-hbase.yml +++ b/logisland-framework/logisland-resources/src/main/resources/conf/send-apache-logs-to-hbase.yml @@ -2,7 +2,7 @@ # Logisland configuration script tempate ######################################################################################################### -version: 0.10.0-rc1 +version: 0.10.1 documentation: This tutorial job sends apache logs to an HBase table ######################################################################################################### diff --git a/logisland-framework/logisland-resources/src/main/resources/docs/README.rst b/logisland-framework/logisland-resources/src/main/resources/docs/README.rst index 1c8e6fa2c..3ccf3a81a 100644 --- a/logisland-framework/logisland-resources/src/main/resources/docs/README.rst +++ b/logisland-framework/logisland-resources/src/main/resources/docs/README.rst @@ -49,4 +49,4 @@ Then run the monitoring script in the background: python autoreload.py & If you install the [browser extensions](http://livereload.com/) then everything should update every time any files are -saved without any manual steps on your part. \ No newline at end of file +saved without any manual steps on your part. diff --git a/logisland-framework/logisland-resources/src/main/resources/docs/api.rst b/logisland-framework/logisland-resources/src/main/resources/docs/api.rst index b23e11040..db0b9d893 100644 --- a/logisland-framework/logisland-resources/src/main/resources/docs/api.rst +++ b/logisland-framework/logisland-resources/src/main/resources/docs/api.rst @@ -409,7 +409,7 @@ You can then start to generate the source code from the swgger yaml file swagger-codegen generate \ --group-id com.hurence.logisland \ --artifact-id logisland-agent \ - --artifact-version 0.10.0-rc1 \ + --artifact-version 0.10.1 \ --api-package com.hurence.logisland.agent.rest.api \ --model-package com.hurence.logisland.agent.rest.model \ -o logisland-framework/logisland-agent \ @@ -438,4 +438,4 @@ To run the server, please execute the following: You can then view the `swagger.json `_ . > Note that if you have configured the `host` to be something other than localhost, the calls through -swagger-ui will be directed to that host and not localhost! \ No newline at end of file +swagger-ui will be directed to that host and not localhost! diff --git a/logisland-framework/logisland-resources/src/main/resources/docs/changes.rst b/logisland-framework/logisland-resources/src/main/resources/docs/changes.rst index 89e4c1570..991738753 100644 --- a/logisland-framework/logisland-resources/src/main/resources/docs/changes.rst +++ b/logisland-framework/logisland-resources/src/main/resources/docs/changes.rst @@ -103,4 +103,4 @@ v0.9.5 - add raw_content to event if regex matching failed in SplitText - integration testing with embedded Kafka/Spark - processor chaining -- \ No newline at end of file +- diff --git a/logisland-framework/logisland-resources/src/main/resources/docs/developer.rst b/logisland-framework/logisland-resources/src/main/resources/docs/developer.rst index 31819c772..8cc81c26e 100644 --- a/logisland-framework/logisland-resources/src/main/resources/docs/developer.rst +++ b/logisland-framework/logisland-resources/src/main/resources/docs/developer.rst @@ -204,14 +204,14 @@ to release artifacts (if you're allowed to), follow this guide `release to OSS S .. code-block:: sh - mvn versions:set -DnewVersion=0.10.0-rc1 + mvn versions:set -DnewVersion=0.10.1 mvn license:format mvn test mvn -DperformRelease=true clean deploy mvn versions:commit - git tag -a v0.10.0-rc1 -m "new logisland release 0.10.0-rc1" - git push origin v0.10.0-rc1 + git tag -a v0.10.1 -m "new logisland release 0.10.1" + git push origin v0.10.1 follow the staging procedure in `oss.sonatype.org `_ or read `Sonatype book `_ @@ -242,4 +242,4 @@ then login and push the latest image Publish artifact to github -------------------------- -Tag the release + upload latest tgz \ No newline at end of file +Tag the release + upload latest tgz diff --git a/logisland-framework/logisland-resources/src/main/resources/docs/faq.rst b/logisland-framework/logisland-resources/src/main/resources/docs/faq.rst index e43f88d68..7bad2a575 100644 --- a/logisland-framework/logisland-resources/src/main/resources/docs/faq.rst +++ b/logisland-framework/logisland-resources/src/main/resources/docs/faq.rst @@ -157,4 +157,4 @@ then, you can run this command: .. code-block:: bash - bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic test \ No newline at end of file + bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic test diff --git a/logisland-framework/logisland-resources/src/main/resources/docs/intro.rst b/logisland-framework/logisland-resources/src/main/resources/docs/intro.rst index 290fb691f..bbc1a1a0d 100644 --- a/logisland-framework/logisland-resources/src/main/resources/docs/intro.rst +++ b/logisland-framework/logisland-resources/src/main/resources/docs/intro.rst @@ -5,4 +5,4 @@ you can find a quick presentation below : .. raw:: html - \ No newline at end of file + diff --git a/logisland-framework/logisland-resources/src/main/resources/docs/tutorials/query-matching.rst b/logisland-framework/logisland-resources/src/main/resources/docs/tutorials/query-matching.rst index fa5f9a54c..8394fa3d0 100644 --- a/logisland-framework/logisland-resources/src/main/resources/docs/tutorials/query-matching.rst +++ b/logisland-framework/logisland-resources/src/main/resources/docs/tutorials/query-matching.rst @@ -211,4 +211,4 @@ by adding another filter on ``alert_match_name:blacklisted_host`` you'll only ge if we filter now on threshold alerts whith ``record_type:threshold_alert`` you'll get the 13 src_ip that have been catched by the threshold query. -.. image:: /_static/kibana-threshold-alerts.png \ No newline at end of file +.. image:: /_static/kibana-threshold-alerts.png diff --git a/logisland-framework/logisland-ui/app/src/jobs/components/details/EditProcessor.html b/logisland-framework/logisland-ui/app/src/jobs/components/details/EditProcessor.html index 6a5597e5a..5011114e8 100644 --- a/logisland-framework/logisland-ui/app/src/jobs/components/details/EditProcessor.html +++ b/logisland-framework/logisland-ui/app/src/jobs/components/details/EditProcessor.html @@ -30,4 +30,4 @@

Processor

Done - \ No newline at end of file + diff --git a/logisland-framework/logisland-ui/app/src/jobs/components/details/TopicSchema.html b/logisland-framework/logisland-ui/app/src/jobs/components/details/TopicSchema.html index 6dd9a9660..5146358e6 100644 --- a/logisland-framework/logisland-ui/app/src/jobs/components/details/TopicSchema.html +++ b/logisland-framework/logisland-ui/app/src/jobs/components/details/TopicSchema.html @@ -1,4 +1,4 @@
Topic Schema -
\ No newline at end of file + diff --git a/logisland-framework/logisland-ui/app/src/jobs/components/list/JobsList.html b/logisland-framework/logisland-ui/app/src/jobs/components/list/JobsList.html index e8a9231c0..5e9d9d856 100644 --- a/logisland-framework/logisland-ui/app/src/jobs/components/list/JobsList.html +++ b/logisland-framework/logisland-ui/app/src/jobs/components/list/JobsList.html @@ -54,4 +54,4 @@ - \ No newline at end of file + diff --git a/logisland-framework/logisland-utils/pom.xml b/logisland-framework/logisland-utils/pom.xml index ec94d5688..ef5866d20 100644 --- a/logisland-framework/logisland-utils/pom.xml +++ b/logisland-framework/logisland-utils/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-framework - 0.10.0-rc1 + 0.10.1 logisland-utils jar diff --git a/logisland-framework/pom.xml b/logisland-framework/pom.xml index 69b65d876..3ca4d2684 100644 --- a/logisland-framework/pom.xml +++ b/logisland-framework/pom.xml @@ -21,7 +21,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 logisland-framework diff --git a/logisland-plugins/logisland-botsearch-plugin/pom.xml b/logisland-plugins/logisland-botsearch-plugin/pom.xml index 1fef0040b..9887d4d0f 100644 --- a/logisland-plugins/logisland-botsearch-plugin/pom.xml +++ b/logisland-plugins/logisland-botsearch-plugin/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-botsearch-plugin diff --git a/logisland-plugins/logisland-common-processors-plugin/pom.xml b/logisland-plugins/logisland-common-processors-plugin/pom.xml index b8e4d9e46..74347149a 100644 --- a/logisland-plugins/logisland-common-processors-plugin/pom.xml +++ b/logisland-plugins/logisland-common-processors-plugin/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-common-processors-plugin diff --git a/logisland-plugins/logisland-common-processors-plugin/src/test/resources/test.yml b/logisland-plugins/logisland-common-processors-plugin/src/test/resources/test.yml index 1b319e7c4..f65ebedfb 100644 --- a/logisland-plugins/logisland-common-processors-plugin/src/test/resources/test.yml +++ b/logisland-plugins/logisland-common-processors-plugin/src/test/resources/test.yml @@ -33,4 +33,4 @@ components: fake.message: I'm a creep regex: \s*(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}.\d{3})\s+(\S*)\s+\[([^\]]*)\]\s*---\s*(\S*)\s*-\s*SESSION\[([^\]]*)\]\s*-\s*USERID\[([^\]]*)\]\s*-\s*(?.*\n\s*-*\s*\n?ID:\s*(?\S*)\s*\n?(?:Response-Code:\s*(?\S*)\s*\n?)?(?:Address:\s*(?
\S*)\s*\n?)?(?:Encoding:\s*(?\S*)\s*\n?)?(?:Http-Method:\s*(?\S*)\s*\n?)?Content-Type:\s*(?[^\n]*)\n?Headers:\s*\{(?[^}]*)\}\s*\n?(?:Payload:\s*(?(?:(?:\[\s*)?\{.*\}(?:\s*\])?)?|(?:[a-zA-Z0-9]*))\s*\n?)?\s*-*\s*\n?) fields: event_timestamp,log_level,unknown1,logger,session,user_id,trace,id,response_code,address,encoding,http_method,content_type,headers,payload - event.type: mtr \ No newline at end of file + event.type: mtr diff --git a/logisland-plugins/logisland-consolidate-session-plugin/pom.xml b/logisland-plugins/logisland-consolidate-session-plugin/pom.xml index 85253af65..9d339bba4 100644 --- a/logisland-plugins/logisland-consolidate-session-plugin/pom.xml +++ b/logisland-plugins/logisland-consolidate-session-plugin/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-consolidate-session-plugin diff --git a/logisland-plugins/logisland-cyber-security-plugin/pom.xml b/logisland-plugins/logisland-cyber-security-plugin/pom.xml index 3219f6cee..ad6f03243 100644 --- a/logisland-plugins/logisland-cyber-security-plugin/pom.xml +++ b/logisland-plugins/logisland-cyber-security-plugin/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-cyber-security-plugin diff --git a/logisland-plugins/logisland-elasticsearch-plugin/pom.xml b/logisland-plugins/logisland-elasticsearch-plugin/pom.xml index 991cb193d..931544952 100644 --- a/logisland-plugins/logisland-elasticsearch-plugin/pom.xml +++ b/logisland-plugins/logisland-elasticsearch-plugin/pom.xml @@ -23,7 +23,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-elasticsearch-plugin diff --git a/logisland-plugins/logisland-hbase-plugin/pom.xml b/logisland-plugins/logisland-hbase-plugin/pom.xml index c279603a5..3da698423 100644 --- a/logisland-plugins/logisland-hbase-plugin/pom.xml +++ b/logisland-plugins/logisland-hbase-plugin/pom.xml @@ -5,7 +5,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-hbase-plugin Support for interacting with HBase diff --git a/logisland-plugins/logisland-outlier-detection-plugin/pom.xml b/logisland-plugins/logisland-outlier-detection-plugin/pom.xml index 6137b8634..df91b8808 100644 --- a/logisland-plugins/logisland-outlier-detection-plugin/pom.xml +++ b/logisland-plugins/logisland-outlier-detection-plugin/pom.xml @@ -25,7 +25,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 jar diff --git a/logisland-plugins/logisland-querymatcher-plugin/pom.xml b/logisland-plugins/logisland-querymatcher-plugin/pom.xml index e54295176..172f9fc15 100644 --- a/logisland-plugins/logisland-querymatcher-plugin/pom.xml +++ b/logisland-plugins/logisland-querymatcher-plugin/pom.xml @@ -26,7 +26,7 @@ http://www.w3.org/2001/XMLSchema-instance "> com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 jar @@ -175,4 +175,4 @@ http://www.w3.org/2001/XMLSchema-instance "> - \ No newline at end of file + diff --git a/logisland-plugins/logisland-sampling-plugin/pom.xml b/logisland-plugins/logisland-sampling-plugin/pom.xml index 1d5063f43..dc65e019d 100644 --- a/logisland-plugins/logisland-sampling-plugin/pom.xml +++ b/logisland-plugins/logisland-sampling-plugin/pom.xml @@ -26,7 +26,7 @@ http://www.w3.org/2001/XMLSchema-instance "> com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 jar @@ -55,4 +55,4 @@ http://www.w3.org/2001/XMLSchema-instance "> - \ No newline at end of file + diff --git a/logisland-plugins/logisland-scripting-plugin/pom.xml b/logisland-plugins/logisland-scripting-plugin/pom.xml index f465a14f6..1688fbb15 100644 --- a/logisland-plugins/logisland-scripting-plugin/pom.xml +++ b/logisland-plugins/logisland-scripting-plugin/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-scripting-plugin diff --git a/logisland-plugins/logisland-useragent-plugin/pom.xml b/logisland-plugins/logisland-useragent-plugin/pom.xml index adf0e921d..c0602624f 100644 --- a/logisland-plugins/logisland-useragent-plugin/pom.xml +++ b/logisland-plugins/logisland-useragent-plugin/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland-plugins - 0.10.0-rc1 + 0.10.1 logisland-useragent-plugin diff --git a/logisland-plugins/pom.xml b/logisland-plugins/pom.xml index 78ffdf7ff..a55162878 100644 --- a/logisland-plugins/pom.xml +++ b/logisland-plugins/pom.xml @@ -22,7 +22,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 logisland-plugins diff --git a/logisland-services/logisland-cache-service-api/pom.xml b/logisland-services/logisland-cache-service-api/pom.xml index efee4654e..e3b6ebdf8 100644 --- a/logisland-services/logisland-cache-service-api/pom.xml +++ b/logisland-services/logisland-cache-service-api/pom.xml @@ -5,7 +5,7 @@ com.hurence.logisland logisland-services - 0.10.0-rc1 + 0.10.1 4.0.0 @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/logisland-services/logisland-cache_key_value-service-api/pom.xml b/logisland-services/logisland-cache_key_value-service-api/pom.xml index 5b081827b..c8b26802d 100644 --- a/logisland-services/logisland-cache_key_value-service-api/pom.xml +++ b/logisland-services/logisland-cache_key_value-service-api/pom.xml @@ -5,7 +5,7 @@ logisland-services com.hurence.logisland - 0.10.0-rc1 + 0.10.1 4.0.0 @@ -18,7 +18,7 @@ com.hurence.logisland logisland-cache-service-api - 0.10.0-rc1 + 0.10.1 com.hurence.logisland @@ -28,4 +28,4 @@ - \ No newline at end of file + diff --git a/logisland-services/logisland-elasticsearch-client-service-api/pom.xml b/logisland-services/logisland-elasticsearch-client-service-api/pom.xml index 8f7d80fef..113c6820f 100644 --- a/logisland-services/logisland-elasticsearch-client-service-api/pom.xml +++ b/logisland-services/logisland-elasticsearch-client-service-api/pom.xml @@ -21,7 +21,7 @@ com.hurence.logisland logisland-services - 0.10.0-rc1 + 0.10.1 logisland-elasticsearch-client-service-api @@ -35,4 +35,4 @@ - \ No newline at end of file + diff --git a/logisland-services/logisland-elasticsearch_2_3_3-client-service/pom.xml b/logisland-services/logisland-elasticsearch_2_3_3-client-service/pom.xml index 8ab4dff53..9302f59bf 100644 --- a/logisland-services/logisland-elasticsearch_2_3_3-client-service/pom.xml +++ b/logisland-services/logisland-elasticsearch_2_3_3-client-service/pom.xml @@ -7,7 +7,7 @@ com.hurence.logisland logisland-services - 0.10.0-rc1 + 0.10.1 logisland-elasticsearch_2_3_3-client-service @@ -210,4 +210,4 @@ - \ No newline at end of file + diff --git a/logisland-services/logisland-elasticsearch_2_4_0-client-service/pom.xml b/logisland-services/logisland-elasticsearch_2_4_0-client-service/pom.xml index 0b85fb112..a7258a148 100644 --- a/logisland-services/logisland-elasticsearch_2_4_0-client-service/pom.xml +++ b/logisland-services/logisland-elasticsearch_2_4_0-client-service/pom.xml @@ -7,7 +7,7 @@ com.hurence.logisland logisland-services - 0.10.0-rc1 + 0.10.1 logisland-elasticsearch_2_4_0-client-service @@ -210,4 +210,4 @@ - \ No newline at end of file + diff --git a/logisland-services/logisland-elasticsearch_5_4_0-client-service/pom.xml b/logisland-services/logisland-elasticsearch_5_4_0-client-service/pom.xml index 7da9a0fc3..ef9801874 100644 --- a/logisland-services/logisland-elasticsearch_5_4_0-client-service/pom.xml +++ b/logisland-services/logisland-elasticsearch_5_4_0-client-service/pom.xml @@ -7,7 +7,7 @@ com.hurence.logisland logisland-services - 0.10.0-rc1 + 0.10.1 logisland-elasticsearch_5_4_0-client-service @@ -225,4 +225,4 @@ - \ No newline at end of file + diff --git a/logisland-services/logisland-hbase-client-service-api/pom.xml b/logisland-services/logisland-hbase-client-service-api/pom.xml index 2a251a35d..56aa42595 100644 --- a/logisland-services/logisland-hbase-client-service-api/pom.xml +++ b/logisland-services/logisland-hbase-client-service-api/pom.xml @@ -21,7 +21,7 @@ com.hurence.logisland logisland-services - 0.10.0-rc1 + 0.10.1 logisland-hbase-client-service-api diff --git a/logisland-services/logisland-hbase_1_1_2-client-service/pom.xml b/logisland-services/logisland-hbase_1_1_2-client-service/pom.xml index 1f32a23cb..0a89313e4 100644 --- a/logisland-services/logisland-hbase_1_1_2-client-service/pom.xml +++ b/logisland-services/logisland-hbase_1_1_2-client-service/pom.xml @@ -19,7 +19,7 @@ com.hurence.logisland logisland-services - 0.10.0-rc1 + 0.10.1 logisland-hbase_1_1_2-client-service @@ -94,12 +94,12 @@ com.hurence.logisland logisland-hbase-client-service-api - 0.10.0-rc1 + 0.10.1 com.hurence.logisland logisland-hadoop-utils - 0.10.0-rc1 + 0.10.1 com.hurence.logisland diff --git a/logisland-services/pom.xml b/logisland-services/pom.xml index 2d185493f..42a4efeca 100644 --- a/logisland-services/pom.xml +++ b/logisland-services/pom.xml @@ -6,7 +6,7 @@ com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 pom @@ -25,4 +25,4 @@ - \ No newline at end of file + diff --git a/pom.xml b/pom.xml index b0e62ccda..c2c9c64c8 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ 4.0.0 com.hurence.logisland logisland - 0.10.0-rc1 + 0.10.1 pom LogIsland is an event mining platform based on Kafka to handle a huge amount of data in realtime.