Latest Dynatrace
Time series charts show a series of numeric values collected over time at consistent intervals, such as every minute, hour, or day. The data can be either timestamps (showing only the start time) or timeframes (showing both the start and end times of each data point).
In these charts, both the X-axis and Y-axis are numerical. The X-axis represents the independent variable, while the Y-axis represents the dependent variable. In dual-axis charts, a third variable can be included, which results in a second Y-axis.
Timestamp data includes only one timestamp (start
) per data point.
{start: new Date ("2022-10-01 06:00:00")value: 1500,}
Timeframe data includes two timestamps (start
and end
) per data point to represent a duration.
{start: new Date ("2022-10-01 06:00:00"),end: new Date ("2022-10-01 08:00:00"),value: 1500,}
Data gaps appear when data is missing between data points. In time series charts, these gaps appear as empty spaces along a line. To fill these gaps, linear interpolation can be used. This is a configuration option on the chart determined by the app creator.
//example timeframe data without gaps{start: new Date ("2022-10-01 06:00:00"),end: new Date ("2022-10-01 08:00:00"),value: 1500,},{start: new Date ("2022-10-01 08:00:00"),end: new Date ("2022-10-01 10:00:00"),value: 1250,}//example timeframe data with gaps{start: new Date ("2022-10-01 10:00:00"),end: new Date ("2022-10-01 12:00:00"),value: 1150,},{start: new Date ("2022-10-01 14:00:00"),end: new Date ("2022-10-01 16:00:00"),value: 950,}
Dynatrace visualizations provides four different time series chart types:
Line charts are commonly used to show changes in variables over time. Linear interpolation connects each consecutive data point with a straight line.
A stacked area chart is similar to a line chart, but with a filled area beneath the line. Like line charts, area charts are used to illustrate changes over time, and to highlight the total value during that period.
Like time series area and line charts, a time series bar chart shows changes over time. Grouping is not supported, but can be achieved by using a categorical bar chart.
The width of the bar is determined by the underlying data.
A time series band chart visually represents the range of values for a variable over time. The band indicates the minimum and maximum value, making it possible to observe how the range fluctuates over time. Band charts enable the identification of patterns or trends in the data that may not be obvious when focusing solely on the median.
The chart toolbar and its controls (and additional shortcuts) provide an important mechanism to interact with the data in your chart.
This table summarizes the various tools available on the toolbar. Note that the availability of tools might differ per app/dataset.
To reposition the chart toolbar to another location within the chart, select and drag the move icon on the toolbar.
Inspect chart mode is the default toolbar mode in most cases. In this mode, you can inspect data points within the chart by hovering over them to see their details and perform additional actions that are specified in the series actions submenu.
With the X-axis zoom mode, you can zoom in on your data along the X-axis (time series). To perform an X-axis zoom, select or use the keyboard shortcut described above. Then you can select and drag in the chart area to define the area on which to zoom. When you release your mouse button, the chart is zoomed to the selected area.
Whether a zoom action fetches additional data with a higher resolution from the data source depends on the app and usage scenario.
Use this mode to pan your chart along the X-axis (time axis). To perform a pan action, select on the toolbar or use the keyboard shortcut defined above. As an alternative, you can select and drag the chart's X-axis to pan the chart in any mode.
Pan actions aren't possible until a zoom action has been executed. In some circumstances, panning your chart requires additional data to be fetched.
To immediately zoom the chart in or out, select the zoom in or zoom out tool in the toolbar.
Zoom in and out factors are based on a predetermined increment. Steps can be increased by pressing the Shift key.
Whether a zoom action retrieves higher resolution data from the data source depends on the app and usage.
To reset a chart's zoom level to its original/default level, select reset in the toolbar.
To show relationships between two variables, use a dual axis chart for the same or different units.