# Release Notes: 2013-06-18

Tonight's release contains a few minor features, and some stability enhancements. Check out the updates below.

## New Dashboard

We've converted our classic dashboard to a widget-based dashboard in tonight's release. This new dashboard has several new features:

### New widget: All Tests

This is the same as the classic dashboard - lists each test, test type, alert status, trending and current values - just wrapped into a widget, rather than containing the entire dashboard page. You'll also notice a gears icon, which appears when hovering over a test in the updated dashboard, for users with Account Admin privileges or higher. As previously announced, the presence of the paperclip icon (1) beside a test name indicates a test shared by live share. Click the gears icon (2) to jump to test settings, and edit the settings for that particular test.

![](/files/-M5xtWmPJoAOZTaXsyLU)

### New widget: Enterprise Agent routes

This feature generates data used by the agent reference metrics data, released last week. With the Enterprise Agent routes widget, you'll now see a path from each Enterprise Agent to the primary ThousandEyes agent collector for your account. You'll see the very familiar path visualization view, for each agent testing connectivity to the primary agent collector, along with a summary of currently configured agents. An example of the Enterprise Agent routes data is shown below. Notice that this shows notification that one of my Enterprise Agents is offline.

![](/files/-M5xtWmSagqo2vHBFkNv)

### Dashboard configuration

The Dashboard Settings link, found on the upper right corner of the page, where the "Share this Screen" option normally sits, allows you to configure which components should be included on the dashboard. Click the link (1) to expand a menu and choose the widgets you want included in the dashboard display (2).

![](/files/-M5xtWmWK_7wEScekI5u)

In the near future, each widget will be configurable, and will show a link in the upper right corner of the widget to allow configuration of the widget's settings.

![](/files/-M5xtWmZEOB72BGji3ST)

## API updates

We've made two minor revisions to the write methods to the ThousandEyes API, first announced in the [June 11, 2013 update](/archived-release-notes/2013/2013-06-11-release-notes.md):

### Response codes

* any successful ***new*** request will now receive an HTTP/201 CREATED response.
* any successful ***delete*** \_\*\*\_request will now receive an HTTP/204 NO CONTENT response.

### JSON structure change for network tests

The test structure for network tests now reflects a separate field for port number, in order to allow IPv6 addresses to be used in the server field. The field is named port, and accepts integer responses. The default for a network test is port 80.

Was:

```
{
 "test": [
  {
     "enabled":1,
     "testName":"API network test addition for www.thousandeyes.com",
     "interval":300,
     "server":"www.thousandeyes.com:80",
     "agents":[]
   }
 ]
}
```

Changed to:

```
{
 "test": [
  {
     "enabled":1,
     "testName":"API network test addition for www.thousandeyes.com",
     "interval":300,
     "server":"www.thousandeyes.com",
     "port":80,
     "agents":[]
   }
 ]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.thousandeyes.com/archived-release-notes/2013/2013-06-18-release-notes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
