Skip to content

Commit 93974c2

Browse files
authored
Merge pull request #38 from newrelic/ihost-2175
[Ihost 2175] Upgrade to sdk v3.1.5
2 parents 39b800b + 3c449ce commit 93974c2

File tree

11 files changed

+230
-49
lines changed

11 files changed

+230
-49
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## 1.2.0 (2019-04-29)
9+
### Added
10+
- Upgraded to SDK v3.1.5. This version implements [the aget/integrations
11+
protocol v3](https://github.com/newrelic/infra-integrations-sdk/blob/cb45adacda1cd5ff01544a9d2dad3b0fedf13bf1/docs/protocol-v3.md),
12+
which enables [name local address replacement](https://github.com/newrelic/infra-integrations-sdk/blob/cb45adacda1cd5ff01544a9d2dad3b0fedf13bf1/docs/protocol-v3.md#name-local-address-replacement).
13+
and could change your entity names and alarms. For more information, refer
14+
to:
15+
16+
- https://docs.newrelic.com/docs/integrations/integrations-sdk/file-specifications/integration-executable-file-specifications#h2-loopback-address-replacement-on-entity-names
17+
- https://docs.newrelic.com/docs/remote-monitoring-host-integration://docs.newrelic.com/docs/remote-monitoring-host-integrations
18+
819
## 1.1.0 (2019-04-08)
920
### Added
1021
- Upgraded to SDKv3.
11-
- Remote monitoring option. It enables monitoring multiple instances,
22+
- Remote monitoring option. It enables monitoring multiple instances,
1223
more information can be found at the [official documentation page](https://docs.newrelic.com/docs/remote-monitoring-host-integrations).
1324

1425
## 1.0.1 (2018-09-07)

tests/integration/json-schema-files/output.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.newrelic.redis",
3-
"protocol_version": "2",
3+
"protocol_version": "3",
44
"integration_version": "1.2.0",
55
"data": [
66
{
@@ -399,4 +399,4 @@
399399
"events": []
400400
}
401401
]
402-
}
402+
}

tests/integration/json-schema-files/redis-schema-inventory.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@
983983
},
984984
"protocol_version": {
985985
"minLength": 1,
986-
"pattern": "^2$",
986+
"pattern": "^3$",
987987
"type": "string"
988988
}
989989
},
@@ -994,4 +994,4 @@
994994
"data"
995995
],
996996
"type": "object"
997-
}
997+
}

tests/integration/json-schema-files/redis-schema-metrics.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
},
228228
"protocol_version": {
229229
"minLength": 1,
230-
"pattern": "^2$",
230+
"pattern": "^3$",
231231
"type": "string"
232232
}
233233
},
@@ -238,4 +238,4 @@
238238
"data"
239239
],
240240
"type": "object"
241-
}
241+
}

tests/integration/json-schema-files/redis-schema-remote-entity.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@
11841184
},
11851185
"protocol_version": {
11861186
"minLength": 1,
1187-
"pattern": "^2$",
1187+
"pattern": "^3$",
11881188
"type": "string"
11891189
}
11901190
},
@@ -1195,4 +1195,4 @@
11951195
"data"
11961196
],
11971197
"type": "object"
1198-
}
1198+
}

tests/integration/json-schema-files/redis-schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,7 @@
11691169
},
11701170
"protocol_version": {
11711171
"minLength": 1,
1172-
"pattern": "^2$",
1172+
"pattern": "^3$",
11731173
"type": "string"
11741174
}
11751175
},
@@ -1180,4 +1180,4 @@
11801180
"data"
11811181
],
11821182
"type": "object"
1183-
}
1183+
}

vendor/github.com/newrelic/infra-integrations-sdk/data/metric/metrics.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/newrelic/infra-integrations-sdk/integration/entity.go

Lines changed: 56 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/newrelic/infra-integrations-sdk/integration/entity_id.go

Lines changed: 98 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/newrelic/infra-integrations-sdk/integration/integration.go

Lines changed: 37 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)