Skip to content

Quine Enterprise Trial

Prerequisites

The Quine Enterprise trial version requires an API Key to run an instance. To get an API Key for your free trial of Quine Enterprise, click here and fill out the free trial form. An API Key will be emailed to you after form submission.

Warning

The trial version authenticates against thatDot servers with your API Key, meaning the trial version of Quine Enterprise requires an open internet connection to authenticate and start.

Getting Started with Quine Enterprise

Getting started is easy:

  1. Download the software - this is a Java JAR file, if you would prefer a Docker Container please contact the thatDot Support team (support@thatdot.com).
  2. Create a configuration file (.conf extension) containing the API Key and associated email address and place it adjacent to your downloaded JAR file (in the same directory). This is just a plain text file.
  3. Start your instance of Quine Enterprise

Download the Software

Get started by downloading the trial version. This trial version requires an API Key to launch an instance.

Create the Configuration File for Quine Enterprise

After downloading the trial version, you will need to create a configuration file with your email address and API Key. This file has a .conf extension and should be placed in the same directory as your JAR file. To get an API Key, click here and fill out the free trial form. An API Key will be emailed to you after form submission.

quine {
  trial {
    email = "YOUR_EMAIL@EMAIL.COM"
    api-key = "TRIAL_API_KEY"
  }
}

Start Instance of Quine Enterprise

Start the trial instance of Quine Enterprise with your configuration file using the following command (in this example, the file is called streaming-graph.conf):

java -jar -Dconfig.file=streaming-graph.conf quine-streaming-graph-trial.jar

You can also choose to configure your instance on the command line when launching an instance instead of using a configuration file:

java -jar -Dquine.trial.email=YOUR_EMAIL@EMAIL.COM -Dquine.trial.api-key=TRIAL_API_KEY quine-streaming-graph-trial.jar

Configuring Proxy Settings for Quine Enterprise

When deploying the trial version of Quine Enterprise in a network environment that requires proxy traversal, you can configure the application to route traffic through a proxy server. This is achieved by specifying the appropriate Java system properties:

  • http.proxyHost
  • https.proxyHost
  • http.proxyPort
  • https.proxyPort

Here is how you can configure these when running the trial jar:

java \
  -Dhttp.proxyHost=<PROXY_HOST> \
  -Dhttp.proxyPort=<PROXY_PORT> \
  -Dhttps.proxyHost=<PROXY_HOST> \
  -Dhttps.proxyPort=<PROXY_PORT> \
  -Dquine.trial.email=<EMAIL> \
  -Dquine.trial.api-key=<API_KEY> \
  -jar quine-streaming-graph-trial.jar

Key Resources to Help Guide You

Once you have the software downloaded and the initial configuration file created you are ready to go.

These materials will help you navigate setting up pipelines, querying real-time data, and detecting anomalies.