This topic describes the marker annotations supported by Streamline.
Marker annotations add bookmarks to the Timeline view and the Log view, optionally with a text string. Bookmarks enable you to label and quickly return to points of interest.
Hovering over a bookmark displays an overlay that contains the timestamp and text string of the bookmark.
ANNOTATE_MARKER()Add a bookmark to the Timeline view and the Log view.
ANNOTATE_MARKER_STR(string)Add a bookmark with a string to the Timeline view and the Log view. Streamline displays the string when you hover over the bookmark in the Timeline view, and in the Message column in the Log view.
ANNOTATE_MARKER_COLOR(color)Add a bookmark with a color to the Timeline view and the Log view.
ANNOTATE_MARKER_COLOR_STR(color, string)Add a bookmark with a color and a string to the Timeline view and the Log view.
The following example shows uses the ANNOTATE_MARKER_COLOR_STR annotation to add blue and green markers annotations to your capture:
ANNOTATE_MARKER_COLOR_STR(ANNOTATE_BLUE, label);
ANNOTATE_MARKER_COLOR_STR(ANNOTATE_GREEN, label);
Which renders the blue and green markers in the capture timeline: