mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Add socket support for mysql data source
This commit is contained in:
parent
76fc48e2eb
commit
36dbc5f51c
@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/go-sql-driver/mysql"
|
"github.com/go-sql-driver/mysql"
|
||||||
"github.com/go-xorm/core"
|
"github.com/go-xorm/core"
|
||||||
@ -20,10 +21,16 @@ func init() {
|
|||||||
func newMysqlQueryEndpoint(datasource *models.DataSource) (tsdb.TsdbQueryEndpoint, error) {
|
func newMysqlQueryEndpoint(datasource *models.DataSource) (tsdb.TsdbQueryEndpoint, error) {
|
||||||
logger := log.New("tsdb.mysql")
|
logger := log.New("tsdb.mysql")
|
||||||
|
|
||||||
|
var protocol string
|
||||||
|
if strings.HasPrefix(datasource.Url, "/") {
|
||||||
|
protocol = "unix"
|
||||||
|
} else {
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
cnnstr := fmt.Sprintf("%s:%s@%s(%s)/%s?collation=utf8mb4_unicode_ci&parseTime=true&loc=UTC&allowNativePasswords=true",
|
cnnstr := fmt.Sprintf("%s:%s@%s(%s)/%s?collation=utf8mb4_unicode_ci&parseTime=true&loc=UTC&allowNativePasswords=true",
|
||||||
datasource.User,
|
datasource.User,
|
||||||
datasource.Password,
|
datasource.Password,
|
||||||
"tcp",
|
protocol,
|
||||||
datasource.Url,
|
datasource.Url,
|
||||||
datasource.Database,
|
datasource.Database,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user