-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 2 metrics to globalnet: 1. submariner_global_IP_availability 2. submariner_global_IP_allocated Those metrics reffers to the global CIDR shared by all globalnet controllers Partly Fix: #1471 Signed-off-by: Maayan Friedman <[email protected]>
- Loading branch information
1 parent
f40880e
commit c23c889
Showing
2 changed files
with
75 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
SPDX-License-Identifier: Apache-2.0 | ||
Copyright Contributors to the Submariner project. | ||
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 metrics | ||
|
||
import "github.com/prometheus/client_golang/prometheus" | ||
|
||
const ( | ||
cidrLabel = "cidr" | ||
) | ||
|
||
var ( | ||
globalIPsAvailabilityGauge = prometheus.NewGaugeVec( | ||
prometheus.GaugeOpts{ | ||
Name: "submariner_global_IP_availability", | ||
Help: "Count of available global IPs per CIDR", | ||
}, | ||
[]string{ | ||
cidrLabel, | ||
}, | ||
) | ||
globalIPsAllocatedGauge = prometheus.NewGaugeVec( | ||
prometheus.GaugeOpts{ | ||
Name: "submariner_global_IP_allocated", | ||
Help: "Count of global IPs allocated for Pods/Services per CIDR", | ||
}, | ||
[]string{ | ||
cidrLabel, | ||
}, | ||
) | ||
) | ||
|
||
func init() { | ||
prometheus.MustRegister(globalIPsAvailabilityGauge, globalIPsAllocatedGauge) | ||
} | ||
|
||
func RecordAllocateGlobalIP(cidr string) { | ||
globalIPsAllocatedGauge.With(prometheus.Labels{cidrLabel: cidr}).Inc() | ||
globalIPsAvailabilityGauge.With(prometheus.Labels{cidrLabel: cidr}).Dec() | ||
} | ||
|
||
func RecordAllocateGlobalIPs(cidr string, count int) { | ||
globalIPsAllocatedGauge.With(prometheus.Labels{cidrLabel: cidr}).Add(float64(count)) | ||
globalIPsAvailabilityGauge.With(prometheus.Labels{cidrLabel: cidr}).Sub(float64(count)) | ||
} | ||
|
||
func RecordDeallocateGlobalIP(cidr string) { | ||
globalIPsAllocatedGauge.With(prometheus.Labels{cidrLabel: cidr}).Dec() | ||
globalIPsAvailabilityGauge.With(prometheus.Labels{cidrLabel: cidr}).Inc() | ||
} | ||
|
||
func RecordAvailability(cidr string, count int) { | ||
globalIPsAvailabilityGauge.With(prometheus.Labels{cidrLabel: cidr}).Set(float64(count)) | ||
} |
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