34 lines
1.2 KiB
Go
34 lines
1.2 KiB
Go
// Copyright 2023 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 wasip1 || js
|
|
// +build wasip1 js
|
|
|
|
package prometheus
|
|
|
|
func canCollectProcess() bool {
|
|
return false
|
|
}
|
|
|
|
func (c *processCollector) processCollect(ch chan<- Metric) {
|
|
c.errorCollectFn(ch)
|
|
}
|
|
|
|
// describe returns all descriptions of the collector for wasip1 and js.
|
|
// Ensure that this list of descriptors is kept in sync with the metrics collected
|
|
// in the processCollect method. Any changes to the metrics in processCollect
|
|
// (such as adding or removing metrics) should be reflected in this list of descriptors.
|
|
func (c *processCollector) describe(ch chan<- *Desc) {
|
|
c.errorDescribeFn(ch)
|
|
}
|