dogapi 1.22.0 → 1.23.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rspec +1 -1
  4. data/.rubocop.yml +13 -0
  5. data/.travis.yml +3 -1
  6. data/CHANGELOG.md +16 -1
  7. data/Gemfile +6 -3
  8. data/README.rdoc +1 -1
  9. data/Rakefile +8 -15
  10. data/lib/capistrano/datadog.rb +12 -12
  11. data/lib/capistrano/datadog/v2.rb +5 -5
  12. data/lib/capistrano/datadog/v3.rb +9 -4
  13. data/lib/dogapi/common.rb +43 -39
  14. data/lib/dogapi/event.rb +4 -4
  15. data/lib/dogapi/facade.rb +57 -54
  16. data/lib/dogapi/metric.rb +2 -2
  17. data/lib/dogapi/v1/alert.rb +17 -80
  18. data/lib/dogapi/v1/comment.rb +8 -39
  19. data/lib/dogapi/v1/dash.rb +20 -67
  20. data/lib/dogapi/v1/embed.rb +11 -57
  21. data/lib/dogapi/v1/event.rb +37 -72
  22. data/lib/dogapi/v1/metric.rb +17 -46
  23. data/lib/dogapi/v1/monitor.rb +54 -194
  24. data/lib/dogapi/v1/screenboard.rb +8 -77
  25. data/lib/dogapi/v1/search.rb +5 -11
  26. data/lib/dogapi/v1/service_check.rb +6 -15
  27. data/lib/dogapi/v1/snapshot.rb +10 -15
  28. data/lib/dogapi/v1/tag.rb +39 -99
  29. data/lib/dogapi/v1/user.rb +15 -69
  30. data/lib/dogapi/version.rb +1 -1
  31. data/spec/integration/alert_spec.rb +48 -0
  32. data/spec/integration/comment_spec.rb +32 -0
  33. data/spec/integration/common_spec.rb +32 -0
  34. data/spec/integration/dash_spec.rb +60 -0
  35. data/spec/integration/embed_spec.rb +43 -0
  36. data/spec/integration/event_spec.rb +73 -0
  37. data/spec/integration/metric_spec.rb +96 -0
  38. data/spec/integration/monitor_spec.rb +106 -0
  39. data/spec/integration/screenboard_spec.rb +61 -0
  40. data/spec/integration/search_spec.rb +11 -0
  41. data/spec/integration/service_check_spec.rb +12 -0
  42. data/spec/integration/snapshot_spec.rb +24 -0
  43. data/spec/integration/tag_spec.rb +66 -0
  44. data/spec/integration/user_spec.rb +46 -0
  45. data/spec/spec_helper.rb +85 -16
  46. data/spec/unit/common_spec.rb +101 -0
  47. data/spec/unit/facade_spec.rb +79 -0
  48. metadata +55 -52
  49. data/spec/alerts_spec.rb +0 -33
  50. data/spec/common_spec.rb +0 -37
  51. data/spec/facade_spec.rb +0 -166
  52. data/spec/support/cassettes/Alerts/create/returns_HTTP_code_200.yml +0 -114
  53. data/spec/support/cassettes/Alerts/create/returns_a_valid_event_ID.yml +0 -114
  54. data/spec/support/cassettes/Alerts/create/returns_the_same_query_as_sent.yml +0 -114
  55. data/spec/support/cassettes/Facade/Events/emits_aggregate_events.yml +0 -193
  56. data/spec/support/cassettes/Facade/Events/emits_events_and_retrieves_them.yml +0 -100
  57. data/spec/support/cassettes/Facade/Events/emits_events_with_specified_priority.yml +0 -98
  58. data/spec/support/cassettes/Facade/Tags/adds_updates_and_detaches_tags.yml +0 -442
  59. data/tests/test_alerts.rb +0 -38
  60. data/tests/test_base.rb +0 -30
  61. data/tests/test_client.rb +0 -23
  62. data/tests/test_comments.rb +0 -39
  63. data/tests/test_dashes.rb +0 -85
  64. data/tests/test_embed.rb +0 -194
  65. data/tests/test_monitors.rb +0 -192
  66. data/tests/test_screenboard.rb +0 -90
  67. data/tests/test_search.rb +0 -20
  68. data/tests/test_snapshot.rb +0 -28
  69. data/tests/test_users.rb +0 -65
@@ -1,114 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://app.datadoghq.com/api/v1/alert?api_key=<DATADOG_API_KEY>&application_key=<DATADOG_APP_KEY>
6
- body:
7
- encoding: UTF-8
8
- string: '{"query":"avg(last_10m):avg:test.metric.metric{host:test.metric.host}
9
- > 5"}'
10
- headers:
11
- Accept-Encoding:
12
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
13
- Accept:
14
- - "*/*"
15
- User-Agent:
16
- - Ruby
17
- Content-Type:
18
- - application/json
19
- response:
20
- status:
21
- code: 200
22
- message: OK
23
- headers:
24
- Cache-Control:
25
- - no-cache
26
- Content-Type:
27
- - application/json; charset=utf-8
28
- Date:
29
- - Mon, 11 Apr 2016 17:56:52 GMT
30
- Dd-Pool:
31
- - dogweb_sameorig
32
- Pragma:
33
- - no-cache
34
- Set-Cookie:
35
- - DD-PSHARD=0; expires="Mon, 18-Apr-2016 17:56:52 GMT"; Max-Age=604800; Path=/
36
- Strict-Transport-Security:
37
- - max-age=15724800;
38
- Vary:
39
- - Accept-Encoding
40
- X-Content-Type-Options:
41
- - nosniff
42
- X-Dd-Debug:
43
- - omuZE5ldmS3gykYWzeRNmM1P8lUKatqFhRFlclaYIlg=
44
- X-Dd-Version:
45
- - '33.3404'
46
- X-Frame-Options:
47
- - SAMEORIGIN
48
- Content-Length:
49
- - '297'
50
- Connection:
51
- - keep-alive
52
- body:
53
- encoding: UTF-8
54
- string: '{"event_object":"8ee60aa761d2c9f71a2c1ba4979a0363","notify_audit":true,"timeout_h":null,"silenced":false,"query":"avg(last_10m):avg:test.metric.metric{host:test.metric.host}
55
- > 5","message":"","id":552994,"name":"**test.metric.metric** over **host:test.metric.host**
56
- was **> 5.0** on average during the **last 10m**.","no_data_timeframe":false,"creator":2575,"notify_no_data":false,"renotify_interval":null,"state":"No
57
- Data","escalation_message":"","silenced_timeout_ts":null}'
58
- http_version:
59
- recorded_at: Mon, 11 Apr 2016 17:56:52 GMT
60
- - request:
61
- method: delete
62
- uri: https://app.datadoghq.com/api/v1/alert/552994?api_key=<DATADOG_API_KEY>&application_key=<DATADOG_APP_KEY>
63
- body:
64
- encoding: US-ASCII
65
- string: ''
66
- headers:
67
- Accept-Encoding:
68
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
69
- Accept:
70
- - "*/*"
71
- User-Agent:
72
- - Ruby
73
- response:
74
- status:
75
- code: 200
76
- message: OK
77
- headers:
78
- Cache-Control:
79
- - no-cache
80
- Content-Type:
81
- - application/json; charset=utf-8
82
- Date:
83
- - Mon, 11 Apr 2016 17:56:53 GMT
84
- Dd-Pool:
85
- - dogweb_sameorig
86
- Pragma:
87
- - no-cache
88
- Set-Cookie:
89
- - DD-PSHARD=0; expires="Mon, 18-Apr-2016 17:56:52 GMT"; Max-Age=604800; Path=/
90
- Strict-Transport-Security:
91
- - max-age=15724800;
92
- Vary:
93
- - Accept-Encoding
94
- X-Content-Type-Options:
95
- - nosniff
96
- X-Dd-Debug:
97
- - Bj/SqNU1vbZGxNGffIRtmaWe7MKGSPoKHC3+ZhLAjqk=
98
- X-Dd-Version:
99
- - '33.3404'
100
- X-Frame-Options:
101
- - SAMEORIGIN
102
- Content-Length:
103
- - '288'
104
- Connection:
105
- - keep-alive
106
- body:
107
- encoding: UTF-8
108
- string: '{"event_object":"8ee60aa761d2c9f71a2c1ba4979a0363","notify_audit":true,"timeout_h":null,"silenced":false,"query":"avg(last_10m):avg:test.metric.metric{host:test.metric.host}
109
- > 5","message":"","name":"**test.metric.metric** over **host:test.metric.host**
110
- was **> 5.0** on average during the **last 10m**.","no_data_timeframe":false,"creator":2575,"notify_no_data":false,"renotify_interval":null,"state":"No
111
- Data","escalation_message":"","silenced_timeout_ts":null}'
112
- http_version:
113
- recorded_at: Mon, 11 Apr 2016 17:56:53 GMT
114
- recorded_with: VCR 2.9.3
@@ -1,114 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://app.datadoghq.com/api/v1/alert?api_key=<DATADOG_API_KEY>&application_key=<DATADOG_APP_KEY>
6
- body:
7
- encoding: UTF-8
8
- string: '{"query":"avg(last_10m):avg:test.metric.metric{host:test.metric.host}
9
- > 5"}'
10
- headers:
11
- Accept-Encoding:
12
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
13
- Accept:
14
- - "*/*"
15
- User-Agent:
16
- - Ruby
17
- Content-Type:
18
- - application/json
19
- response:
20
- status:
21
- code: 200
22
- message: OK
23
- headers:
24
- Cache-Control:
25
- - no-cache
26
- Content-Type:
27
- - application/json; charset=utf-8
28
- Date:
29
- - Mon, 11 Apr 2016 17:56:52 GMT
30
- Dd-Pool:
31
- - dogweb_sameorig
32
- Pragma:
33
- - no-cache
34
- Set-Cookie:
35
- - DD-PSHARD=0; expires="Mon, 18-Apr-2016 17:56:52 GMT"; Max-Age=604800; Path=/
36
- Strict-Transport-Security:
37
- - max-age=15724800;
38
- Vary:
39
- - Accept-Encoding
40
- X-Content-Type-Options:
41
- - nosniff
42
- X-Dd-Debug:
43
- - shLvnveJ2e0AhnkU64mVlENQB1xkt+HLpGk7+KtFz6g=
44
- X-Dd-Version:
45
- - '33.3404'
46
- X-Frame-Options:
47
- - SAMEORIGIN
48
- Content-Length:
49
- - '297'
50
- Connection:
51
- - keep-alive
52
- body:
53
- encoding: UTF-8
54
- string: '{"event_object":"8ee60aa761d2c9f71a2c1ba4979a0363","notify_audit":true,"timeout_h":null,"silenced":false,"query":"avg(last_10m):avg:test.metric.metric{host:test.metric.host}
55
- > 5","message":"","id":552993,"name":"**test.metric.metric** over **host:test.metric.host**
56
- was **> 5.0** on average during the **last 10m**.","no_data_timeframe":false,"creator":2575,"notify_no_data":false,"renotify_interval":null,"state":"No
57
- Data","escalation_message":"","silenced_timeout_ts":null}'
58
- http_version:
59
- recorded_at: Mon, 11 Apr 2016 17:56:52 GMT
60
- - request:
61
- method: delete
62
- uri: https://app.datadoghq.com/api/v1/alert/552993?api_key=<DATADOG_API_KEY>&application_key=<DATADOG_APP_KEY>
63
- body:
64
- encoding: US-ASCII
65
- string: ''
66
- headers:
67
- Accept-Encoding:
68
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
69
- Accept:
70
- - "*/*"
71
- User-Agent:
72
- - Ruby
73
- response:
74
- status:
75
- code: 200
76
- message: OK
77
- headers:
78
- Cache-Control:
79
- - no-cache
80
- Content-Type:
81
- - application/json; charset=utf-8
82
- Date:
83
- - Mon, 11 Apr 2016 17:56:52 GMT
84
- Dd-Pool:
85
- - dogweb_sameorig
86
- Pragma:
87
- - no-cache
88
- Set-Cookie:
89
- - DD-PSHARD=0; expires="Mon, 18-Apr-2016 17:56:52 GMT"; Max-Age=604800; Path=/
90
- Strict-Transport-Security:
91
- - max-age=15724800;
92
- Vary:
93
- - Accept-Encoding
94
- X-Content-Type-Options:
95
- - nosniff
96
- X-Dd-Debug:
97
- - 9PJnOICwaMTA2SdUy+bwstzTca5UfvMAFI9em8DSBRc=
98
- X-Dd-Version:
99
- - '33.3404'
100
- X-Frame-Options:
101
- - SAMEORIGIN
102
- Content-Length:
103
- - '288'
104
- Connection:
105
- - keep-alive
106
- body:
107
- encoding: UTF-8
108
- string: '{"event_object":"8ee60aa761d2c9f71a2c1ba4979a0363","notify_audit":true,"timeout_h":null,"silenced":false,"query":"avg(last_10m):avg:test.metric.metric{host:test.metric.host}
109
- > 5","message":"","name":"**test.metric.metric** over **host:test.metric.host**
110
- was **> 5.0** on average during the **last 10m**.","no_data_timeframe":false,"creator":2575,"notify_no_data":false,"renotify_interval":null,"state":"No
111
- Data","escalation_message":"","silenced_timeout_ts":null}'
112
- http_version:
113
- recorded_at: Mon, 11 Apr 2016 17:56:52 GMT
114
- recorded_with: VCR 2.9.3
@@ -1,193 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://app.datadoghq.com/api/v1/events?api_key=<DATADOG_API_KEY>
6
- body:
7
- encoding: UTF-8
8
- string: '{"msg_text":"Testing Aggregation (first)","date_happened":1460397384,"msg_title":"","priority":"normal","parent":null,"tags":[],"aggregation_key":"1460397384","alert_type":null,"event_type":null,"source_type_name":null,"title":"","text":"Testing
9
- Aggregation (first)","host":"dogbox-yannmahe","device":null}'
10
- headers:
11
- Accept-Encoding:
12
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
13
- Accept:
14
- - "*/*"
15
- User-Agent:
16
- - Ruby
17
- Content-Type:
18
- - application/json
19
- response:
20
- status:
21
- code: 202
22
- message: Accepted
23
- headers:
24
- Content-Type:
25
- - text/plain; charset=utf-8
26
- Date:
27
- - Mon, 11 Apr 2016 17:56:24 GMT
28
- Dd-Pool:
29
- - propjoe
30
- Strict-Transport-Security:
31
- - max-age=15724800;
32
- X-Content-Type-Options:
33
- - nosniff
34
- Content-Length:
35
- - '260'
36
- Connection:
37
- - keep-alive
38
- body:
39
- encoding: UTF-8
40
- string: '{"status":"ok","event":{"id":491273719585992541,"title":"","text":"Testing
41
- Aggregation (first)","date_happened":1460397384,"handle":null,"priority":"normal","related_event_id":null,"tags":[],"url":"https://app.datadoghq.com/event/event?id=491273719585992541"}}'
42
- http_version:
43
- recorded_at: Mon, 11 Apr 2016 17:56:24 GMT
44
- - request:
45
- method: post
46
- uri: https://app.datadoghq.com/api/v1/events?api_key=<DATADOG_API_KEY>
47
- body:
48
- encoding: UTF-8
49
- string: '{"msg_text":"Testing Aggregation (second)","date_happened":1460397384,"msg_title":"","priority":"normal","parent":null,"tags":[],"aggregation_key":"1460397384","alert_type":null,"event_type":null,"source_type_name":null,"title":"","text":"Testing
50
- Aggregation (second)","host":"dogbox-yannmahe","device":null}'
51
- headers:
52
- Accept-Encoding:
53
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
54
- Accept:
55
- - "*/*"
56
- User-Agent:
57
- - Ruby
58
- Content-Type:
59
- - application/json
60
- response:
61
- status:
62
- code: 202
63
- message: Accepted
64
- headers:
65
- Content-Type:
66
- - text/plain; charset=utf-8
67
- Date:
68
- - Mon, 11 Apr 2016 17:56:24 GMT
69
- Dd-Pool:
70
- - propjoe
71
- Strict-Transport-Security:
72
- - max-age=15724800;
73
- X-Content-Type-Options:
74
- - nosniff
75
- Content-Length:
76
- - '261'
77
- Connection:
78
- - keep-alive
79
- body:
80
- encoding: UTF-8
81
- string: '{"status":"ok","event":{"id":491273721766316527,"title":"","text":"Testing
82
- Aggregation (second)","date_happened":1460397384,"handle":null,"priority":"normal","related_event_id":null,"tags":[],"url":"https://app.datadoghq.com/event/event?id=491273721766316527"}}'
83
- http_version:
84
- recorded_at: Mon, 11 Apr 2016 17:56:24 GMT
85
- - request:
86
- method: get
87
- uri: https://app.datadoghq.com/api/v1/events/491273719585992541?api_key=<DATADOG_API_KEY>&application_key=<DATADOG_APP_KEY>
88
- body:
89
- encoding: US-ASCII
90
- string: ''
91
- headers:
92
- Accept-Encoding:
93
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
94
- Accept:
95
- - "*/*"
96
- User-Agent:
97
- - Ruby
98
- response:
99
- status:
100
- code: 200
101
- message: OK
102
- headers:
103
- Cache-Control:
104
- - no-cache
105
- Content-Type:
106
- - application/json
107
- Date:
108
- - Mon, 11 Apr 2016 17:56:33 GMT
109
- Dd-Pool:
110
- - dogweb_sameorig
111
- Pragma:
112
- - no-cache
113
- Set-Cookie:
114
- - DD-PSHARD=0; expires="Mon, 18-Apr-2016 17:56:33 GMT"; Max-Age=604800; Path=/
115
- Strict-Transport-Security:
116
- - max-age=15724800;
117
- Vary:
118
- - Accept-Encoding
119
- X-Content-Type-Options:
120
- - nosniff
121
- X-Dd-Debug:
122
- - Bj/SqNU1vbZGxNGffIRtmaWe7MKGSPoKHC3+ZhLAjqk=
123
- X-Dd-Version:
124
- - '33.3404'
125
- X-Frame-Options:
126
- - SAMEORIGIN
127
- Content-Length:
128
- - '230'
129
- Connection:
130
- - keep-alive
131
- body:
132
- encoding: UTF-8
133
- string: '{"event": {"date_happened": 1460397384, "alert_type": "info", "resource":
134
- "/api/v1/events/491273719585992541", "title": "", "url": "/event/event?event_id=491273719585992541",
135
- "text": "Testing Aggregation (first)", "tags": [], "device_name": null, "priority":
136
- "normal", "host": "dogbox-yannmahe", "id": 491273719585992541}}'
137
- http_version:
138
- recorded_at: Mon, 11 Apr 2016 17:56:33 GMT
139
- - request:
140
- method: get
141
- uri: https://app.datadoghq.com/api/v1/events/491273721766316527?api_key=<DATADOG_API_KEY>&application_key=<DATADOG_APP_KEY>
142
- body:
143
- encoding: US-ASCII
144
- string: ''
145
- headers:
146
- Accept-Encoding:
147
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
148
- Accept:
149
- - "*/*"
150
- User-Agent:
151
- - Ruby
152
- response:
153
- status:
154
- code: 200
155
- message: OK
156
- headers:
157
- Cache-Control:
158
- - no-cache
159
- Content-Type:
160
- - application/json
161
- Date:
162
- - Mon, 11 Apr 2016 17:56:33 GMT
163
- Dd-Pool:
164
- - dogweb_sameorig
165
- Pragma:
166
- - no-cache
167
- Set-Cookie:
168
- - DD-PSHARD=0; expires="Mon, 18-Apr-2016 17:56:33 GMT"; Max-Age=604800; Path=/
169
- Strict-Transport-Security:
170
- - max-age=15724800;
171
- Vary:
172
- - Accept-Encoding
173
- X-Content-Type-Options:
174
- - nosniff
175
- X-Dd-Debug:
176
- - wZ/CfAcuKqv18nSeAYtvn7MAell4CbOc+cxqaasVWcY=
177
- X-Dd-Version:
178
- - '33.3404'
179
- X-Frame-Options:
180
- - SAMEORIGIN
181
- Content-Length:
182
- - '229'
183
- Connection:
184
- - keep-alive
185
- body:
186
- encoding: UTF-8
187
- string: '{"event": {"date_happened": 1460397384, "alert_type": "info", "resource":
188
- "/api/v1/events/491273721766316527", "title": "", "url": "/event/event?event_id=491273721766316527",
189
- "text": "Testing Aggregation (second)", "tags": [], "device_name": null, "priority":
190
- "normal", "host": "dogbox-yannmahe", "id": 491273721766316527}}'
191
- http_version:
192
- recorded_at: Mon, 11 Apr 2016 17:56:33 GMT
193
- recorded_with: VCR 2.9.3
@@ -1,100 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://app.datadoghq.com/api/v1/events?api_key=<DATADOG_API_KEY>
6
- body:
7
- encoding: UTF-8
8
- string: '{"msg_text":"test message","date_happened":1460397401,"msg_title":"dogapi-rb
9
- end test title 1460397401","priority":"normal","parent":null,"tags":["test-run:1"],"aggregation_key":"","alert_type":null,"event_type":null,"source_type_name":null,"title":"dogapi-rb
10
- end test title 1460397401","text":"test message","host":"dogbox-yannmahe","device":null}'
11
- headers:
12
- Accept-Encoding:
13
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
- Accept:
15
- - "*/*"
16
- User-Agent:
17
- - Ruby
18
- Content-Type:
19
- - application/json
20
- response:
21
- status:
22
- code: 202
23
- message: Accepted
24
- headers:
25
- Content-Type:
26
- - text/plain; charset=utf-8
27
- Date:
28
- - Mon, 11 Apr 2016 17:56:41 GMT
29
- Dd-Pool:
30
- - propjoe
31
- Strict-Transport-Security:
32
- - max-age=15724800;
33
- X-Content-Type-Options:
34
- - nosniff
35
- Content-Length:
36
- - '292'
37
- Connection:
38
- - keep-alive
39
- body:
40
- encoding: UTF-8
41
- string: '{"status":"ok","event":{"id":491274007246737761,"title":"dogapi-rb
42
- end test title 1460397401","text":"test message","date_happened":1460397401,"handle":null,"priority":"normal","related_event_id":null,"tags":["test-run:1"],"url":"https://app.datadoghq.com/event/event?id=491274007246737761"}}'
43
- http_version:
44
- recorded_at: Mon, 11 Apr 2016 17:56:41 GMT
45
- - request:
46
- method: get
47
- uri: https://app.datadoghq.com/api/v1/events/491274007246737761?api_key=<DATADOG_API_KEY>&application_key=<DATADOG_APP_KEY>
48
- body:
49
- encoding: US-ASCII
50
- string: ''
51
- headers:
52
- Accept-Encoding:
53
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
54
- Accept:
55
- - "*/*"
56
- User-Agent:
57
- - Ruby
58
- response:
59
- status:
60
- code: 200
61
- message: OK
62
- headers:
63
- Cache-Control:
64
- - no-cache
65
- Content-Type:
66
- - application/json
67
- Date:
68
- - Mon, 11 Apr 2016 17:56:52 GMT
69
- Dd-Pool:
70
- - dogweb_sameorig
71
- Pragma:
72
- - no-cache
73
- Set-Cookie:
74
- - DD-PSHARD=0; expires="Mon, 18-Apr-2016 17:56:51 GMT"; Max-Age=604800; Path=/
75
- Strict-Transport-Security:
76
- - max-age=15724800;
77
- Vary:
78
- - Accept-Encoding
79
- X-Content-Type-Options:
80
- - nosniff
81
- X-Dd-Debug:
82
- - 5PF/Z5LFS2+PDopAy61C4pggyl02rZxZk412h3D879s=
83
- X-Dd-Version:
84
- - '33.3404'
85
- X-Frame-Options:
86
- - SAMEORIGIN
87
- Content-Length:
88
- - '234'
89
- Connection:
90
- - keep-alive
91
- body:
92
- encoding: UTF-8
93
- string: '{"event": {"date_happened": 1460397401, "alert_type": "info", "resource":
94
- "/api/v1/events/491274007246737761", "title": "dogapi-rb end test title 1460397401",
95
- "url": "/event/event?event_id=491274007246737761", "text": "test message",
96
- "tags": ["test-run:1"], "device_name": null, "priority": "normal", "host":
97
- "dogbox-yannmahe", "id": 491274007246737761}}'
98
- http_version:
99
- recorded_at: Mon, 11 Apr 2016 17:56:52 GMT
100
- recorded_with: VCR 2.9.3