MySQL Plugin - Extract the server info out of the DSN (Data Source Name)

This commit is contained in:
Adithya B Cherunilam 2015-10-22 19:39:51 +05:30 committed by Adithya Benny
parent 2f08577967
commit 60e7e7ed7c
1 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package mysql
import (
"database/sql"
"regexp"
"strconv"
"strings"
@ -132,7 +133,8 @@ func (m *Mysql) gatherServer(serv string, acc plugins.Accumulator) error {
// Parse out user/password from server address tag if given
var servtag string
if strings.Contains(serv, "@") {
servtag = strings.Split(serv, "@")[1]
r, _ := regexp.Compile("(.*)[:](.*)[@]([a-z]+)[(|:][/]*(.*)[:]([0-9]+)[)]?[/]([^?]*)[?]?([^?]*)")
servtag = r.FindStringSubmatch(serv)[4]
} else if serv == "" {
servtag = "localhost"
} else {