You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,23 @@
1
+
# 1.25.0 (02/18/2016)
2
+
3
+
## Features
4
+
5
+
- Image Widget: added a new Widget for displaying images.
6
+
7
+
- YouTube Widget: added a new Widget for displaying YouTube videos.
8
+
9
+
- Data Source Broadcasting: rewrote all Data Sources and Widgets to communicate using global events. This resolves memory leaks and performance degredation due to unremoved callbacks.
10
+
11
+
- Improved logging, and added a configurable property to enable debug logging (globally)
12
+
13
+
## Bug Fixes
14
+
15
+
- Removed unique constraint on email field for Users
16
+
17
+
## Breaking Changes
18
+
19
+
- The Data Source api method 'getData()' has been deprecated. Any custom Widgets should be rewritten to follow the new event-based messaging pattern. Any custom Data Sources which use the Data Source Factory (recommended) will automatically use the new pattern.
Copy file name to clipboardExpand all lines: cyclotron-site/app/partials/help/about.jade
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -58,9 +58,7 @@ p.
58
58
of customization with some coding. Cyclotron works best with minimally-interactive dashboards, as it lacks more robust
59
59
interaction features like dependent widgets and triggers.
60
60
p.
61
-
Cyclotron has no data backend and doesn't store any Dashboard data. Through Crunch, Cyclotron can pull data from databases, web services,
62
-
file shares, Hadoop/Hive, etc. Crunch can do light processing and transformations, but is not a replacement for
63
-
a scheduled ETL process. In this regard, Cyclotron is ideal as a front-end for an existing database or web service.
61
+
Cyclotron has no data backend and doesn't store any Dashboard data. In this regard, Cyclotron is ideal as a front-end for an existing database or web service.
64
62
p.
65
63
Finally, Cyclotron has automatic page rotation and data-refreshing features, making it well-suited to hosting status boards and monitoring dashboards. It is less suitable for generating
Copy file name to clipboardExpand all lines: cyclotron-site/app/partials/help/dataSources.jade
+5-9Lines changed: 5 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,10 @@ h3 Data Sources
2
2
3
3
p.
4
4
Cyclotron provides several Data Source Types, each of which connects to an external service to
5
-
pull in data for the Dashboard. Most Data Sources and Widgets consume a common row/column interface, so Widgets and
6
-
Data Sources are interchangeable. Each Data Source handles converting data into this format automatically.
5
+
pull in data for the Dashboard. Data Sources and Widgets consume a common row/column interface, so Widgets and Data Sources are interchangeable. Each Data Source handles converting data into this format automatically.
7
6
8
7
p.
9
-
Here is an example of the tabular data format, consisting of an array of rows.
10
-
Each row is a JavaScript object, where the keys represent columns and the values represent the value of each column.
8
+
Data Sources use a simple tabular data format, consisting of an array of rows. Each row is a JavaScript object, where the keys represent columns and the values represent the value of each column. Here's an example:
11
9
12
10
pre.code.
13
11
[
@@ -19,11 +17,9 @@ pre.code.
19
17
]
20
18
21
19
p.
22
-
The easiest way to verify that a Data Source is working is to use the Table Widget. By default, the Table
23
-
Widget will display all columns and rows, so it can be used to quickly view and verify the data available
24
-
from a Data Source. Be aware that the Table Widget will automatically camel-case the column headers,
25
-
but the correct capitalization must be used elsewhere to reference the columns.
26
-
20
+
Cyclotron is case-sensitive, which is especially significant when working with Data Sources. When referencing column names in the Data Source, the correct capitalization must be used to match the upstream source. Cyclotron itself does not modify the original capitalization of columns.
21
+
p.
22
+
The easiest way to verify that a Data Source is working is to use the Table Widget. By default, the Table Widget will display all columns and rows, so it can be used to quickly view and verify the data available from a Data Source. Be aware that the Table Widget will automatically camel-case the column headers, but the correct capitalization must be used elsewhere to reference the columns.
Copy file name to clipboardExpand all lines: cyclotron-site/app/partials/help/encryptedStrings.jade
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,19 @@ p.
6
6
p
7
7
| This feature is available in Data Sources that can be proxied through the Cyclotron Service, and require the
8
8
em proxy
9
-
| property to be set. This includes the Crunch Data Source, JSON Data Source, and Graphite Data Source.
9
+
| property to be set. This includes the JSON Data Source, Graphite Data Source, and Splunk Data Source.
10
10
11
11
h3 How It Works
12
12
13
13
ol
14
14
li The Cyclotron Dashboard Editor encrypts the plaintext (before saving!), and wraps the encrypted text in \!{} to indicate that text is encrypted.
15
15
li The encrypted text is saved directly in the Dashboard, and the unencrypted text is not saved at all.
16
-
li When viewing the Dashboard, the user's browser downloads the Dashboard definition, including the Data Sources and the Crunch query containing the encrypted password.
17
-
li The Crunch query is sent to the Proxy Server, which parses the query for sections of encrypted text. Each one is decrypted using the same key.
18
-
li The unencrypted Crunch query is sent from the Proxy Server to the Crunch service, which executes the query and returns the results.
19
-
li The Proxy Server returns the results to the browser.
16
+
li When viewing the Dashboard, the user's browser downloads the Dashboard definition, including the Data Sources and properties containing the encrypted password.
17
+
li An encrypted query is sent to the Proxy Server, which parses the request for sections of encrypted text. Each one is decrypted using the same key.
18
+
li The unencrypted reuqest is then executed from the Cyclotron service and the results returned to the proxy server.
19
+
li The Proxy Server returns the results to the browser, without leaking the unencrypted data.
20
20
21
-
p This example assumes a Crunch query, but it applies similarly to other Data Sources with different encrypted properties. Any property of the Data Source that is sent to the proxy server can be encrypted, as they are all handled generically. The JSON Data Source supports encrypting the URL, Query Parameters, and Options. The Graphite Data Source supports encrypting the URL, Targets, and From/Until.
21
+
p This example applies similarly to any Data Sources with different encrypted properties. Any property of the Data Source that is sent to the proxy server can be encrypted, as they are all handled generically. The JSON Data Source supports encrypting the URL, Query Parameters, and Options. The Graphite Data Source supports encrypting the URL, Targets, and From/Until.
22
22
23
23
p All Cyclotron servers share the same encryption/decryption key, so any server can be used a proxy for any Dashboard.
0 commit comments