-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ezgidemirel <[email protected]>
- Loading branch information
1 parent
af65888
commit 535d7fa
Showing
8 changed files
with
280 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
Copyright 2024 The Crossplane 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. | ||
*/ | ||
|
||
// Package statemetrics contains utilities for recording Crossplane resource state metrics. | ||
package statemetrics | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/prometheus/client_golang/prometheus" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
) | ||
|
||
const subSystem = "crossplane" | ||
|
||
// A StateRecorder records the state of given GroupVersionKind. | ||
type StateRecorder interface { | ||
Describe(ch chan<- *prometheus.Desc) | ||
Collect(ch chan<- prometheus.Metric) | ||
|
||
Record(ctx context.Context, gvk schema.GroupVersionKind) | ||
Run(ctx context.Context, gvk schema.GroupVersionKind) | ||
} | ||
|
||
// A NopStateRecorder does nothing. | ||
type NopStateRecorder struct{} | ||
|
||
// NewNopStateRecorder returns a NopStateRecorder that does nothing. | ||
func NewNopStateRecorder() *NopStateRecorder { | ||
return &NopStateRecorder{} | ||
} | ||
|
||
// Describe does nothing. | ||
func (r *NopStateRecorder) Describe(_ chan<- *prometheus.Desc) {} | ||
|
||
// Collect does nothing. | ||
func (r *NopStateRecorder) Collect(_ chan<- prometheus.Metric) {} | ||
|
||
// Record does nothing. | ||
func (r *NopStateRecorder) Record(_ context.Context, _ schema.GroupVersionKind) {} | ||
|
||
// Run does nothing. | ||
func (r *NopStateRecorder) Run(_ context.Context, _ schema.GroupVersionKind) {} |
Oops, something went wrong.