diff --git a/CHANGELOG.md b/CHANGELOG.md index 428b84a..c653b31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 2.1.0 (2014-02-28) + +- Support for Response Times +- Support for Web Hooks alert type +- Fix log date conversion + ### 2.0.0 (2014-02-02) - Re-publish UptimeSharp as a newly created PCL with support for multiple platforms diff --git a/README.md b/README.md index 270d538..9e4a7c8 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,7 @@ Provide additional params for more data: List items = await _client.GetMonitors( monitorIDs: new string[]{ "12891", "98711" }, customUptimeRatio: new float[] { 7, 30, 45 }, - showLog: true, - showAlerts: true + includeDetails: true ); ``` @@ -88,9 +87,7 @@ List items = await _client.GetMonitors(
`customUptimeRatio`: the number of days to calculate the uptime ratio(s) for _(default: null)_
-`showLog`: include log, if true _(default: false)_ -
-`showAlerts`: include alerts, if true _(default: true)_ +`includeDetails`: include log, alerts and response times, if true _(default: false)_