File tree 7 files changed +123
-102
lines changed
7 files changed +123
-102
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ project_name : sphinx-exporter
2
+ release :
3
+ github :
4
+ owner : foxdalas
5
+ name : sphinx_exporter
6
+
7
+ builds :
8
+ - id : sphinx-exporter
9
+ binary : sphinx-exporter
10
+ goos :
11
+ - linux
12
+ goarch :
13
+ - amd64
14
+ - arm64
15
+ dockers :
16
+ - image_templates :
17
+ - " foxdalas/sphinx-exporter:{{ .Version }}-amd64"
18
+ use : buildx
19
+ dockerfile : Dockerfile
20
+ build_flag_templates :
21
+ - " --platform=linux/amd64"
22
+ - image_templates :
23
+ - " foxdalas/sphinx-exporter:{{ .Version }}-arm64v8"
24
+ use : buildx
25
+ goarch : arm64
26
+ dockerfile : Dockerfile
27
+ build_flag_templates :
28
+ - " --platform=linux/arm64/v8"
29
+ docker_manifests :
30
+ - id : sphinx-exporter
31
+ name_template : foxdalas/sphinx-exporter:{{ .Version }}
32
+ image_templates :
33
+ - foxdalas/sphinx-exporter:{{ .Version }}-amd64
34
+ - foxdalas/sphinx-exporter:{{ .Version }}-arm64v8
35
+ use : docker
Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : " gomod" # See documentation for possible values
9
+ directory : " /" # Location of package manifests
10
+ schedule :
11
+ interval : " daily"
12
+ pull-request-branch-name :
13
+ separator : " -"
Original file line number Diff line number Diff line change
1
+ name : " build-and-test"
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - master
9
+
10
+ jobs :
11
+ build-and-tests :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+
16
+ - name : Set up Go
17
+ uses : actions/setup-go@v2
18
+ with :
19
+ go-version : 1.17
20
+
21
+ - name : Go mod download
22
+ run : go mod download
23
+
24
+ -
uses :
Jerome1337/[email protected]
25
+ with :
26
+ gofmt-path : ' .'
27
+ gofmt-flags : ' -l -d'
28
+
29
+ - name : golangci-lint
30
+ uses : golangci/golangci-lint-action@v2
31
+ with :
32
+ version : v1.43
33
+ skip-go-installation : true
34
+ skip-pkg-cache : true
35
+
36
+ - name : Test
37
+ run : go test ./...
38
+
39
+ - name : Go build
40
+ run : go build .
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " *"
7
+
8
+ jobs :
9
+ release :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+
14
+ - name : Set up Go
15
+ uses : actions/setup-go@v2
16
+ with :
17
+ go-version : 1.17
18
+
19
+ - name : Go mod download
20
+ run : go mod download
21
+
22
+ - name : Release Proxy
23
+ uses : goreleaser/goreleaser-action@v2
24
+ with :
25
+ version : latest
26
+ args : release --rm-dist -f ./.github/.goreleaser.yml
27
+ env :
28
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
- FROM quay.io/prometheus/busybox:latest
2
- MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups .com>
1
+ FROM alpine:3.15
2
+ MAINTAINER Maxim Pogozhiy <foxdalas@gmail .com>
3
3
4
4
COPY sphinx_exporter /bin/sphinx_exporter
5
5
Original file line number Diff line number Diff line change @@ -544,6 +544,7 @@ func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
544
544
ch <- prometheus .MustNewConstMetric (e .index_count , prometheus .GaugeValue , float64 (len (databases )))
545
545
546
546
// Collect metrics per index
547
+ // nolint
547
548
for index , _ := range databases {
548
549
// Distributed indexes has no index status
549
550
@@ -658,13 +659,16 @@ func main() {
658
659
659
660
http .Handle (* metricsPath , promhttp .Handler ())
660
661
http .HandleFunc ("/" , func (w http.ResponseWriter , r * http.Request ) {
661
- w .Write ([]byte (`<html>
662
+ _ , err := w .Write ([]byte (`<html>
662
663
<head><title>Sphinx Exporter</title></head>
663
664
<body>
664
665
<h1>Sphinx Exporter</h1>
665
666
<p><a href='` + * metricsPath + `'>Metrics</a></p>
666
667
</body>
667
668
</html>` ))
669
+ if err != nil {
670
+ log .Error (err )
671
+ }
668
672
})
669
673
log .Infoln ("Starting HTTP server on" , * listenAddress )
670
674
log .Fatal (http .ListenAndServe (* listenAddress , nil ))
You can’t perform that action at this time.
0 commit comments