Skip to content

Add namedprocess_namegroup_tcp_socket_count metrics #2

Add namedprocess_namegroup_tcp_socket_count metrics

Add namedprocess_namegroup_tcp_socket_count metrics #2

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: setup Go
uses: actions/setup-go@v2
with:
go-version: '1.17'
- uses: actions/checkout@master
- run: make style
- run: make vet
- run: make test
- run: make build
- run: make integ
image:
runs-on: ubuntu-latest
steps:
- name: setup buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
version: latest
- name: login to docker hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: actions/checkout@master
- name: generate docker metadata
id: meta
uses: docker/metadata-action@v3
with:
context: .
# list of Docker images to use as base name for tags
images: |
ncabatoff/process-exporter
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=sha
- name: build docker image and, if not PR, push
uses: docker/build-push-action@v2
with:
file: ./Dockerfile
context: .
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}