Skip to content

Commit 033dc7b

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/Development'
2 parents 6160039 + f0092ba commit 033dc7b

File tree

15 files changed

+194
-85
lines changed

15 files changed

+194
-85
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ As of July, 2017, all significant changes will be logged in this document.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

7-
## [Unreleased]
7+
## [4.0.1] - 2017-07-24
8+
9+
- **Query Editor**: Fixed color highlighting. Addresses [#48](https://github.com/neuralfraud/grafana-prtg/issues/48)
10+
- **Query Editor**: Added option to include a device's name in an item's label. Addresses [#47](https://github.com/neuralfraud/grafana-prtg/issues/47)
11+
- **API**: Added query string parameter "&count=9999" to group, device, and sensor queries to resolve issues for larger deployments. Addresses [#49](https://github.com/neuralfraud/grafana-prtg/issues/49)
12+
- **API**: Updated method to retrieve historic data, fixes an issue where no values are returned if the channel display name differes from the name in the API XML response. For instance, SSL Security sensors display the channel "Security Rating", when the actual value contains additional descriptive text.
13+
- **API**: Performance improvements in the collection of historic data, the array index to retrieve the channel value from is determined using the first result record instead of being determined for each result, which has a noticable impact with multiple-channel queries and thousands of data points.
814

915
## [4.0.0] - 2017-07-17
1016

jasonlashua-prtg-datasource/dist/PRTGAPIService.js

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

jasonlashua-prtg-datasource/dist/PRTGAPIService.js.map

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

jasonlashua-prtg-datasource/dist/datasource.js

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

jasonlashua-prtg-datasource/dist/datasource.js.map

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

jasonlashua-prtg-datasource/dist/partials/query.editor.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,19 @@
174174
<div class="gf-form-inline" ng-show="ctrl.target.options.mode.name == 'Metrics'">
175175
<gf-form-switch class="gf-form" label="Include Sensor Name"
176176
checked="ctrl.target.options.includeSensorName"
177-
on-change="ctrl.onQueryOptionChange()">
177+
on-change="ctrl.targetChange()">
178+
</gf-form-switch>
179+
</div>
180+
<div class="gf-form-inline" ng-show="ctrl.target.options.mode.name == 'Metrics'">
181+
<gf-form-switch class="gf-form" label="Include Device Name"
182+
checked="ctrl.target.options.includeDeviceName"
183+
on-change="ctrl.targetChange()">
178184
</gf-form-switch>
179185
</div>
180186
<div class="gf-form-inline" ng-show="ctrl.target.options.mode.name == 'Metrics'">
181187
<gf-form-switch class="gf-form" label="Invert Channel Filter"
182188
checked="ctrl.target.options.invertChannelFilter"
183-
on-change="ctrl.onQueryOptionChange()">
189+
on-change="ctrl.targetChange()">
184190
</gf-form-switch>
185191
</div> <div class="gf-form gf-form--grow">
186192
<div class="gf-form-label gf-form-label--grow"></div>

jasonlashua-prtg-datasource/dist/query_ctrl.js

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

jasonlashua-prtg-datasource/dist/query_ctrl.js.map

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

jasonlashua-prtg-datasource/dist/utils.js

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

jasonlashua-prtg-datasource/dist/utils.js.map

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

0 commit comments

Comments
 (0)