You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a major revision which means **APIs will break**. It is not backwards compatible with 0.1.x releases. Code from 0.1.x branches will no longer be supported. Please update!
4
+
5
+
#### Demo Project
6
+
7
+
* Added descriptions and examples on how to use various features to demo project
8
+
9
+
#### Metrics
10
+
11
+
* Added `metricNamed:valued:` to `LibratoMetric` (https://github.com/amco/librato-iOS/commit/0e10150892820ab7185bbd7752a2ec564d0cc458)
12
+
* Added `metricNamed:valued:source:measureTime:` to `LibratoMetric` (https://github.com/amco/librato-iOS/commit/0e10150892820ab7185bbd7752a2ec564d0cc458)
13
+
* Fixed `metricTime` not being set when passed in via `metricNamed:valued:options:` (https://github.com/amco/librato-iOS/commit/0e10150892820ab7185bbd7752a2ec564d0cc458)
14
+
* Changed metrics to extend Mantle instead of `NSObject` (https://github.com/amco/librato-iOS/commit/e418ff7c1dd824c55529d0588ae6677a5a4b7062)
15
+
* Changed `isValidValue` from instance to class method
16
+
* Changed maximum metric age from one year to fifteen minutes (Librato Metric rules) (https://github.com/amco/librato-iOS/commit/53fbe0bee6a22e34b698f212d01a188ea40b9468)
17
+
* Added automatic collection of device, OS, app and Librato library metrics when a `Librato` instance is initialized (https://github.com/amco/librato-iOS/commit/5ce4d5d16b49dd5a09e21c5e09eb48881157c0d4)
18
+
* Fixed `LibratoClient.metrics` to report queued metrics instead of blank `NSDictionary`
19
+
* Fixed queue firing `removeAllObjects` when `clear`ing instead of overwriting with new `NSMutableDictonary` so dictionary children are `release`d. (https://github.com/amco/librato-iOS/commit/704c245a1710ac6989d13d8b54d50d24206d8c53)
20
+
21
+
#### Collections
22
+
23
+
* Added `LibratoMetricCollection` which contains metrics based on type and handles conversion of metrics into structured JSON (https://github.com/amco/librato-iOS/commit/704c245a1710ac6989d13d8b54d50d24206d8c53)
24
+
25
+
#### Initialization
26
+
27
+
* Added `NSAsserts` in Librato, LibratoMetric and LibratoGaugeMetric `init` to disable use in favor of their custom initialization methods (https://github.com/amco/librato-iOS/commit/ebc4dcd5ed976607f1e13acff5cdaa9fdcf26adb)
28
+
29
+
#### Submission
30
+
31
+
* Added `add:` interface which is preferred over `submit:`
32
+
* Changed manual submission to an optional command as queues are automatically submitted on a configurable interval (https://github.com/amco/librato-iOS/commit/fda9cbaeaa4525e61bff0c53932d94b2a6c47190)
33
+
* Added global block handlers for submission success and failure (https://github.com/amco/librato-iOS/commit/e3e095cb26579446400e9ac61a33fb9e940ef8da)
34
+
* Changed queue to clear just before firing submission instead of after successful submission to prevent accidental double submission (https://github.com/amco/librato-iOS/commit/5ce4d5d16b49dd5a09e21c5e09eb48881157c0d4)
35
+
* Note: Queue is not cached before clearing, would could be useful if submission fails to re-queue items
36
+
37
+
#### Offline
38
+
39
+
* Added prevention of metrics submission if device is offline (https://github.com/amco/librato-iOS/commit/704c245a1710ac6989d13d8b54d50d24206d8c53)
40
+
* Added automatic queue submission when internet becomes available
41
+
* Added storage of queue in `NSKeyedArchiver` when app is backgrounded
42
+
* Added queue hydration via `NSKeyedArchiver` when app is brought to foreground
43
+
44
+
#### Group metrics
45
+
46
+
* Added `groupNamed:valued:` to convert an `NSDictionary` into an array of `LibratoMetric`s (https://github.com/amco/librato-iOS/commit/fa4a9a5cf525e6ed04192e41b8bb709e57612a57)
47
+
* Added `groupNamed:context:` to automatically prefix any metrics created in the context with the group name
48
+
49
+
#### Notification subscription
50
+
51
+
* Added ability of `Librato` to subscribe to notifications with `listenForNotification:context:` and perform given `context` when notification is caught (https://github.com/amco/librato-iOS/commit/4a7b5a974263b596bdaa1e74943c36d586b93f51)
52
+
* Added queue specific to Librato subscriptions for `dispatch_async`ing execution of assigned `context`
53
+
54
+
#### User agent
55
+
56
+
* Added custom user agent setting available in `Librato` (https://github.com/amco/librato-iOS/commit/24e9edbc8dc03546fb8976239503a4c3ce3aab52)
57
+
* Removed `agentIdentifier` from `LibratoClient`
58
+
59
+
#### Descriptions
60
+
61
+
* Added custom descriptions for Librato, LibratoClient, LibratoMetric, LibratoMetricCollection and LibratoQueue to aid debugging (https://github.com/amco/librato-iOS/commit/704c245a1710ac6989d13d8b54d50d24206d8c53)
62
+
63
+
#### Miscellaneous
64
+
65
+
* Removed numerous `NSLog`s. Sorry about the extra noise. (https://github.com/amco/librato-iOS/commit/474fe9a115ffe308eb2e858a93af0453568e76ad, https://github.com/amco/librato-iOS/commit/7433254602cdc3d3b6d9b755766a929b82d73805)
66
+
1
67
### Version 0.1.0
2
68
3
-
* Initial commit and functionality
69
+
Initial commit and functionality
70
+
71
+
* Code available via CocoaPods
72
+
73
+
#### Metrics
74
+
75
+
* Create counter metric
76
+
* Create group metric, statistics automatically computed
77
+
* Name and source fields automatically cleaned and trimmed
78
+
* Custom prefix available to be applied to all metric names
79
+
* Values for all fields can be manipulated after initialization
80
+
81
+
#### Submission
82
+
83
+
* Metric types offered but `NSDictionary` data automatically parsed into appropriate Metric type and queued
0 commit comments