Skip to content

Commit

Permalink
update to v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Bailet committed Jun 14, 2017
1 parent 524cdb5 commit 058b25e
Show file tree
Hide file tree
Showing 66 changed files with 99 additions and 99 deletions.
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
END OF TERMS AND CONDITIONSISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/Hurence/logisland/releases>`_

Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion logisland-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-api</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion logisland-assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-assembly</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion logisland-docker/base/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ then login and push the latest image
.. code-block:: sh
docker login
docker push hurence/base
docker push hurence/base
12 changes: 6 additions & 6 deletions logisland-docker/full-container/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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 :

Expand All @@ -96,4 +96,4 @@ then login and push the latest image
.. code-block:: sh
docker login
docker push hurence/logisland-hdp2.4
docker push hurence/logisland-hdp2.4
2 changes: 1 addition & 1 deletion logisland-docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<packaging>pom</packaging>
<artifactId>logisland-docker</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion logisland-documentation/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
saved without any manual steps on your part.
4 changes: 2 additions & 2 deletions logisland-documentation/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -438,4 +438,4 @@ To run the server, please execute the following:
You can then view the `swagger.json <http://localhost:8080/agent/api/v0.10.0/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!
swagger-ui will be directed to that host and not localhost!
2 changes: 1 addition & 1 deletion logisland-documentation/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-
-
8 changes: 4 additions & 4 deletions logisland-documentation/developer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://oss.sonatype.org/#stagingRepositories>`_ or read `Sonatype book <http://books.sonatype.com/nexus-book/reference/staging-deployment.html#staging-maven>`_

Expand Down Expand Up @@ -242,4 +242,4 @@ then login and push the latest image
Publish artifact to github
--------------------------

Tag the release + upload latest tgz
Tag the release + upload latest tgz
2 changes: 1 addition & 1 deletion logisland-documentation/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,4 @@ then, you can run this command:

.. code-block:: bash
bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic test
bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic test
2 changes: 1 addition & 1 deletion logisland-documentation/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ you can find a quick presentation below :

.. raw:: html

<iframe src="//www.slideshare.net/slideshow/embed_code/key/z2k4bES6JVAWyc" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="//www.slideshare.net/ThomasBailet/logisland-event-mining-at-scale" title="Logisland &quot;Event Mining at scale&quot;" target="_blank">Logisland &quot;Event Mining at scale&quot;</a> </strong> from <strong><a target="_blank" href="//www.slideshare.net/ThomasBailet">Thomas Bailet</a></strong> </div>
<iframe src="//www.slideshare.net/slideshow/embed_code/key/z2k4bES6JVAWyc" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="//www.slideshare.net/ThomasBailet/logisland-event-mining-at-scale" title="Logisland &quot;Event Mining at scale&quot;" target="_blank">Logisland &quot;Event Mining at scale&quot;</a> </strong> from <strong><a target="_blank" href="//www.slideshare.net/ThomasBailet">Thomas Bailet</a></strong> </div>
2 changes: 1 addition & 1 deletion logisland-documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-documentation</artifactId>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion logisland-documentation/tutorials/query-matching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
.. image:: /_static/kibana-threshold-alerts.png
2 changes: 1 addition & 1 deletion logisland-engines/logisland-spark_1_6-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ http://www.w3.org/2001/XMLSchema-instance ">
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland-engines</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-spark_1_6-engine_${scala.binary.version}</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions logisland-engines/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<packaging>pom</packaging>

Expand Down Expand Up @@ -43,4 +43,4 @@
</profile>
</profiles>

</project>
</project>
2 changes: 1 addition & 1 deletion logisland-framework/logisland-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland-framework</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-agent</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion logisland-framework/logisland-bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland-framework</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-bootstrap</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion logisland-framework/logisland-hadoop-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland-framework</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-hadoop-utils</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion logisland-framework/logisland-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.hurence.logisland</groupId>
<artifactId>logisland-framework</artifactId>
<version>0.10.0-rc1</version>
<version>0.10.1</version>
</parent>
<artifactId>logisland-resources</artifactId>
<packaging>pom</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down Expand Up @@ -111,4 +111,4 @@ engine:
default.type: event
timebased.index: yesterday
es.index.field: search_index
es.type.field: record_type
es.type.field: record_type
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down Expand Up @@ -185,4 +185,4 @@ engine:
default.type: event
timebased.index: yesterday
es.index.field: search_index
es.type.field: record_type
es.type.field: record_type
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down Expand Up @@ -56,4 +56,4 @@ engine:
kafka.topic.default.partitions: 2
kafka.topic.default.replicationFactor: 1
output.format: parquet
output.folder.path: data/syslog_events
output.folder.path: data/syslog_events
Original file line number Diff line number Diff line change
Expand Up @@ -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

#########################################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
saved without any manual steps on your part.
Loading

0 comments on commit 058b25e

Please sign in to comment.