Skip to content
Snippets Groups Projects
Commit b5890341 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Limit dashboard to 15 mins data

Closes #13
parent 0e6cca0b
No related branches found
No related tags found
No related merge requests found
......@@ -441,7 +441,7 @@ EOF
foreach my $identifier (@{$graph->{"${axis}Identifiers"}}) {
my $encodedName = encode_entities($identifier->{'Name'});
my $encodedLabel = encode_entities($identifier->{'Label'});
push(@{$axesIdentifiers->{$axis}},"'$encodedName': { label: '$encodedLabel' }");
push(@{$axesIdentifiers->{$axis}},"'$encodedName': { label: '$encodedLabel', maxTimespan: 900, maxCount: 0 }");
}
push(@axesStrList,
sprintf("%saxis: { '%s': { %s } }",lc($axis),$encodedCanvasName,join(',',@{$axesIdentifiers->{$axis}}))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment