Skip to content

metrics: fix application_instances_per_channel disagreeing with UI instance counts #2009

metrics: fix application_instances_per_channel disagreeing with UI instance counts

metrics: fix application_instances_per_channel disagreeing with UI instance counts #2009

Workflow file for this run

name: Build Backend
on:
pull_request:
paths:
- 'backend/cmd/**'
- 'backend/pkg/**'
- 'backend/tools/**'
- 'backend/test/**'
- 'backend/go.mod'
- 'backend/go.sum'
- 'updaters/**'
- '.github/**'
- Makefile
jobs:
build:
name: Backend Build Steps
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: ./backend/go.mod
id: go
- name: Build, Lint & Check
run: |
make all ci
working-directory: backend