Code Monkey home page Code Monkey logo

grafana-kdb-datasource-ws's Introduction

AquaQ Analytics

Grafana and KDB+ Plugin Installation Instructions

Quick Install Guide

Installing Grafana:

Installing kdb+ datasource plugin:

  • Download the latest release.
  • Extract the entire grafana-kdb-datasource-ws folder to {Grafana Install Directory}/grafana/data/plugins/.
  • Start/restart the Grafana service (see Grafana Service below).

Configuring kdb+ instance:

Set the .z.ws WebSocket message handler on kdb+ instance as below:

.z.ws:{ds:-9!x;neg[.z.w] -8! `o`ID!(@[value;ds[`i];{`$"'",x}];ds[`ID])}

Ensure the kdb+ process has an open listening port.

Adding datasource:

Navigate to the data-sources page in grafana (default address: http://localhost:3000) and click Add data source. At the bottom of this page under Others should be KDB+, click on this to set settings. Host should be only the address and port of the kdb+ instance given as:

ADDRESS:PORT

'ws://' is not required, processes running on the same machine have localhost address.

Default Timeout is how long in ms each query will wait for a response (will default to 5000 ms).

Authentication:

The plugin supports Basic authentication over insecure connections (not recommended) or secure WebSockets (recommended). Insecure connections send all data (including user:password pairs) unencrypted. Secure WebSockets require the kdb+ instance to be in TLS mode.

Security:

We strongly recommend running dedicated kdb+ instances only for grafana connections; no other services should operate from these instances. If using in an open system we recommend running any kdb+ instances users can connect to as a seperate (non-root) user on the machine. Do not allow this user to write to any directories or files on the machine.

Be aware the 'Free-form Query' 'Function' box and 'Built Query' 'Where' box allow users to run unfiltered commands on the kdb+ instance (including 'system' commands), so non-backed up system critical data should not be held on these instances and ideally only trusted users should be allowed to connect (see Authentication).

Supported Browsers:

Formally this adaptor has the same compatibility as grafana, however there are known bugs with lesser used browsers:

  • Using authentication with Microsoft Edge is not supported.

We recommend using the latest version of either Google Chrome or Mozilla Firefox.

Time Zones:

Grafana time ranges have support for UTC time, local browser time or Grafana server time. As kdb+ does not have native time-zone support all timestamps/datetimes in kdb+ are interpreted as UTC+0. We recommend dashboards are set to UTC time to avoid confusion.

Grafana Service:

On Windows grafana will by default install itself as a service. To view running services, run:

services.msc

To start/stop/restart a service, right click on it and select the desired option. The Grafana service is named Grafana.

On Linux grafana will be installed as a service and can be controlled via systemctl commands:

systemctl start grafana-server

systemctl stop grafana-server

systemctl restart grafana-server

Full Install/Setup Guide

  • Install Grafana from grafana.com following the installation guide for the relevant operating system.
  • In your browser, navigate to grafana-kdb-datasource-ws releases. Click on the latest release and click the ‘Source code (zip)’ link to download the plugin.
  • Extract the zip file in {Grafana Install Directory}\grafana\data\plugins.
  • Before moving on, check that the README.md is at the following location: {Grafana Install Directory}\grafana\data\plugins\grafana-kdb-datasource-ws\README.md.
  • Open file-explorer and navigate into {Grafana Install Directory}\data\plugins\grafana-kdb-datasource-ws then right-click and cut the file named custom.ini. Then navigate into C:\Program Files\GrafanaLabs\grafana\conf then right-click and paste. Confirm that this file, custom.ini, is present at the following location : *C:\Program Files\GrafanaLabs\grafana\conf.
  • Windows only: Start grafana from an administrator-mode command line window:

{Grafana Install Directory}\grafana\bin\grafana-server.exe

  • Linux only: Start the grafana-server instance:

sudo systemctl start grafana-server

  • The Grafana server is now running. If using Windows the command-line window must remain operational to use Grafana. If it is closed and needs starting, repeat the previous step.
  • Setup the kdb+ instance you wish to query as per kdb+ Setup below.
  • Launch your browser (see Supported Browsers) then use the following URL to open Grafana: localhost:8080/ and sign in using Usr:admin Pwd:admin (You will be prompted for changing password. Skip.)
  • Click on the cog configuration icon on the left tab of the webpage, then click on the green Add data source button.
  • Select KDB+ under Others from the list.
  • In the textbox that follows ‘Host’, type in the IP address followed by a colon, followed by the port. E.g. localhost:6040 or 192.168.1.5:6789.

N.B: If the kdb+ process is on the same machine as you are connecting from, use localhost as the IP address. If it's on the same internal network as you are connecting from, you can find it's IP address by running ipconfig (windows) or ifconfig (linux) on the host machine. If it's on an external network you will need to setup port forwarding (see your system administrator).

  • If authentication is present on the kdb+ process, select 'Use Authentication' and enter authentication details. If TLS is enabled on the kdb+ process select 'Use TLS' (see Authentication).
  • Click the green Save & Test button to save and test the connection. The webpage will return a message depending on whether it was a success. If it cannot be connected, review each step again. If successful, you may now create a dashboard.

kdb+ Setup

  • Ensure the kdb+ process you wish to connect to has an open port.
  • Set the WebSocket message handler on this process (.z.ws) as shown below:

.z.ws:{ds:-9!x;neg[.z.w] -8! `o`ID!(@[value;ds[`i];{$"'",x}];ds[`ID])}

  • That's it! This kdb+ process should now be accessible to grafana. If the kdb+ process is on a different network to the network you are connecting from, you will need to setup port forwarding to the kdb+ process.

Demo

Setting up a demo TorQ Stack (Windows)

  • Install TorQ and TorQ Finance starter pack as described on the AquaQ wiki.
  • In the deploy folder, right click the start_torq_demo.bat file and click edit. This will open the file in Notepad.
  • At the end of the line set KDBBASEPORT=, change the number to a port that is not directly in use, this will be a 4- or 5-digit number (as an example we will use 6000). Also make sure the 20 ports in front are also not in use (port number + 20). Save and exit.
  • In the ‘deploy’ folder, right click the stop_torq_demo.bat file and click edit. This will open the file in Notepad.
  • At the end of the line set KDBBASEPORT=, change the number to the same port as the last file. Remember this number.
  • Close notepad. Then double-click start_torq_demo.bat.
  • Start a q session and into the prompt, type h:hopen `::<KDBBASEPORT+2> where KDBBASEPORT+2 is the base port you set in start_torq_demo.bat plus 2 (for our example this would be 6002), then press enter. This will open a handle between this current q session and our TorQs stack RDB.
  • Into the prompt, type h".z.ws:{ds:-9!x;neg[.z.w] -8! `o`ID!(@[value;ds[`i];{$\"'\",x}];ds[`ID])}", then close the window and repeat the previous step and this step but using KDBBASEPORT + 3 instead; this will be your HDB. Note these two ports down:
    • RDB: <KDBBASEPORT>+2 (E.g. 6002)
    • HDB: <KDBBASEPORT>+3 (E.g. 6003)
  • To connect these processes to grafana, add a data-source as explained in Initial Setup with the 'Host' being localhost:KDBBASEPORT+2 where KDBBASEPORT+2 is the port the RDB is running on.
  • Select Use Authentication and deselect Use TLS.
  • In the user box type admin. In the password box type admin.
  • Click Save & Test and a green notification box should appear to tell you the connection was successful.
  • Repeat the previous 4 steps with KDBBASEPORT+3 to connect the HDB.

grafana-kdb-datasource-ws's People

Contributors

dgaquaq avatar callumormerod avatar dependabot[bot] avatar mwflood257 avatar jonnypress avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.