mirror of
https://github.com/prometheus/prometheus.git
synced 2026-02-03 20:39:32 -05:00
Some checks failed
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Build Prometheus for common architectures (push) Waiting to run
CI / Build Prometheus for all architectures (push) Waiting to run
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Push README to Docker Hub / Push README to Docker Hub (push) Has been cancelled
Push README to Docker Hub / Push README to quay.io (push) Has been cancelled
* Make service discoveries removable through build tags Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> * Fix cross-platform build issues Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> * Change build tags used Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> * Remove year from License header Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> * Remove plugins automation Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> * Update README Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> * Update README.md Co-authored-by: Julien <291750+roidelapluie@users.noreply.github.com> Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> --------- Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com> Co-authored-by: Julien <291750+roidelapluie@users.noreply.github.com>
20 lines
742 B
Go
20 lines
742 B
Go
// Copyright The Prometheus Authors
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//go:build !remove_all_sd || enable_ionos_sd
|
|
|
|
package plugins
|
|
|
|
import (
|
|
_ "github.com/prometheus/prometheus/discovery/ionos" // Register ionos plugin.
|
|
)
|