Skip to content

Commit

Permalink
Fixed documentation links and startup script. Changed version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhks committed Nov 14, 2015
1 parent 318bca4 commit 4b868f0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -6,11 +6,13 @@ KairosDB is a fast distributed scalable time series database written on top of C

Documentation is found [here](http://kairosdb.github.io/website/).

[Frequently Asked Questions](https://github.com/kairosdb/kairosdb/wiki/Frequently-Asked-Questions)

## Installing

Download the latest [KairosDB release](https://github.com/kairosdb/kairosdb/releases).

Installation instructions are found [here](http://kairosdb.github.io/website/docs/build/html/GettingStarted.html#install)
Installation instructions are found [here](http://kairosdb.github.io/docs/build/html/GettingStarted.html)

## Getting Involved

Expand Down
2 changes: 1 addition & 1 deletion build.groovy
Expand Up @@ -27,7 +27,7 @@ saw.setProperty(Tablesaw.PROP_MULTI_THREAD_OUTPUT, Tablesaw.PROP_VALUE_ON)

programName = "kairosdb"
//Do not use '-' in version string, it breaks rpm uninstall.
version = "1.0.1"
version = "1.1.0"
release = "1" //package release number
summary = "KairosDB"
summary = "KairosDB"
Expand Down
2 changes: 1 addition & 1 deletion src/docs/FAQ.rst
Expand Up @@ -15,4 +15,4 @@ There are several strategies here:
3. Batch jobs that pre-aggregate and write to a new metric. The new metric can then be queried and used to graph the data. This could be done with a cron job. There is some discussion about making the batch job part of K* but, there is work to be done before this can happen.



Additional FAQ can be found here: https://github.com/kairosdb/kairosdb/wiki/Frequently-Asked-Questions
4 changes: 3 additions & 1 deletion src/scripts/kairosdb-service.sh
Expand Up @@ -12,8 +12,10 @@
KAIROS_SCRIPT_PATH="/opt/kairosdb/bin/kairosdb.sh"
export KAIROS_PID_FILE="/var/run/kairosdb.pid"

if [ -f /etc/init.d/functions ]
if [ -f /etc/init.d/functions ]; then
. /etc/init.d/functions
fi


# Start the service KairosDB
start() {
Expand Down

0 comments on commit 4b868f0

Please sign in to comment.