Revision 17d3d15e16f24fac2cdc2047e7d4344bc2cb6892 authored by Joe Stringer on 10 December 2021, 02:34:11 UTC, committed by Joe Stringer on 10 December 2021, 03:00:16 UTC
Signed-off-by: Joe Stringer <joe@cilium.io>
1 parent 43df21b
Raw File
metrics.go
// Copyright 2020 Authors of Cilium
//
// 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 cmd

import (
	"github.com/spf13/cobra"
)

// MetricsCmd represents the metrics command for the operator.
var MetricsCmd = &cobra.Command{
	Use:   "metrics",
	Short: "Access metric status of the operator",
}
back to top