Skip to content

Commit bb1efe3

Browse files
committed
Add dependabot, golangci-lint, github action, and goreleaser
1 parent 3a16fe1 commit bb1efe3

File tree

7 files changed

+123
-102
lines changed

7 files changed

+123
-102
lines changed

.circleci/config.yml

-99
This file was deleted.

.github/.goreleaser.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

.github/dependabot.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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: "-"

.github/workflows/build.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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 .

.github/workflows/release.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 }}

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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>
33

44
COPY sphinx_exporter /bin/sphinx_exporter
55

main.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,7 @@ func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
544544
ch <- prometheus.MustNewConstMetric(e.index_count, prometheus.GaugeValue, float64(len(databases)))
545545

546546
// Collect metrics per index
547+
// nolint
547548
for index, _ := range databases {
548549
// Distributed indexes has no index status
549550

@@ -658,13 +659,16 @@ func main() {
658659

659660
http.Handle(*metricsPath, promhttp.Handler())
660661
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
661-
w.Write([]byte(`<html>
662+
_, err := w.Write([]byte(`<html>
662663
<head><title>Sphinx Exporter</title></head>
663664
<body>
664665
<h1>Sphinx Exporter</h1>
665666
<p><a href='` + *metricsPath + `'>Metrics</a></p>
666667
</body>
667668
</html>`))
669+
if err != nil {
670+
log.Error(err)
671+
}
668672
})
669673
log.Infoln("Starting HTTP server on", *listenAddress)
670674
log.Fatal(http.ListenAndServe(*listenAddress, nil))

0 commit comments

Comments
 (0)