Skip to content

Releases: mesos/kibana

1.0.0

21 Mar 16:03
Compare
Choose a tag to compare

Changes

Major refactoring to move generic code to more generic frameworks. See the (MesosFramework)[https://github.com/ContainerSolutions/mesosframework] and Mesos-Starter projects.

Features

See readme for list of features.

Breaking changes

The previous configurations and files are no longer compatible with this project. Please consult the readme.

0.3.2

04 Feb 13:02
Compare
Choose a tag to compare

A patch for 0.3.0.
Addressing #13, #14

0.3.1

03 Feb 13:52
Compare
Choose a tag to compare
0.3.1 Pre-release
Pre-release

A patch for 0.3.0.
Addressing #13

0.3.0

21 Jan 12:07
Compare
Choose a tag to compare

Stable version of the framework. Prepared for Mantl 0.1.0

Example of Marathon task JSON to install the framework

{
  "id": "kibana-jar",
  "uris": [
    "https://github.com/mesos/kibana/releases/download/0.3.0/kibana-0.3.0.jar"
  ],
  "args": ["java",
    "-jar",
    "kibana-0.3.0.jar",
    "-zookeeper",
    "zk://minimesos-zookeeper:2181/mesos",
    "-version",
    "4.3.1",
    "-elasticsearch",
    "http://172.17.0.7:33000/"
  ],
  "cpus": 0.2,
  "mem": 128.0,
  "env": {
    "JAVA_OPTS": "-Xms128m -Xmx256m"
  },
  "instances": 1
}