Skip to content

Import data from Flowdock into Elasticsearch (to visualize with Kibana)

License

Notifications You must be signed in to change notification settings

vbehar/flowdock2es

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flowdock to Elasticsearch

The goal of this project is to load messages from Flowdock and index them in Elasticsearch, so that you can visualize your usage of Flowdock through Kibana for example.

It uses the Flowdock REST API to load all flows to which you have access, and then load all messages from each of them.

For the moment it imports chat messages and mails.

Also note that it stores its status (the latest imported message ID by flow) in Elasticsearch (in an index named flowdock-int), so that the next time you run it, it will only load the new messages.

Pre-requisites

  • Java 7+
  • SBT 0.13.x to compile and run
  • A Flowdock account with an API Token
  • Access to an Elasticsearch 1.1.x instance (through the "Transport TCP" port, not the HTTP port)
  • Optionally a Kibana 3.x instance plugged on the previous Elasticsearch instance

Configuration

Copy the src/main/resources/application.conf.sample file to src/main/resources/application.conf and add your API Token.

You can also read the src/main/resources/reference.conf file to see all elements that can be configured (flowdock & elasticsearch settings).

Running

Just run

sbt run

It should print something like :

[run-main-0] INFO flowdock2es - Starting Flowdock To Elasticsearch import ...
[run-main-0] INFO flowdock2es - Found 3 flows and 42 users
[run-main-0] INFO flowdock2es - Current status is : Map()
[run-main-0] INFO flowdock2es - Loading ALL messages from flow 'flow-1' ...
[run-main-0] INFO flowdock2es - 42 messages imported from flow 'flow-1'
[run-main-0] INFO flowdock2es - Loading ALL messages from flow 'flow-2' ...
[run-main-0] INFO flowdock2es - 256 messages imported from flow 'flow-2'
[run-main-0] INFO flowdock2es - Loading ALL messages from flow 'flow-3' ...
[run-main-0] INFO flowdock2es - 512 messages imported from flow 'flow-3'
[run-main-0] INFO flowdock2es - Flowdock To Elasticsearch import finished !

Visualization with Kibana

We provide a Kibana dashboard in src/main/resources/kibana/flowdock.json to help you visualize your usage of Flowdock.

You can just import it in your Kibana installation, and you should be able to interact with your data in no time.

License

Copyright 2014 the original author or authors.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Import data from Flowdock into Elasticsearch (to visualize with Kibana)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages