chef-handler-datadog 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/.env.example +2 -0
  3. data/CHANGELOG.md +15 -0
  4. data/Rakefile +7 -0
  5. data/lib/chef/handler/datadog.rb +1 -0
  6. data/lib/chef/handler/datadog_chef_metrics.rb +10 -1
  7. data/lib/chef/handler/datadog_chef_tags.rb +30 -9
  8. data/lib/chef_handler_datadog.rb +1 -1
  9. data/spec/datadog_spec.rb +74 -4
  10. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_alert_handles_when_specified.yml +258 -122
  11. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_event_title_correctly.yml +129 -61
  12. data/spec/support/cassettes/Chef_Handler_Datadog/failed_Chef_run/sets_priority_correctly.yml +129 -61
  13. data/spec/support/cassettes/Chef_Handler_Datadog/hostname/uses_the_node_name_when_no_config_specified.yml +124 -53
  14. data/spec/support/cassettes/Chef_Handler_Datadog/hostname/uses_the_specified_hostname_when_provided.yml +124 -53
  15. data/spec/support/cassettes/Chef_Handler_Datadog/reports_correct_hostname_on_an_ec2_node/does_not_use_the_instance_id_when_config_specified_to_false.yml +124 -53
  16. data/spec/support/cassettes/Chef_Handler_Datadog/reports_correct_hostname_on_an_ec2_node/uses_the_instance_id_when_config_is_specified.yml +124 -53
  17. data/spec/support/cassettes/Chef_Handler_Datadog/reports_correct_hostname_on_an_ec2_node/uses_the_instance_id_when_no_config_specified.yml +124 -53
  18. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_events/posts_an_event.yml +124 -53
  19. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_events/sets_priority_correctly.yml +124 -53
  20. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/emits_metrics/reports_metrics.yml +124 -53
  21. data/spec/support/cassettes/Chef_Handler_Datadog/reports_metrics_event_and_sets_tags/sets_tags/puts_the_tags_for_the_current_node.yml +124 -53
  22. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase/only_emits_a_failure_metric.yml +134 -0
  23. data/spec/support/cassettes/Chef_Handler_Datadog/resources/failure_during_compile_phase/posts_an_event.yml +77 -25
  24. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_specified/sets_the_role_and_env_and_tags.yml +89 -43
  25. data/spec/support/cassettes/Chef_Handler_Datadog/tags/when_unspecified/sets_role_env_and_nothing_else.yml +89 -42
  26. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_not_specified/does_not_retry_after_a_failed_submission.yml +241 -0
  27. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_specified_as_2_retries/retries_no_more_than_twice.yml +331 -0
  28. data/spec/support/cassettes/Chef_Handler_Datadog/tags_submission_retries/when_specified_as_2_retries/stops_retrying_once_submission_is_successful.yml +287 -0
  29. data/spec/support/cassettes/Chef_Handler_Datadog/updated_resources/posts_an_event.yml +126 -58
  30. metadata +11 -2
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"series":[{"metric":"chef.resources.total","points":[[1428248966,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
8
+ string: '{"series":[{"metric":"chef.run.success","points":[[1453838676,1.0]],"type":"counter","host":"chef.handler.datadog.test-tags","device":null}]}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -21,28 +21,30 @@ http_interactions:
21
21
  message: Accepted
22
22
  headers:
23
23
  Content-Type:
24
- - text/json; charset=UTF-8
24
+ - text/json
25
25
  Date:
26
- - Sun, 05 Apr 2015 15:49:21 GMT
27
- Server:
28
- - dogdispatcher/6.1.23
26
+ - Tue, 26 Jan 2016 20:04:31 GMT
27
+ Dd-Pool:
28
+ - propjoe
29
29
  Strict-Transport-Security:
30
30
  - max-age=15724800;
31
+ X-Content-Type-Options:
32
+ - nosniff
31
33
  Content-Length:
32
- - '15'
34
+ - '16'
33
35
  Connection:
34
36
  - keep-alive
35
37
  body:
36
38
  encoding: UTF-8
37
- string: '{"status":"ok"}'
39
+ string: '{"status": "ok"}'
38
40
  http_version:
39
- recorded_at: Sun, 05 Apr 2015 15:49:26 GMT
41
+ recorded_at: Tue, 26 Jan 2016 20:04:36 GMT
40
42
  - request:
41
43
  method: post
42
44
  uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
43
45
  body:
44
46
  encoding: UTF-8
45
- string: '{"series":[{"metric":"chef.resources.updated","points":[[1428248966,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
47
+ string: '{"series":[{"metric":"chef.resources.total","points":[[1453838676,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
46
48
  headers:
47
49
  Accept-Encoding:
48
50
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -58,28 +60,30 @@ http_interactions:
58
60
  message: Accepted
59
61
  headers:
60
62
  Content-Type:
61
- - text/json; charset=UTF-8
63
+ - text/json
62
64
  Date:
63
- - Sun, 05 Apr 2015 15:49:22 GMT
64
- Server:
65
- - dogdispatcher/6.1.23
65
+ - Tue, 26 Jan 2016 20:04:31 GMT
66
+ Dd-Pool:
67
+ - propjoe
66
68
  Strict-Transport-Security:
67
69
  - max-age=15724800;
70
+ X-Content-Type-Options:
71
+ - nosniff
68
72
  Content-Length:
69
- - '15'
73
+ - '16'
70
74
  Connection:
71
75
  - keep-alive
72
76
  body:
73
77
  encoding: UTF-8
74
- string: '{"status":"ok"}'
78
+ string: '{"status": "ok"}'
75
79
  http_version:
76
- recorded_at: Sun, 05 Apr 2015 15:49:26 GMT
80
+ recorded_at: Tue, 26 Jan 2016 20:04:36 GMT
77
81
  - request:
78
82
  method: post
79
83
  uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
80
84
  body:
81
85
  encoding: UTF-8
82
- string: '{"series":[{"metric":"chef.resources.elapsed_time","points":[[1428248966,5.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
86
+ string: '{"series":[{"metric":"chef.resources.updated","points":[[1453838676,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
83
87
  headers:
84
88
  Accept-Encoding:
85
89
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -95,28 +99,69 @@ http_interactions:
95
99
  message: Accepted
96
100
  headers:
97
101
  Content-Type:
98
- - text/json; charset=UTF-8
102
+ - text/json
99
103
  Date:
100
- - Sun, 05 Apr 2015 15:49:23 GMT
101
- Server:
102
- - dogdispatcher/6.1.23
104
+ - Tue, 26 Jan 2016 20:04:31 GMT
105
+ Dd-Pool:
106
+ - propjoe
103
107
  Strict-Transport-Security:
104
108
  - max-age=15724800;
109
+ X-Content-Type-Options:
110
+ - nosniff
105
111
  Content-Length:
106
- - '15'
112
+ - '16'
107
113
  Connection:
108
114
  - keep-alive
109
115
  body:
110
116
  encoding: UTF-8
111
- string: '{"status":"ok"}'
117
+ string: '{"status": "ok"}'
112
118
  http_version:
113
- recorded_at: Sun, 05 Apr 2015 15:49:26 GMT
119
+ recorded_at: Tue, 26 Jan 2016 20:04:36 GMT
120
+ - request:
121
+ method: post
122
+ uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
123
+ body:
124
+ encoding: UTF-8
125
+ string: '{"series":[{"metric":"chef.resources.elapsed_time","points":[[1453838676,5.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
126
+ headers:
127
+ Accept-Encoding:
128
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
129
+ Accept:
130
+ - "*/*"
131
+ User-Agent:
132
+ - Ruby
133
+ Content-Type:
134
+ - application/json
135
+ response:
136
+ status:
137
+ code: 202
138
+ message: Accepted
139
+ headers:
140
+ Content-Type:
141
+ - text/json
142
+ Date:
143
+ - Tue, 26 Jan 2016 20:04:31 GMT
144
+ Dd-Pool:
145
+ - propjoe
146
+ Strict-Transport-Security:
147
+ - max-age=15724800;
148
+ X-Content-Type-Options:
149
+ - nosniff
150
+ Content-Length:
151
+ - '16'
152
+ Connection:
153
+ - keep-alive
154
+ body:
155
+ encoding: UTF-8
156
+ string: '{"status": "ok"}'
157
+ http_version:
158
+ recorded_at: Tue, 26 Jan 2016 20:04:36 GMT
114
159
  - request:
115
160
  method: post
116
161
  uri: https://app.datadoghq.com/api/v1/events?api_key=<API_KEY>
117
162
  body:
118
163
  encoding: UTF-8
119
- string: '{"msg_text":"Chef updated 0 resources out of 0 resources total.","date_happened":1428248966,"msg_title":"Chef
164
+ string: '{"msg_text":"Chef updated 0 resources out of 0 resources total.","date_happened":1453838676,"msg_title":"Chef
120
165
  completed in 5 seconds on chef.handler.datadog.test-tags ","priority":"low","parent":null,"tags":["env:hostile","role:highlander","tag:the_one_and_only"],"aggregation_key":"chef.handler.datadog.test-tags","alert_type":"success","event_type":"config_management.run","source_type_name":"chef","title":"Chef
121
166
  completed in 5 seconds on chef.handler.datadog.test-tags ","text":"Chef updated
122
167
  0 resources out of 0 resources total.","host":"chef.handler.datadog.test-tags","device":null}'
@@ -135,27 +180,26 @@ http_interactions:
135
180
  message: Accepted
136
181
  headers:
137
182
  Content-Type:
138
- - text/json; charset=UTF-8
183
+ - text/plain; charset=utf-8
139
184
  Date:
140
- - Sun, 05 Apr 2015 15:49:23 GMT
141
- Server:
142
- - dogdispatcher/6.1.23
185
+ - Tue, 26 Jan 2016 20:04:31 GMT
186
+ Dd-Pool:
187
+ - propjoe
143
188
  Strict-Transport-Security:
144
189
  - max-age=15724800;
190
+ X-Content-Type-Options:
191
+ - nosniff
145
192
  Content-Length:
146
- - '420'
193
+ - '396'
147
194
  Connection:
148
195
  - keep-alive
149
196
  body:
150
197
  encoding: UTF-8
151
- string: '{"status": "ok", "event": {"priority": "low", "date_happened": 1428248966,
152
- "handle": null, "title": "Chef completed in 5 seconds on chef.handler.datadog.test-tags
153
- ", "url": "https://app.datadoghq.com/event/event?id=2751230185062799345",
154
- "text": "Chef updated 0 resources out of 0 resources total.", "tags": ["env:hostile",
155
- "role:highlander", "tag:the_one_and_only"], "related_event_id": null, "id":
156
- 2751230185062799345}}'
198
+ string: '{"status":"ok","event":{"id":381236778694851193,"title":"Chef completed
199
+ in 5 seconds on chef.handler.datadog.test-tags ","text":"Chef updated 0 resources
200
+ out of 0 resources total.","date_happened":1453838676,"handle":null,"priority":"low","related_event_id":null,"tags":["env:hostile","role:highlander","tag:the_one_and_only"],"url":"https://app.datadoghq.com/event/event?id=381236778694851193"}}'
157
201
  http_version:
158
- recorded_at: Sun, 05 Apr 2015 15:49:26 GMT
202
+ recorded_at: Tue, 26 Jan 2016 20:04:36 GMT
159
203
  - request:
160
204
  method: put
161
205
  uri: https://app.datadoghq.com/api/v1/tags/hosts/chef.handler.datadog.test-tags?api_key=<API_KEY>&application_key=<APPLICATION_KEY>&source=chef
@@ -181,15 +225,17 @@ http_interactions:
181
225
  Content-Type:
182
226
  - application/json
183
227
  Date:
184
- - Sun, 05 Apr 2015 15:49:24 GMT
228
+ - Tue, 26 Jan 2016 20:04:31 GMT
229
+ Dd-Pool:
230
+ - dogweb_sameorig
185
231
  Pragma:
186
232
  - no-cache
187
- Server:
188
- - gunicorn/19.1.0
189
233
  Strict-Transport-Security:
190
234
  - max-age=15724800;
235
+ X-Content-Type-Options:
236
+ - nosniff
191
237
  X-Dd-Debug:
192
- - mPU4gm+hKkKT8ia9ZdY5CzVKb87xvoCEvNtumo6b6Z8=
238
+ - EhhnoBinSJ/mFOFx8c30LkIq8VSKonD/kqf6I2QWUws=
193
239
  X-Frame-Options:
194
240
  - SAMEORIGIN
195
241
  Content-Length:
@@ -201,5 +247,5 @@ http_interactions:
201
247
  string: '{"host": "chef.handler.datadog.test-tags", "tags": ["env:hostile",
202
248
  "role:highlander", "tag:the_one_and_only"]}'
203
249
  http_version:
204
- recorded_at: Sun, 05 Apr 2015 15:49:26 GMT
205
- recorded_with: VCR 2.9.3
250
+ recorded_at: Tue, 26 Jan 2016 20:04:36 GMT
251
+ recorded_with: VCR 3.0.1
@@ -5,7 +5,7 @@ http_interactions:
5
5
  uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"series":[{"metric":"chef.resources.total","points":[[1428248969,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
8
+ string: '{"series":[{"metric":"chef.run.success","points":[[1453838675,1.0]],"type":"counter","host":"chef.handler.datadog.test-tags","device":null}]}'
9
9
  headers:
10
10
  Accept-Encoding:
11
11
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -21,28 +21,30 @@ http_interactions:
21
21
  message: Accepted
22
22
  headers:
23
23
  Content-Type:
24
- - text/json; charset=UTF-8
24
+ - text/json
25
25
  Date:
26
- - Sun, 05 Apr 2015 15:49:25 GMT
27
- Server:
28
- - dogdispatcher/6.1.23
26
+ - Tue, 26 Jan 2016 20:04:30 GMT
27
+ Dd-Pool:
28
+ - propjoe
29
29
  Strict-Transport-Security:
30
30
  - max-age=15724800;
31
+ X-Content-Type-Options:
32
+ - nosniff
31
33
  Content-Length:
32
- - '15'
34
+ - '16'
33
35
  Connection:
34
36
  - keep-alive
35
37
  body:
36
38
  encoding: UTF-8
37
- string: '{"status":"ok"}'
39
+ string: '{"status": "ok"}'
38
40
  http_version:
39
- recorded_at: Sun, 05 Apr 2015 15:49:29 GMT
41
+ recorded_at: Tue, 26 Jan 2016 20:04:35 GMT
40
42
  - request:
41
43
  method: post
42
44
  uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
43
45
  body:
44
46
  encoding: UTF-8
45
- string: '{"series":[{"metric":"chef.resources.updated","points":[[1428248969,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
47
+ string: '{"series":[{"metric":"chef.resources.total","points":[[1453838675,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
46
48
  headers:
47
49
  Accept-Encoding:
48
50
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -58,28 +60,30 @@ http_interactions:
58
60
  message: Accepted
59
61
  headers:
60
62
  Content-Type:
61
- - text/json; charset=UTF-8
63
+ - text/json
62
64
  Date:
63
- - Sun, 05 Apr 2015 15:49:26 GMT
64
- Server:
65
- - dogdispatcher/6.1.23
65
+ - Tue, 26 Jan 2016 20:04:31 GMT
66
+ Dd-Pool:
67
+ - propjoe
66
68
  Strict-Transport-Security:
67
69
  - max-age=15724800;
70
+ X-Content-Type-Options:
71
+ - nosniff
68
72
  Content-Length:
69
- - '15'
73
+ - '16'
70
74
  Connection:
71
75
  - keep-alive
72
76
  body:
73
77
  encoding: UTF-8
74
- string: '{"status":"ok"}'
78
+ string: '{"status": "ok"}'
75
79
  http_version:
76
- recorded_at: Sun, 05 Apr 2015 15:49:29 GMT
80
+ recorded_at: Tue, 26 Jan 2016 20:04:35 GMT
77
81
  - request:
78
82
  method: post
79
83
  uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
80
84
  body:
81
85
  encoding: UTF-8
82
- string: '{"series":[{"metric":"chef.resources.elapsed_time","points":[[1428248969,5.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
86
+ string: '{"series":[{"metric":"chef.resources.updated","points":[[1453838675,0.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
83
87
  headers:
84
88
  Accept-Encoding:
85
89
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -95,28 +99,69 @@ http_interactions:
95
99
  message: Accepted
96
100
  headers:
97
101
  Content-Type:
98
- - text/json; charset=UTF-8
102
+ - text/json
99
103
  Date:
100
- - Sun, 05 Apr 2015 15:49:26 GMT
101
- Server:
102
- - dogdispatcher/6.1.23
104
+ - Tue, 26 Jan 2016 20:04:31 GMT
105
+ Dd-Pool:
106
+ - propjoe
103
107
  Strict-Transport-Security:
104
108
  - max-age=15724800;
109
+ X-Content-Type-Options:
110
+ - nosniff
105
111
  Content-Length:
106
- - '15'
112
+ - '16'
107
113
  Connection:
108
114
  - keep-alive
109
115
  body:
110
116
  encoding: UTF-8
111
- string: '{"status":"ok"}'
117
+ string: '{"status": "ok"}'
112
118
  http_version:
113
- recorded_at: Sun, 05 Apr 2015 15:49:29 GMT
119
+ recorded_at: Tue, 26 Jan 2016 20:04:35 GMT
120
+ - request:
121
+ method: post
122
+ uri: https://app.datadoghq.com/api/v1/series?api_key=<API_KEY>
123
+ body:
124
+ encoding: UTF-8
125
+ string: '{"series":[{"metric":"chef.resources.elapsed_time","points":[[1453838675,5.0]],"type":"gauge","host":"chef.handler.datadog.test-tags","device":null}]}'
126
+ headers:
127
+ Accept-Encoding:
128
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
129
+ Accept:
130
+ - "*/*"
131
+ User-Agent:
132
+ - Ruby
133
+ Content-Type:
134
+ - application/json
135
+ response:
136
+ status:
137
+ code: 202
138
+ message: Accepted
139
+ headers:
140
+ Content-Type:
141
+ - text/json
142
+ Date:
143
+ - Tue, 26 Jan 2016 20:04:31 GMT
144
+ Dd-Pool:
145
+ - propjoe
146
+ Strict-Transport-Security:
147
+ - max-age=15724800;
148
+ X-Content-Type-Options:
149
+ - nosniff
150
+ Content-Length:
151
+ - '16'
152
+ Connection:
153
+ - keep-alive
154
+ body:
155
+ encoding: UTF-8
156
+ string: '{"status": "ok"}'
157
+ http_version:
158
+ recorded_at: Tue, 26 Jan 2016 20:04:35 GMT
114
159
  - request:
115
160
  method: post
116
161
  uri: https://app.datadoghq.com/api/v1/events?api_key=<API_KEY>
117
162
  body:
118
163
  encoding: UTF-8
119
- string: '{"msg_text":"Chef updated 0 resources out of 0 resources total.","date_happened":1428248969,"msg_title":"Chef
164
+ string: '{"msg_text":"Chef updated 0 resources out of 0 resources total.","date_happened":1453838675,"msg_title":"Chef
120
165
  completed in 5 seconds on chef.handler.datadog.test-tags ","priority":"low","parent":null,"tags":["env:hostile","role:highlander"],"aggregation_key":"chef.handler.datadog.test-tags","alert_type":"success","event_type":"config_management.run","source_type_name":"chef","title":"Chef
121
166
  completed in 5 seconds on chef.handler.datadog.test-tags ","text":"Chef updated
122
167
  0 resources out of 0 resources total.","host":"chef.handler.datadog.test-tags","device":null}'
@@ -135,26 +180,26 @@ http_interactions:
135
180
  message: Accepted
136
181
  headers:
137
182
  Content-Type:
138
- - text/json; charset=UTF-8
183
+ - text/plain; charset=utf-8
139
184
  Date:
140
- - Sun, 05 Apr 2015 15:49:27 GMT
141
- Server:
142
- - dogdispatcher/6.1.23
185
+ - Tue, 26 Jan 2016 20:04:31 GMT
186
+ Dd-Pool:
187
+ - propjoe
143
188
  Strict-Transport-Security:
144
189
  - max-age=15724800;
190
+ X-Content-Type-Options:
191
+ - nosniff
145
192
  Content-Length:
146
- - '396'
193
+ - '373'
147
194
  Connection:
148
195
  - keep-alive
149
196
  body:
150
197
  encoding: UTF-8
151
- string: '{"status": "ok", "event": {"priority": "low", "date_happened": 1428248969,
152
- "handle": null, "title": "Chef completed in 5 seconds on chef.handler.datadog.test-tags
153
- ", "url": "https://app.datadoghq.com/event/event?id=2751230245696245756",
154
- "text": "Chef updated 0 resources out of 0 resources total.", "tags": ["env:hostile",
155
- "role:highlander"], "related_event_id": null, "id": 2751230245696245756}}'
198
+ string: '{"status":"ok","event":{"id":381236770623842597,"title":"Chef completed
199
+ in 5 seconds on chef.handler.datadog.test-tags ","text":"Chef updated 0 resources
200
+ out of 0 resources total.","date_happened":1453838675,"handle":null,"priority":"low","related_event_id":null,"tags":["env:hostile","role:highlander"],"url":"https://app.datadoghq.com/event/event?id=381236770623842597"}}'
156
201
  http_version:
157
- recorded_at: Sun, 05 Apr 2015 15:49:29 GMT
202
+ recorded_at: Tue, 26 Jan 2016 20:04:35 GMT
158
203
  - request:
159
204
  method: put
160
205
  uri: https://app.datadoghq.com/api/v1/tags/hosts/chef.handler.datadog.test-tags?api_key=<API_KEY>&application_key=<APPLICATION_KEY>&source=chef
@@ -180,15 +225,17 @@ http_interactions:
180
225
  Content-Type:
181
226
  - application/json
182
227
  Date:
183
- - Sun, 05 Apr 2015 15:49:28 GMT
228
+ - Tue, 26 Jan 2016 20:04:31 GMT
229
+ Dd-Pool:
230
+ - dogweb_sameorig
184
231
  Pragma:
185
232
  - no-cache
186
- Server:
187
- - gunicorn/19.1.0
188
233
  Strict-Transport-Security:
189
234
  - max-age=15724800;
235
+ X-Content-Type-Options:
236
+ - nosniff
190
237
  X-Dd-Debug:
191
- - K5UeadTtPqoFikPi1o+Wft0+9g+d2LCw4qfYk8mXP20=
238
+ - uTibUUKQfObPuIZxjR4qd7DtXl7nOORJ69j/2Xrv/+E=
192
239
  X-Frame-Options:
193
240
  - SAMEORIGIN
194
241
  Content-Length:
@@ -200,5 +247,5 @@ http_interactions:
200
247
  string: '{"host": "chef.handler.datadog.test-tags", "tags": ["env:hostile",
201
248
  "role:highlander"]}'
202
249
  http_version:
203
- recorded_at: Sun, 05 Apr 2015 15:49:29 GMT
204
- recorded_with: VCR 2.9.3
250
+ recorded_at: Tue, 26 Jan 2016 20:04:35 GMT
251
+ recorded_with: VCR 3.0.1