Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 00f995f

Browse files
author
Florian Lautenschlager
committed
Some minor fixes.
1 parent 0800e15 commit 00f995f

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

_includes/documentation.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ <h2>About</h2>
3939
application. It stores the time series using <a href="https://lucene.apache.org/core/">Apache Lucene</a>.
4040
</li>
4141
<li><b>Chronix Server:</b> Combine Chronix with <a href="https://lucene.apache.org/solr/">Apache Solr</a> for a typical client-server scenario.
42-
Apache Solr sports several useful features like scalability, fault tolerance, distributed indexing, or replication.
42+
Apache Solr offers several useful features like scalability, fault tolerance, distributed indexing, or replication.
4343
</li>
4444
<li><b>Chronix Cluster:</b> Whenever you need a parallel and distributed time series processing,
4545
integrate Chronix with <a href="http://spark.apache.org/">Apache Spark</a>. Store the time series in a Chronix Storage and HDFS or in a Chronix Server cluster.
46-
Leverage Apache Spark to process the time series in parallel.
46+
Leverage Apache Spark to process a time series in parallel.
4747
</li>
4848
</ol>
4949
<p>

_includes/download.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ <h2>Download</h2>
1010
<div class="row">
1111
<div class="col-lg-12">
1212
<p>
13-
Check out the release pages for the latest versions of our sub projects:
13+
Check out the release pages for the latest versions of our subprojects:
1414
</p>
1515
<ul>
16-
<li><a href="https://github.com/ChronixDB/chronix.storage/releases">Chronix Storage</a></li>
1716
<li><a href="https://github.com/ChronixDB/chronix.server/releases">Chronix Server</a></li>
18-
<li><a href="https://github.com/ChronixDB/chronix.cluster/releases">Chronix Cluster</a></li>
1917
<li><a href="https://github.com/ChronixDB/chronix.kassiopeia/releases">Chronix Kassiopeia</a>
18+
<li>Chronix Storage (coming soon)</li>
19+
<li>Chronix Cluster (coming soon)</li>
2020
</ul>
2121
<p>
2222
The <a href="https://github.com/ChronixDB">ChronixDB account</a> on GitHub contains all sources of all projects and examples.

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h3>{{ site.footer.social }}</h3>
3030
<div class="container">
3131
<div class="row">
3232
<div class="col-lg-12">
33-
Copyright &copy; <a href="{{ site.copyright.url }}">{{ site.copyright.name }} </a> 20{{ site.time | date: '%y' }}
33+
&copy; <a href="{{ site.copyright.url }}">{{ site.copyright.name }}</a>, 20{{ site.time | date: '%y' }}
3434
</div>
3535
</div>
3636
</div>

_includes/quickstart.html

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,19 @@ <h2>Quickstart</h2>
1616
<h4>Prerequisites</h4>
1717

1818
<p>
19-
You need a Java 8 installed on your system. That's it :-)
19+
You need Java 8 installed on your system. That's it :-)
2020
</p>
2121
<h4>Download and Run</h4>
2222

2323
<p>
24-
The Chronix showcase consists of two parts. The Chronix Server <a
25-
href="https://github.com/ChronixDB/chronix.server/releases"
26-
title="Chronix Server">(download)</a> and an example JavaFX application <a
27-
href="https://github.com/ChronixDB/chronix.examples/releases"
28-
title="JavaFX Showcase">(download)</a> for
29-
time series exploration (pick the latest release, respectively). Unzip the Chronix Server (it
30-
contains one week of operational time series data), the JavaFX part is an executable Java archive.
24+
The Chronix showcase consists of two parts. Pick the latest releases of the Chronix Server
25+
<a href="https://github.com/ChronixDB/chronix.server/releases" title="Chronix Server">(download)</a>
26+
and an example JavaFX application
27+
<a href="https://github.com/ChronixDB/chronix.examples/releases"
28+
title="JavaFX Showcase">(download)</a>
29+
for time series exploration.
30+
Unzip the Chronix Server (it contains one week of operational time series data), the JavaFX
31+
application is an executable Java archive.
3132
<br>
3233
Just use the following instructions:<br>
3334
</p>
@@ -65,19 +66,21 @@ <h4>Download and Run</h4>
6566
</div>
6667

6768
<p>
68-
With the running JavaFX application, we can query Chronix for time series data.
69-
A simple query that delivers all time series whose metric name contains
69+
With the running JavaFX application, you can query Chronix for time series data.
70+
For example, a simple query that delivers all time series data whose metric name contains
7071
<span style="font-family: Courier">Load</span> is
7172
<span style="font-family: Courier">metric:*Load*</span>.
7273
Just enter the query term into the text box at the top and hit Shift + Enter to retrieve the result.
73-
Compute the maximum of the result we add a filter query
74-
<span style="font-family: Courier">ag=max</span> in the second text box and press again Shift + Enter.
74+
To compute the maximum of that result you add a filter query
75+
<span style="font-family: Courier">ag=max</span> in the second text box and press again Shift +
76+
Enter.
7577
To check if the average load
7678
(<span style="font-family: Courier">metric:*Load*avg</span>)
77-
has a positive trend one can use the
79+
has a positive trend you can use the
7880
<span style="font-family: Courier">analysis=trend</span> function in the filter query text box.
79-
Starting the analysis by pressing Shift + Enter.
80-
These queries described and shown in the screencast represent only a few simple queries, check out our <a
81+
You start the analysis by pressing Shift + Enter.
82+
The queries described and shown in the screencast represent only a few simple queries, check out
83+
our <a
8184
href="https://github.com/ChronixDB/chronix.examples">examples
8285
repository</a> for more details.
8386

0 commit comments

Comments
 (0)