Loading
Logging Real-time Messages
FusionCharts Suite XT introduces a new concept of streaming and showing real-time messages in the gauge using Message Logger. The message logger can be effectively used to show some necessary real-time information or live error logs.
Essentially, the message logger is a text based scrollable window that can listen to messages streamed from the server and then either display the messages in the message logger window or pass them to custom JavaScript functions (defined by you) for further actions.
In this section, you will be shown how you can:
To use message logger, you first need to make sure that you’re using a real-time chart from FusionWidgets XT pack - i.e., charts which update themselves in real-time. Examples are real-time line chart, column chart, angular gauge, linear gauges etc.
Setting up the Message Logger
A real-time angular gauge configured to set up the message logger looks like this:
{
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamMessages.php",
"refreshInterval": "10",
"useMessageLog": "1",
"showRTmenuItem": "1"
},
"colorRange": {
"color": [
{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
},
{
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
},
{
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}
]
},
"dials": {
"dial": [
{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}
]
}
}
<html>
<head>
<title>My first chart using FusionCharts Suite XT</title>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js?cacheBust=56"></script>
<script type="text/javascript">
FusionCharts.ready(function(){
var fusioncharts = new FusionCharts({
type: 'angulargauge',
renderAt: 'chart-container',
width: '400',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamMessages.php",
"refreshInterval": "10",
"useMessageLog": "1",
"showRTmenuItem": "1"
},
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
}, {
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
}, {
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}]
},
"dials": {
"dial": [{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}]
},
}
}
);
fusioncharts.render();
});
</script>
</head>
<body>
<div id="chart-container">FusionCharts XT will load here!</div>
</body>
</html>
In the above gauge, you will see a small icon menu appear at the bottom-left of the gauge. The message logger, which does not appear by default, appears when you click this icon and select the Show Log
option from the menu rendered. To close the message logger window, click the close button in the top-right corner of the window or click anywhere outside the window.
Given below is a brief description of the attributes used to set up the message logger for a real-time angular gauge:
Attribute Name | Description |
---|---|
|
It is used to specify whether the message logger should be enabled for the gauge. Setting this attribute to 1 enables the message logger, setting it to 0 (default) disables it. |
|
It is used to specify whether the real-time update-related menu items (like Start/Stop Update) will be shown in the message logger menu. |
|
It is used to specify the width of the message logger window with respect to the entire gauge width. So, if you set this attribute to 80, the message logger window will take up 80% of the space occupied by the gauge. |
|
It is used to specify the height of the message logger window with respect to the entire gauge height. |
|
It is used to specify whether a title will be shown for the message logger window. |
|
It is used to specify the title for the message logger, if you have opted to show it. The title is rendered at the top-left corner of the gauge. Examples include “Error Log”, “Server History”, etc. |
|
It is used to specify the hex code of the color that will be applied to the entire message log window, e.g. #FFFFFF. |
|
It is used to specify whether the messages streamed to the gauge should be logged in the in-built message log window. FusionCharts Suite XT allows the messages steamed to the gauge to be displayed in the message log window or can be passed to a JavaScript function. |
|
It is used to specify whether the messages streamed from the server should be passed to a local JavaScript function. |
|
It is used to specify the name of the JavaScript function that will handle the messages streamed from the server, if you have opted to do so. This helps you create your custom functions to react to messages streamed from the server. |
|
It is used to specify whether whether all parameters of a message envelope will be passed to the the custom JavaScript function. A message envelope contains the following four parameters: Message ID, Message Title, Message Text, and Message Type. The |
Streaming Messages using the Message Logger
Each real-time update of the chart can result in addition of message(s) to the logger.
A real-time angular gauge configured to stream messages using the message logger looks like this:
{
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamErrorMessages.php",
"refreshInterval": "10",
"useMessageLog": "1",
"showRTmenuItem": "1"
},
"colorRange": {
"color": [
{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
},
{
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
},
{
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}
]
},
"dials": {
"dial": [
{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}
]
}
}
<html>
<head>
<title>My first chart using FusionCharts Suite XT</title>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js?cacheBust=56"></script>
<script type="text/javascript">
FusionCharts.ready(function(){
var fusioncharts = new FusionCharts({
type: 'angulargauge',
renderAt: 'chart-container',
width: '400',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamErrorMessages.php",
"refreshInterval": "10",
"useMessageLog": "1",
"showRTmenuItem": "1"
},
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
}, {
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
}, {
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}]
},
"dials": {
"dial": [{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}]
},
}
}
);
fusioncharts.render();
});
</script>
</head>
<body>
<div id="chart-container">FusionCharts XT will load here!</div>
</body>
</html>
Given below is a brief description of the attributes in the real-time data stream that help you stream messages:
Attribute Name | Description |
---|---|
|
It is used to specify a unique ID for each message. This is useful when you need to track your messages in your custom JavaScript function and need to refer to this ID to take actions. This ID is not displayed in the logger window; it is directly passed to the JavaScript function. |
|
It is used to specify the title for the message that will be displayed in the message logger window. The title can also be passed to other JavaScript functions. |
|
It is used to contain the actual text of the message that will be displayed on the message logger window. The text of the message can also be passed to other JavaScript functions. |
|
It is used to specify the type for each message streamed. This is required because each message type is rendered using a different text style in the message logger to aid instant interpretation. The message types that can be streamed are |
|
It is used to specify whether the messages streamed from the server will be made visible in the message logger of the gauge. By default, this attribute takes its value from the |
|
It is used to specify whether the messages streamed from the server should be passed to the JavaScript handler. By default, this attribute takes its value from the |
|
It is used to specify whether you want to clear the message history currently showing in the gauge. To clear the message history, set the value of this attribute to 1 and return it as a part of the data stream. |
The messages to be logged should be provided in the real-time data stream and not in the JSON data. Real-time data stream refers to the data provided by the URL specified in the dataStreamURL
attribute.
Examples of a Real-time Update
Shown below is an example of real-time update string passed by the server to the message logger:
Here, we first have the &value
parameter which is absorbed by the gauge for data update. Next, we have the msgTitle
and the msgText
parameters which get absorbed by the message logger. Here, we have set the date & time as the title and the text “Server Utilization: “, along with the value 84, as the message.
Take a look at the chart rendered above to see how this update appears in the actual message logger.
If you are passing any special characters as a part of your message text or title (like &, % etc.), you will need to URL Encode the text/title.
Changing Message Type
Shown below is a simple example of message type ERROR:
A real-time angular gauge configured to read this message looks like this: When a chart reads this, it’ll display the message as under:
{
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamErrorMessages.php",
"refreshInterval": "10",
"useMessageLog": "1",
"showRTmenuItem": "1"
},
"colorRange": {
"color": [
{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
},
{
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
},
{
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}
]
},
"dials": {
"dial": [
{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}
]
}
}
<html>
<head>
<title>My first chart using FusionCharts Suite XT</title>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js?cacheBust=56"></script>
<script type="text/javascript">
FusionCharts.ready(function(){
var fusioncharts = new FusionCharts({
type: 'angulargauge',
renderAt: 'chart-container',
width: '400',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamErrorMessages.php",
"refreshInterval": "10",
"useMessageLog": "1",
"showRTmenuItem": "1"
},
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
}, {
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
}, {
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}]
},
"dials": {
"dial": [{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}]
},
}
}
);
fusioncharts.render();
});
</script>
</head>
<body>
<div id="chart-container">FusionCharts XT will load here!</div>
</body>
</html>
Creating Messages with an External Link
To create and render a message as a link, you will need to set the URL Encoded link as the value for the msgText
attribute and set the msgType
to LINK, as shown below:
&value=84&msgTitle=24-07-2014 02:22:51&msgText=http%3A%2F%2Fwww%2Efusioncharts%2Ecom%3Fid%3D34&msgType=LINK
In the above example, we’re linking the message to http://www.fusioncharts.com?id=34 - we’ve URL Encoded the link, as it contains special characters (? in this case).
When specifying a link message type, the link itself is shown as the message text. You cannot change the message text.
Linking Custom Text
To render custom text as a link, set the msgType
attribute to INFO and provide the entire link in HTML code to the msgText
attribute, as shown in the example below:
&value=84&msgTitle=24-07-2014 02:22:51&msgText=<A HREF='http://www.fusioncharts.com?id=34'><U>Server CPU Utilization : 84</U></A>&msgType=INFO
After URL Encoding
&value=84&msgTitle=24-07-2014%2002:22:51&msgText=%3CA%20HREF='http://www.fusioncharts.com?id=34'%3E%3CU%3EServer%20CPU%20Utilization%20:%2084%3C/U%3E%3C/A%3E&msgType=INFO
To specify a link, you will need to output the HTML code for the link as msgText
. Add the <u>
tag in the HTML code if you need to underline the link. Finally, URLEncode the entire msgText
parameter and then stream to the chart.
Clearing Message Logger from the Server
You can instruct the gauge to clear the contents of the visible message logger by sending the command shown below:
You can also send send it as a part of a message stream, as shown below:
This will clear all the contents of the existing message logger and start afresh.
If you send &clearLog=1
with each real-time update, the chart will not show any messages in the logger, as the log is being cleared with each update. As such, take caution to send this command only when the log needs to be cleared.
Handling Messages in JavaScript
You have seen how you can log messages streamed from the server in the in-built visual logger of the gauge. FusionCharts Suite XT also gives you the option to pass the entire, or partial, message envelope to your custom JavaScript functions present in the page (that contains) the gauge.
A real-time angular gauge configured to handle messages using custom JavaScript functions looks like this:
{
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamMessagesToJS.php",
"refreshInterval": "10",
"useMessageLog": "1",
"messageGoesToJS": "1",
"messageJSHandler": "myFunction",
"messagePassAllToJS": "1"
},
"colorRange": {
"color": [
{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
},
{
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
},
{
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}
]
},
"dials": {
"dial": [
{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}
]
}
}
<html>
<head>
<title>My first chart using FusionCharts Suite XT</title>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js?cacheBust=56"></script>
<script type="text/javascript">
FusionCharts.ready(function(){
var fusioncharts = new FusionCharts({
type: 'angulargauge',
renderAt: 'chart-container',
width: '400',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"valueBelowPivot": "1",
"tickValueDistance": "25",
"theme": "fint",
"dataStreamUrl": "http://static.fusioncharts.com/sampledata/php/streamMessagesToJS.php",
"refreshInterval": "10",
"useMessageLog": "1",
"messageGoesToJS": "1",
"messageJSHandler": "myFunction",
"messagePassAllToJS": "1"
},
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
}, {
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
}, {
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}]
},
"dials": {
"dial": [{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value",
"rearExtension": "15"
}]
},
}
}
);
fusioncharts.render();
});
</script>
</head>
<body>
<div id="chart-container">FusionCharts XT will load here!</div>
</body>
</html>
A simple implementation of the myFunction
is as follows:
var myFunction = function(strMsgId, strMsgTitle, strMsgText, strMsgType){
//This method is invoked when the chart streams real-time message to JS.
//Order of parameters - strMsgId, strMsgTitle, strMsgText, strMsgType
//- strMsgId - The ID allotted to each message by your server-side code.
//- strMsgTitle - Title given to each message by your server-side code.
//- strMsgText - Text of each message.
//- strMsgType - Type of each message - INFO, ERROR, LITERAL or LINK
alert("A message was streamed from server. \nMessage Id: " + strMsgId + "\nMessage Title: " + strMsgTitle + "\nMessage Text: " + strMsgText + "\nMessage Type: " + strMsgType);
}
In place of a custom function you can also use JavaScript’s native function (e.g alert
) to show messages streamed from the server to the client. But in that case you will only be able to show the value of the msgText
parameter passed from the server.
Configuring the Message Logger using JavaScript API
FusionCharts Suite XT allows you to configure the message logger. Using its client-side JavaScript API, you can:
➔ Show/hide the logger
➔ Clear the logger
A real-time angular gauge with its message logger configured using JavaScript API looks like this:
{
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"editMode": "1",
"showValue": "1",
"chartBottomMargin": "20",
"gaugeFillMix": "{dark-30},{light-60},{dark-10}",
"gaugeFillRatio": "15",
"valueBelowPivot": "1",
"useMessageLog": "1",
"theme": "fint"
},
"colorRange": {
"color": [
{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
},
{
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
},
{
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}
]
},
"dials": {
"dial": [
{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value"
}
]
}
}
<html>
<head>
<title>My first chart using FusionCharts Suite XT</title>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script type="text/javascript" src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js?cacheBust=56"></script>
<script type="text/javascript">
FusionCharts.ready(function(){
var fusioncharts = new FusionCharts({
type: 'angulargauge',
renderAt: 'chart-container',
width: '400',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Server CPU Utilization",
"subcaption": "forum.hsm.com",
"lowerLimit": "0",
"upperLimit": "100",
"editMode": "1",
"showValue": "1",
"chartBottomMargin": "20",
"gaugeFillMix": "{dark-30},{light-60},{dark-10}",
"gaugeFillRatio": "15",
"valueBelowPivot": "1",
"useMessageLog": "1",
"theme": "fint"
},
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "50",
"code": "#6baa01"
}, {
"minValue": "50",
"maxValue": "75",
"code": "#f8bd19"
}, {
"minValue": "75",
"maxValue": "100",
"code": "#e44a00"
}]
},
"dials": {
"dial": [{
"id": "crntYr",
"value": "78",
"showValue": "1",
"tooltext": "Current year's average : $value"
}]
}
},
events: {
'beforeRender': function(evt, args) {
// creating div for theme controllers
var controllers = document.createElement('div'),
container = document.getElementById('chart-container');
// Create buttons inside div
controllers.innerHTML = '<input id="show" class="btns" type="Button" value="Show" /><input id="clear" class="btns" type="Button" value="Clear Log"/>';
args.container.appendChild(controllers);
controllers.setAttribute('id', 'controllers');
// setting css styles for controllers div
controllers.style.cssText = "position: inherit;left: 10px;font-family: Verdana, sans;font-size: 13px;font-style: normal;font-weight: bold;";
// setting css styles for button elements inside controllers div
var inputs = controllers.getElementsByTagName('input');
for (i = 0; i < inputs.length; i++) {
inputs[i].style.cssText = 'font-family: Verdana, sans;font-size: 14px;font-style: normal;';
}
},
"rendered": function(evtObj, argObj) {
evtObj.sender.intervalVar = setInterval(function() {
var chartIns = evtObj.sender,
prcnt = 65 + parseInt(Math.floor(Math.random() * 10), 10),
today = new Date(),
dd = today && today.getDate(),
mm = today && today.getMonth() + 1, //January is 0!
yyyy = today && today.getFullYear();
if (dd < 10) {
dd = '0' + dd;
}
if (mm < 10) {
mm = '0' + mm;
}
today = mm + '/' + dd + '/' + yyyy;
chartIns.feedData("&value=" + prcnt + "&msgTitle=OS update on " + today + "&msgText=Server CPU Utilization : " + prcnt);
}, 5000);
},
'renderComplete': function(evt, atgs) {
//Button click handler
document.getElementById("show").onclick = function() {
evt.sender.showLog();
};
document.getElementById("clear").onclick = function() {
evt.sender.clearLog();
};
},
"disposed": function(evtObj, argObj) {
clearInterval(evtObj.sender.intervalVar);
}
}
}
);
fusioncharts.render();
});
</script>
</head>
<body>
<div id="chart-container">FusionCharts XT will load here!</div>
</body>
</html>
In order to manipulate the message logger using JavaScript API you need to get a reference of the gauge. Once this reference is obtained, you can use any of API methods on the gauge’s logger (provided it’s set to on)
Given below is a brief description of the JavaScript API methods used to configure the message logger:
Method Name | Description |
---|---|
|
It is used to show the log, if it has been hidden. |
|
It is used to hide the log, if it has been shown. |
|
It is used to clear the contents of the log. |
Note: Here we have used the feedData()
method of the FusionCharts API to provide real-time update. You can pass these updates from the server through data-provider pages using the dataStreamURL
attribute.
You can call the JavaScript APIs of a chart only after it has rendered. You can use the Rendered
event listener to check if a chart has rendered.