mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 14:30:12 +01:00
Whenever a volume is provisioned and de-provisioned we will send a google event with mainly following details : 1. pvName (will shown as app title in google analytics) 2. size of the volume 3. event type : volume-provision, volume-deprovision 4. storage type zfs-localpv 5. replicacount as 1 6. ClientId as default namespace uuid Apart from this, we send the event once in 24 hr, which will have some info like number of nodes, node type, kubernetes version etc. This metric is cotrolled by OPENEBS_IO_ENABLE_ANALYTICS env. We can set it to false if we don't want to send the metrics. Signed-off-by: Pawan <pawan@mayadata.io>
59 lines
1.8 KiB
Go
59 lines
1.8 KiB
Go
/*
|
|
Copyright 2020 The OpenEBS 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 v1alpha1
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
// Namespacegetter abstracts fetching of Namespace from kubernetes cluster
|
|
type NamespaceGetter interface {
|
|
Get(name string, options metav1.GetOptions) (*corev1.Namespace, error)
|
|
}
|
|
|
|
// NamespaceLister abstracts fetching of a list of namespaces from kubernetes cluster
|
|
type NamespaceLister interface {
|
|
List(options metav1.ListOptions) (*corev1.NamespaceList, error)
|
|
}
|
|
type namespace struct{}
|
|
|
|
// Namespace returns a pointer to the namespace struct
|
|
func Namespace() *namespace {
|
|
return &namespace{}
|
|
}
|
|
|
|
// Get returns a namespace instance from kubernetes cluster
|
|
func (ns *namespace) Get(name string, options metav1.GetOptions) (*corev1.Namespace, error) {
|
|
cs, err := Clientset().Get()
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to get namespace: %s", name)
|
|
} else {
|
|
return cs.CoreV1().Namespaces().Get(name, options)
|
|
}
|
|
}
|
|
|
|
// List returns a slice of namespaces defined in a Kubernetes cluster
|
|
func (ns *namespace) List(options metav1.ListOptions) (*corev1.NamespaceList, error) {
|
|
cs, err := Clientset().Get()
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to get namespaces")
|
|
} else {
|
|
return cs.CoreV1().Namespaces().List(options)
|
|
}
|
|
}
|