File tree 5 files changed +8
-267
lines changed
5 files changed +8
-267
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ executors:
7
7
# should also be updated.
8
8
golang :
9
9
docker :
10
- - image : cimg/go:1.18
10
+ - image : cimg/go:1.19
11
11
jobs :
12
12
test :
13
13
executor : golang
18
18
file : mysqld_exporter
19
19
integration :
20
20
docker :
21
- - image : cimg/go:1.18
21
+ - image : cimg/go:1.19
22
22
- image : << parameters.mysql_image >>
23
23
environment :
24
24
MYSQL_ALLOW_EMPTY_PASSWORD : " yes"
Original file line number Diff line number Diff line change 1
1
go :
2
2
# Whenever the Go version is updated here, .circle/config.yml should also
3
3
# be updated.
4
- version : 1.18
4
+ version : 1.19
5
5
repository :
6
6
path : github.com/prometheus/mysqld_exporter
7
7
build :
Original file line number Diff line number Diff line change 69
69
// This is mainly targeting pt-heartbeat, but will work with any heartbeat
70
70
// implementation that writes to a table with two columns:
71
71
// CREATE TABLE heartbeat (
72
- // ts varchar(26) NOT NULL,
73
- // server_id int unsigned NOT NULL PRIMARY KEY,
72
+ //
73
+ // ts varchar(26) NOT NULL,
74
+ // server_id int unsigned NOT NULL PRIMARY KEY,
75
+ //
74
76
// );
75
77
type ScrapeHeartbeat struct {}
76
78
Original file line number Diff line number Diff line change 1
1
module github.com/prometheus/mysqld_exporter
2
2
3
- go 1.17
3
+ go 1.18
4
4
5
5
require (
6
6
github.com/DATA-DOG/go-sqlmock v1.5.0
You can’t perform that action at this time.
0 commit comments