Skip to content

Commit

Permalink
Support npipe URLs in host parser
Browse files Browse the repository at this point in the history
Docker for Windows uses URLs like `npipe://./pipe/docker_engine`. This
change makes sure they are supported by our host validators
  • Loading branch information
exekias committed Jul 26, 2017
1 parent 45fa3c6 commit 218dfd8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,16 @@ https://github.com/elastic/beats/compare/v6.0.0-beta1...master[Check the HEAD di

==== Bugfixes

*Affecting all Beats*

*Filebeat*

*Heartbeat*

*Metricbeat*

- Support `npipe` protocol (Windows) in Docker module. {pull}4751[4751]

*Packetbeat*

*Winlogbeat*
Expand Down
7 changes: 4 additions & 3 deletions metricbeat/mb/parse/url.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ func (b URLHostParserBuilder) Build() mb.HostParser {

// NewHostDataFromURL returns a new HostData based on the contents of the URL.
// If the URLs scheme is "unix" or end is "unix" (e.g. "http+unix://") then
// the HostData.Host field is set to the URLs path instead of the URLs host.
// the HostData.Host field is set to the URLs path instead of the URLs host,
// the same happens for "npipe".
func NewHostDataFromURL(u *url.URL) mb.HostData {
var user, pass string
if u.User != nil {
Expand All @@ -70,7 +71,7 @@ func NewHostDataFromURL(u *url.URL) mb.HostData {
}

host := u.Host
if strings.HasSuffix(u.Scheme, "unix") {
if strings.HasSuffix(u.Scheme, "unix") || strings.HasSuffix(u.Scheme, "npipe") {
host = u.Path
}

Expand Down Expand Up @@ -140,7 +141,7 @@ func getURL(rawURL, scheme, username, password, path, query string) (*url.URL, e

SetURLUser(u, username, password)

if !strings.HasSuffix(u.Scheme, "unix") {
if !strings.HasSuffix(u.Scheme, "unix") && !strings.HasSuffix(u.Scheme, "npipe") {
if u.Host == "" {
return nil, fmt.Errorf("error parsing URL: empty host")
}
Expand Down
12 changes: 12 additions & 0 deletions metricbeat/mb/parse/url_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,18 @@ func TestParseURL(t *testing.T) {
}
})

t.Run("npipe", func(t *testing.T) {
rawURL := "npipe://./pipe/docker_engine"
hostData, err := ParseURL(rawURL, "tcp", "", "", "", "")
if assert.NoError(t, err) {
assert.Equal(t, "npipe://./pipe/docker_engine", hostData.URI)
assert.Equal(t, "npipe://./pipe/docker_engine", hostData.SanitizedURI)
assert.Equal(t, "/pipe/docker_engine", hostData.Host)
assert.Equal(t, "", hostData.User)
assert.Equal(t, "", hostData.Password)
}
})

t.Run("set default user", func(t *testing.T) {
rawURL := "http://:secret@localhost"
h, err := ParseURL(rawURL, "https", "root", "passwd", "", "")
Expand Down

0 comments on commit 218dfd8

Please sign in to comment.