Welcome back from the July 4th long weekend! Our team has been hard at work developing some new features for the platform. The big features are documented below:
Alert management
In this release, our alert clearing algorithms got a little smarter. Prior to this release, if you made a modification to either a test or an alert rule while an alert was active, those alerts would never reset to an inactive state. We have added clearing logic for the following use cases:
test which gets disabled or deleted
test where alerting is disabled
server removed from DNS Server test
agent removed from test
Dashboard changes
We've adjusted the charts shown
Dashboard views have been adjusted to show the last complete round of data in the trending value graphs, as well as the most recent data. This was introduced to avoid showing partially completed round data.
While the change to the dashboard will not be obvious, the values shown in the charts will now reflect the last complete round of data, rather than partially completed rounds.
Clicking the availability chart will open the HTTP Server view, and show the availability metric, and show the data for the round selected on the timeline.
Clicking the response time chart will open the HTTP Server view, and show the response time metric, and show the data for the round selected on the timeline.
Clicking either of the current value entries will open the appropriate view in the context of the selected metric, and show the last full round of collected data.
New Getting Started page
New users will now see a revised Getting Started page, complete with our inaugural screencast, which runs through agent installation and test deployment in ThousandEyes.
We'll also be updating the Help & Support section on the left to show more ThousandEyes screencasts, as they become available.
Network tests now support ICMP protocol
Beginning with today's release, we now support configuration of all network tests using ICMP. Previously, ICMP was only supported on instant ping tests.
To create a new network test using the ICMP protocol, use the test type selector, and select the ICMP button. When you choose ICMP as the test type, the TCP Port field will disappear. The key use case for this would be to trace the path to network devices.
Two items of note
Tests cannot be converted from TCP to ICMP, or vice versa.
The Enable Network Measurements option included with Page Load, HTTP Server, and DNS Server tests are only available with the TCP protocol.
As with our classic TCP network tests, the Path Visualization and BGP Route Visualization views become available when creating an ICMP network test.
Single Sign-On
ThousandEyes now accepts configuration of a SAML provider to enable Single-Sign on (SSO). SSO settings apply for an entire organization, and must be configured by an Organization Admin user. To open SSO settings, click click the Settings | Account option in the navigation menu, then click the Single Sign-On tab.
Please refer to this article for instructions before enabling SSO on ThousandEyes.
API Changes
We've extended the ThousandEyes API to include the ability to execute instant tests via the API.
For this release, the feature is restricted to Enterprise Agents only; attempts to run an instant test against a ThousandEyes Cloud Agent will result in an "Only Enterprise Agents are allowed for instant tests" error message, responding with a 400 BAD REQUEST response code. As with the methods introduced in our June 11, 2013 release (see release notification here), data for each request type must be POSTed to the target endpoint.
The endpoints are documented below, along with some code samples, using cURL:
/instant/net/ping
Inputs
Property
Description
Example
agentId
ID of Enterprise Agent to run instant test from
35
server
server name or IP address of target test. If a webserver, do not include the protocol (ie, http://)
www.google.com
port
port number to use for the ping test, if using TCP for the test type
80
pingType
can be one of the following values: ICMP, TCP. If using ICMP, the port number parameter is not required
{
"dns": {
"trace": [
{
"agentName":"My Enterprise Agent",
"countryId":"US",
"output":"com.\t172800\tIN\tNS\ta.gtld-servers.net.\ncom.\t172800\tIN\tNS\tb.gtld-servers.net.\ncom.\t172800\tIN\tNS\tc.gtld-servers.net.\ncom.\t172800\tIN\tNS\td.gtld-servers.net.\ncom.\t172800\tIN\tNS\te.gtld-servers.net.\ncom.\t172800\tIN\tNS\tf.gtld-servers.net.\ncom.\t172800\tIN\tNS\tg.gtld-servers.net.\ncom.\t172800\tIN\tNS\th.gtld-servers.net.\ncom.\t172800\tIN\tNS\ti.gtld-servers.net.\ncom.\t172800\tIN\tNS\tj.gtld-servers.net.\ncom.\t172800\tIN\tNS\tk.gtld-servers.net.\ncom.\t172800\tIN\tNS\tl.gtld-servers.net.\ncom.\t172800\tIN\tNS\tm.gtld-servers.net.\n;; Received 492 bytes from 199.7.83.42(l.root-servers.net.) in 9 ms\n\ngoogle.com.\t172800\tIN\tNS\tns2.google.com.\ngoogle.com.\t172800\tIN\tNS\tns1.google.com.\ngoogle.com.\t172800\tIN\tNS\tns3.google.com.\ngoogle.com.\t172800\tIN\tNS\tns4.google.com.\n;; Received 168 bytes from 192.5.6.30(a.gtld-servers.net.) in 85 ms\n\nwww.google.com.\t300\tIN\tA\t74.125.129.99\nwww.google.com.\t300\tIN\tA\t74.125.129.104\nwww.google.com.\t300\tIN\tA\t74.125.129.106\nwww.google.com.\t300\tIN\tA\t74.125.129.147\nwww.google.com.\t300\tIN\tA\t74.125.129.103\nwww.google.com.\t300\tIN\tA\t74.125.129.105\n;; Received 128 bytes from 216.239.34.10(ns2.google.com.) in 78 ms\n\n",
"agentId":35,
"queries":3,
"finalQueryTime":78
}
]
}
}
/instant/dns/server
Inputs
Property
Description
Example
agentId
ID of Enterprise Agent to run instant test from
35
domain
domain to retrieve
www.google.com
type
record type to retrieve - typically is used for A, CNAME or NS records.