Use tiles in link visualization to show summary data. This feature
consolidates multiple individual tiles into one. Therefore, replacing multiple tiles with a
tiles in link visualization in a dashboard provides performance improvement when
loading the dashboard.
You can include queries, visualizations, and modify the look and feel of each tile. You
can create the tile definition in XML format. The tiles can be of the type Field,
Text, Link, Inline, Visualization, Condition,
Separator, and Expander.
The following is an example of using multiple tiles in a visualization:
The tile in link visualization is configured using the layout tags and tile tags in the
XML definition. For more details about these tags and the options available for
configuring, see:
To create Tiles, from the Link console, click Tiles, and from the
menu, click New. The Tile Editor with a custom template opens. Alternatively, to edit
the existing tile, click Tiles, and from the menu, click Edit. The Tile Editor
provides syntax highlighting and validation for the tile definition.
Edit the XML definition of the tile to customize it.
You can use Ctrl-Q (or Cmd-Q) to expand and collapse a tile in the editor.
Place the cursor on any tile and press Ctrl-Q (or Cmd-Q) to collapse the
tile.
Layout Tags 🔗
These are the tags that describe the layout of the tiles, but not the layout
of the text inside a tile.
display: This is an optional attribute of the
container and is used to control the container panel display. If display is
set to none, then the panel won't be displayed, including
the title or the background-color.
background-color: This attribute defines the
background color of the container. This is optional attribute. If not
specified, then the default value used is oj-bg-neutral-30 redwood
class. The accepted input values are in rgb,
rgba or hex format.
title tag: This is an optional attribute and is used
to give a title to the container. You can specify custom color or font size
using the corresponding attributes of the tag.
Table, Row, Column Tags
Table Tag: This is a mandatory tag and describes the start of a table.
There can be only one table under each container.
Row Tag: This is a mandatory tag. Each table needs to have a minimum
of one row. There can be multiple rows under each table. If you specify
<row type="separator"></row>, then a horizontal
separator is rendered in the console.
Column Tag: This is a mandatory tag and describes each column in a
row. There can be multiple columns under each row.
Tiles Tag
This is a mandatory tag and describes a list of tiles. There can be one or many
<tile> tags under this tag. The rendering of tiles can be
controlled using layout and columns attribute.
By default, the layout is horizontal. However, you can select table layout by setting
layout to table and providing the number of columns per
row in the columns attribute.
A tiles tag can have optional id and hidden attributes. The
id attribute can be used to show or hide the contents. The hidden
attribute defines if the content should be hidden by default. The value can be
true or false.
The title tag is an optional attribute and is used to give a title to the
tile. You can use a custom color or font size by using the color
and font-size attributes of the tag.
The tile tag describes each individual tile. The attributes of the
tile tag will depend on the type of the tile. It can have optional id and
hidden attributes.
The id attribute is used to show or hide contents. The
hidden attribute specifies if the content should be hidden by
default. The value of the attribute can be true or
false.
The tile tag can be used to display static text, or the value of a field. If a field is
used, then the value of the field from the first row of the link table is
used.
This is a tile used to display the value of a field. The field can have
an optional title. The type of the field is automatically inferred. If the field is
formatted using unit, then that unit is automatically displayed. If
the field is formatted as a link using the url function, then a
link will be displayed.
Since there can be more than one value for the field, the value from the first
row of the link table is used. You must make sure to bring the desired value
to the first row of the table. You can use the eventstats command if you need to roll up a value.
format and currency: format is an optional attribute and
is used to give a format to the field value. Currently, the format
currency is supported. The type of currency is specified with
the currency attribute.
format and currency: format is an optional attribute and
is used to give a format to the tile value. Currently, the format
currency is supported. The type of currency is specified with
the currency attribute.
This is a tile used for displaying a link. The link can either be a static link or
can come from a url link field. A link tile can also be used to
show or hide another tile or tiles.
type: This attribute describes the type of the tile. This is an
optional attribute which can be used only if the field used in the field
attribute comes from the url function.
href: This is an optional attribute and has the value of the link. This
is the value used if the field is not of the type url or if it's a static
value.
Use show(id) in href attribute to show or hide another
tile(s).
format and currency: format is an optional attribute and
is used to give a format to the tile value. Currently, the format
currency is supported. The type of currency is specified with
the currency attribute.
tile tag: The tiles can be nested under inline tiles. It
supports all tiles except for chart, expander, and other inline
tiles. Only the value part of nested tiles is evaluated, and not the title.
This is an optional tag and used to give title to the tile. If not
given, it shows the field value. If field is also not given, the title is empty. You
can use a custom color or font size using color and
font-size attributes of the tag.
You can set align attribute to either display the title
at the top or bottom. Default is
top.
type
This attribute describes the type of tile. This is a mandatory value and
for chart tile it must be chart.
chart-type
This attribute is mandatory and describes the type of visualization.
Following are the valid values for <chart-type>:
Value
Description
sparkline
A compact chart, useful to show the outline of time
series data
pie
Pie chart
donut
Donut chart. All the options applicable to a pie
chart are also applicable to this chart.
line
Line chart
area
Area chart
bar
Bar chart. Can be configured to orient vertically or
horizontally. Line, Area and Bar charts all accept the same type of
options.
gauge
Useful to display a metric with a context showing
it's expected range. Supports the following styles: vertical,
horizontal, circular, semi-circular, dial
treemap-small
A single row, compact treemap.
treemap
Treemap chart
sunburst
Sunburst chart
chart-value
Data for the charts can be supplied using the
<chart-value> attribute. You can supply static data,
fields from the link main table or from the additional tables. The number of fields
supported depends on the chart-type.
Following are the attributes allowed for
chart-value:
Attribute
Description
value
Specifies a hard-coded value to be used for the
chart. For charts that accept a list, you can supply a comma
separated list of values.
field
Instead of a hard-coded value, specify the field to
populate the chart. This can be a field in the link main table or
one of the additional tables created using the
createTable command. In addition, this can also
be a specific chart created using timestats or
timecluster. This field must have a numeric
value.
group-field
A field containing string values, that can be used to
create groups of data in the charts. These groups show in the
X-axis. This option is supported only for Line, Area and Bar charts.
It is useful if you want to compare a set of metrics for a group.
For example, you could define a set of UI servers as the group, and
compare the Duration for the groups UI_1, UI_2,
etc.
series-field
A field that contains string values. Each unique
value is used to create a series in the charts.
color-field
Specifies the color to be used, if the chart supports
it. This field should only contain valid color strings or HTML color
codes.
color
Specify a hard-coded color using this field.
Examples: darkred, rgb(255, 179,
0), #4CAF50
subset:
Data from a timestats or timecluster
command, or from a table can be displayed in a chart. If you only want to display a
subset of the data, then you can define a subset section to filter the data.
A subset tag needs one <input> tag per field that
needs to be referred from a filter query. A <![CDATA[]] tag is
then used to define a query that refers to the aliases.
<tile type="chart" chart-type="line">
<title>
<title-text>Line using Timestats chart </title-text>
<title-text>- Log Source LIKE Linux %</title-text>
</title>
<chart-value field="Count">
<subset>
<input field="Log Source" alias="Source"/>
<![CDATA[
Source LIKE 'Linux %'
]]>
</subset>
</chart-value>
</tile>
Time >= dateRelative(7day) and 'Log Source' like '%Audit%'
| eval 'Raw Size' = unit('Raw Size', byte)
| link Time, 'Log Source'
| eval Week = formatDate('Start Time', E)
| sort 'Start Time'
| eventstats avg('Raw Size') as 'Avg. Size',
sum(Count) as Records
by Week, 'Log Source'
| createtable name = 'Log Source Summary'
select Week, 'Log Source', 'Avg. Size' as Size, Records as Count
XML:
<summary>
<container display="none">
<table>
<row>
<column>
<tiles>
<tile type="chart" chart-type="bar" x-axis="on" y-axis="on" stack="on" orientation="horizontal">
<title><title-text>Bar using Table - Audit Logs on Weekends</title-text></title>
<chart-value group-field="Log Source Summary[Week]" series-field="Log Source Summary[Log Source]" field="Log Source Summary[Size]">
<subset>
<input field="Log Source Summary[Week]" alias="Week"/>
<input field="Log Source Summary[Log Source]" alias="Source"/>
<![CDATA[
Week in ('Sat', 'Sun') and Source like '%Audit%'
]]>
</subset>
</chart-value>
</tile>
<tile type="chart" chart-type="bar" x-axis="on" y-axis="on" stack="on" orientation="horizontal">
<title><title-text>Bar using Table - Linux Logs on Weekdays</title-text></title>
<chart-value group-field="Log Source Summary[Week]" series-field="Log Source Summary[Log Source]" field="Log Source Summary[Size]">
<subset>
<input field="Log Source Summary[Week]" alias="Week"/>
<input field="Log Source Summary[Log Source]" alias="Source"/>
<![CDATA[
Week not in ('Sat', 'Sun') and Source like 'Linux %'
]]>
</subset>
</chart-value>
</tile>
</tiles>
</column>
</row>
</table>
</container>
</summary>
Output:
Using timestats:
Query:
Time >= dateRelative(7day) and 'Log Source' like '%Audit%'
| eval 'Raw Size' = unit('Raw Size', byte)
| link Time, 'Log Source'
| timestats name = 'Log Source Trend' sum('Raw Size') as Size by 'Log Source'
To use Y2 axis, set the y2-axis
attribute on tile to on. On the series that you want to
assign to Y2-axis, set use-y2 attribute to on. If
the Y-axis must be split, then set split-dual-y attribute to
on.
Query:
Time >= dateRelative(7day) and 'Log Source' like '%Audit%'
| eval 'Raw Size' = unit('Raw Size', byte)
| link Time, 'Log Source'
| addfields [ * | where 'Log Source' = 'Linux Audit Logs' | timestats name = 'Linux Audit Log Trend' sum('Raw Size') as 'Linux Audit Size' ]
| addfields [ * | where 'Log Source' = 'OCI Audit Logs' | timestats name = 'OCI Audit Log Trend' sum('Raw Size') as 'OCI Audit Size' ]
*
| link 'Entity'
| eventstats distinctcount('Log Source') as 'Log Sources' by Entity
| createTable name = 'Log Sources by Entity' select Entity, 'Log Sources' as Count
XML:
<summary>
<container display="none">
<table>
<row>
<column>
<tiles>
<tile type="chart" chart-type="treemap-small">
<title><title-text>Small Treemap from Table values</title-text></title>
<chart-value field="Log Sources by Entity[Count]" series-field="Log Sources by Entity[Entity]">
<subset>
<input field="Log Sources by Entity[Entity]" alias="Entity"/>
<![CDATA[
Entity like 'ebs122%'
]]>
</subset>
</chart-value>
</tile>
</tiles>
</column>
</row>
</table>
</container>
</summary>
Output:
Treemap / Sunburst
Treemap and Sunburst charts accept the same options.
The following options can be used to configure all of the charts.
Provide these as attributes to the <tile> element:
Attribute
Description
Default
show-legend="true/false"
Control whether the chart legends should be shown or
hidden.
true
legend-position="start/end/top/bottom/auto"
Specifies where the legend should be
displayed.
auto
border="none"
Hide the border around the tile by setting this
attribute.
-
Condition Tile
This is a tile used for processing conditions. Use it to show or hide one
or more tiles based on the condition. Conditions will be evaluated in order. In case
of a match, the tiles are displayed. If there is no match and there is an
else condition, then the else condition is evaluated. There is no
elseif condition. However, you can get the same behavior by using
multiple if conditions.
An expander must have two tiles under it. One of the tiles must be a link tile with
the href attribute defined as show(<EXPANDED_TILE_ID>,
<EXPAND_DIRECTION>, <REQUIRE_BOUNDING_BOX>)
where:
EXPANDED_TILE_ID: ID of the tile displayed when the link is
clicked
EXPAND_DIRECTION: The location where the tile must be
displayed. This can have following values:
left - Show tile to the left of the link tile
right - Show tile to the right of the link tile
top - Show tile at the top of the link tile
bottom - Show tile at the bottom of the link tile
replace - Replace the link tile
REQUIRE_BOUNDING_BOX: If set to true, then a
border encloses the link and the expanded tile.
Common Tags 🔗
Listed here are some of the common tags used in the tiles.
You can use the <title> tag to define the title content for an
element. <title> is not mandatory. You can omit the title, or
provide an empty <title/> to not display a title.
<title> is a container tag for the
<title-text> and <title-icon> tags that
define the title content.
To align the title elements, use the align attribute.
<title-text>
Use the <title-text> to define a title. You can hard-code the
title using the value attribute, or use the value of a field using the field attribute.
You can use more than one <title-text> attribute to construct a
dynamic text.
Example:
<title>
<!--
* | link 'Log Source' | eval 'Number of Servers' = 10 | eval 'Storage Capacity' = unit(1230, gb)
-->
<title-text>You have </title-text>
<title-text field="Number of Servers"/>
<title-text> Servers, and </title-text>
<title-text field="Storage Capacity"/>
<title-text> of Storage.</title-text>
</title>
The following are the attributes supported by the <title-text>
tag:
Use the field attribute in a <tile> or
<title-text> tag to display the value of that field. If the
field is marked using a unit, then the value is formatted
accordingly.
The field attribute is used inside a <condition> tag to specify
the field on which to check the condition.
The field attribute is also used in the <chart-value> and
<chart-by-clause> tags.
Note
The value of the field is taken from the first row of the link table, when used
with the <tile>, <title-text>, or
<condition> tags. It is used to pickup the name of the
chart when used with the <chart-value> clause. It is used to
specify the value of the by clause for charts using a by-clause, when
used in the <chart-by-clause> tag.
value
Use the value attribute in a <tile> or
<title-text> to supply a hard-coded value. In a
<condition> clause, this is used to specify the value of the
field to be matched. In a <chart-by-clause> tag, the value
specifies the time series that should be displayed in the chart.
icon
Use this attribute to display an icon in a tile. You can use the icon-align attribute to control the position of the icon, with respect to
the field or text value. The icon must be the name of the icon from Oracle's Icon Repository.
Example:
<tiles>
<tile icon="oj-ux-ico-check-circle-s" icon-color="#22BB00" color="#000000" value=" No Issues"/>
</tiles>
align
Use this attribute to align the title above or below the contents. Valid values are
top or bottom.
icon-align
Use this attribute to control the alignment of the icon within a tile. Valid values
are before and after.