Commit 8ce49ef 1 parent 81809c7 commit 8ce49ef Copy full SHA for 8ce49ef
File tree 2 files changed +32
-1
lines changed
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+
9
+ ## [ Unreleased]
10
+ Nothing yet.
11
+
12
+
13
+ ## [ 0.7.0] - 2020-06-02
14
+ ### Added
15
+ - ` disable_basic_metrics ` and ` disable_enhanced_metrics ` configuration options.
16
+
17
+ ### Changed
18
+ - Major changes in ` node_exporter ` -like metrics. See [ PR #33 ] ( https://github.com/percona/rds_exporter/pull/33 )
19
+ and [ here] ( https://github.com/percona/rds_exporter#metrics ) .
20
+ - ` HTTP_PROXY ` , ` HTTPS_PROXY ` , and ` NO_PROXY ` environment variables are honored now
21
+ ([ PR #43 ] ( https://github.com/percona/rds_exporter/pull/43 ) by [ @ahmgeek ] ( https://github.com/ahmgeek ) ).
22
+ - Tests and linting improvements.
23
+
24
+
25
+ ## [ 0.6.0] - 2019-12-04
26
+ - Initial tagged release.
27
+
28
+
29
+ [ Unreleased ] : https:/github.com/percona/rds_exporter/compare/v0.7.0...master
30
+ [ 0.7.0 ] : https://github.com/percona/rds_exporter/compare/v0.6.0...v0.7.0
31
+ [ 0.6.0 ] : https://github.com/percona/rds_exporter/releases/tag/v0.6.0
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ func newTransport() *transport {
22
22
t : & http.Transport {
23
23
MaxIdleConnsPerHost : 5 ,
24
24
IdleConnTimeout : 2 * time .Minute ,
25
- Proxy : http .ProxyFromEnvironment ,
25
+ Proxy : http .ProxyFromEnvironment ,
26
26
},
27
27
l : log .With ("component" , "transport" ),
28
28
You can’t perform that action at this time.
0 commit comments