monitoring dashboard dependency vendor

Signed-off-by: junotx <junotx@126.com>
This commit is contained in:
junotx
2021-03-12 16:58:19 +08:00
parent 4f5c1378f8
commit 0c1f994695
462 changed files with 44469 additions and 51096 deletions

View File

@@ -0,0 +1,110 @@
/*
Copyright 2020 The KubeSphere 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 (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"kubesphere.io/monitoring-dashboard/api/v1alpha1/panels"
)
// DashboardSpec defines the desired state of Dashboard
type DashboardSpec struct {
// Dashboard title
Title string `json:"title,omitempty"`
// Dashboard description
Description string `json:"description,omitempty"`
// Dashboard datasource
DataSource string `json:"datasource,omitempty"`
// Time range for display
Time Time `json:"time,omitempty"`
// Collection of panels. Panel is one of [Row](row.md), [Singlestat](#singlestat.md) or [Graph](graph.md)
Panels []Panel `json:"panels,omitempty"`
// Templating variables
Templatings []Templating `json:"templating,omitempty"`
}
// Time ranges of the metrics for display
type Time struct {
// Start time in the format of `^now([+-][0-9]+[smhdwMy])?$`, eg. `now-1M`.
// It denotes the end time is set to the last month since now.
From string `json:"from,omitempty"`
// End time in the format of `^now([+-][0-9]+[smhdwMy])?$`, eg. `now-1M`.
// It denotes the start time is set to the last month since now.
To string `json:"to,omitempty"`
}
// Supported panel type
type Panel struct {
// The panel row
Row panels.Row `json:",inline"`
// The panel graph
Graph panels.Graph `json:",inline"`
// The panel singlestat
SingleStat panels.SingleStat `json:",inline"`
}
// Templating defines a variable, which can be used as a placeholder in query
type Templating struct {
// Variable name
Name string `json:"name,omitempty"`
// Set variable values to be the return result of the query
Query string `json:"query,omitempty"`
}
// +kubebuilder:object:root=true
// Dashboard is the Schema for the dashboards API
type Dashboard struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec DashboardSpec `json:"spec,omitempty"`
}
// +kubebuilder:object:root=true
// DashboardList contains a list of Dashboard
type DashboardList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Dashboard `json:"items"`
}
// +kubebuilder:object:root=true
// +kubebuilder:resource:scope="Cluster"
// ClusterDashboard is the Schema for the culsterdashboards API
type ClusterDashboard struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec DashboardSpec `json:"spec,omitempty"`
}
// +kubebuilder:object:root=true
// ClusterDashboardList contains a list of ClusterDashboard
type ClusterDashboardList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []ClusterDashboard `json:"items"`
}
func init() {
SchemeBuilder.Register(&Dashboard{}, &DashboardList{})
SchemeBuilder.Register(&ClusterDashboard{}, &ClusterDashboardList{})
}

View File

@@ -0,0 +1,36 @@
/*
Copyright 2020 The KubeSphere 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 contains API Schema definitions for the monitoring v1alpha1 API group
// +kubebuilder:object:generate=true
// +groupName=monitoring.kubesphere.io
package v1alpha1
import (
"k8s.io/apimachinery/pkg/runtime/schema"
"sigs.k8s.io/controller-runtime/pkg/scheme"
)
var (
// GroupVersion is group version used to register these objects
GroupVersion = schema.GroupVersion{Group: "monitoring.kubesphere.io", Version: "v1alpha1"}
// SchemeBuilder is used to add go types to the GroupVersionKind scheme
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}
// AddToScheme adds the types in this group-version to the given scheme.
AddToScheme = SchemeBuilder.AddToScheme
)

View File

@@ -0,0 +1,15 @@
// +kubebuilder:object:generate=true
package panels
// Query editor options
type Target struct {
// Input for fetching metrics.
Expression string `json:"expr,omitempty"`
// Legend format for outputs. You can make a dynamic legend with templating variables.
LegendFormat string `json:"legendFormat,omitempty"`
// Reference ID
RefID int64 `json:"refId,omitempty"`
// Set series time interval
Step string `json:"step,omitempty"`
}

View File

@@ -0,0 +1,34 @@
// +kubebuilder:object:generate=true
package panels
// Graph visualizes range query results into a linear graph
type Graph struct {
// Name of the graph panel
Title string `json:"title,omitempty"`
// Must be `graph`
Type string `json:"type"`
// Panel ID
Id int64 `json:"id,omitempty"`
// Panel description
Description string `json:"description,omitempty"`
// A collection of queries
Targets []Target `json:"targets,omitempty"`
// Display as a bar chart
Bars bool `json:"bars,omitempty"`
// Set series color
Colors []string `json:"colors,omitempty"`
// Display as a line chart
Lines bool `json:"lines,omitempty"`
// Display as a stacked chart
Stack bool `json:"stack,omitempty"`
// Y-axis options
Yaxes []Yaxis `json:"yaxes,omitempty"`
}
type Yaxis struct {
// Limit the decimal numbers
Decimals int64 `json:"decimals,omitempty"`
// Display unit
Format string `json:"format,omitempty"`
}

View File

@@ -0,0 +1,13 @@
// +kubebuilder:object:generate=true
package panels
// Row groups relevant charts
type Row struct {
// Name of the row panel
Title string `json:"title,omitempty"`
// Must be `row`
Type string `json:"type"`
// Panel ID
Id int64 `json:"id,omitempty"`
}

View File

@@ -0,0 +1,19 @@
// +kubebuilder:object:generate=true
package panels
// SingleStat shows instant query result
type SingleStat struct {
// Name of the signlestat panel
Title string `json:"title,omitempty"`
// Must be `singlestat`
Type string `json:"type"`
// Panel ID
Id int64 `json:"id,omitempty"`
// A collection of queries
Targets []Target `json:"targets,omitempty"`
// Limit the decimal numbers
Decimals int64 `json:"decimals,omitempty"`
// Display unit
Format string `json:"format,omitempty"`
}

View File

@@ -0,0 +1,118 @@
// +build !ignore_autogenerated
/*
Copyright 2020 The KubeSphere 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.
*/
// Code generated by controller-gen. DO NOT EDIT.
package panels
import ()
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Graph) DeepCopyInto(out *Graph) {
*out = *in
if in.Targets != nil {
in, out := &in.Targets, &out.Targets
*out = make([]Target, len(*in))
copy(*out, *in)
}
if in.Colors != nil {
in, out := &in.Colors, &out.Colors
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Yaxes != nil {
in, out := &in.Yaxes, &out.Yaxes
*out = make([]Yaxis, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Graph.
func (in *Graph) DeepCopy() *Graph {
if in == nil {
return nil
}
out := new(Graph)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Row) DeepCopyInto(out *Row) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Row.
func (in *Row) DeepCopy() *Row {
if in == nil {
return nil
}
out := new(Row)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SingleStat) DeepCopyInto(out *SingleStat) {
*out = *in
if in.Targets != nil {
in, out := &in.Targets, &out.Targets
*out = make([]Target, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SingleStat.
func (in *SingleStat) DeepCopy() *SingleStat {
if in == nil {
return nil
}
out := new(SingleStat)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Target) DeepCopyInto(out *Target) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Target.
func (in *Target) DeepCopy() *Target {
if in == nil {
return nil
}
out := new(Target)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Yaxis) DeepCopyInto(out *Yaxis) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Yaxis.
func (in *Yaxis) DeepCopy() *Yaxis {
if in == nil {
return nil
}
out := new(Yaxis)
in.DeepCopyInto(out)
return out
}

View File

@@ -0,0 +1,217 @@
// +build !ignore_autogenerated
/*
Copyright 2020 The KubeSphere 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.
*/
// Code generated by controller-gen. DO NOT EDIT.
package v1alpha1
import (
runtime "k8s.io/apimachinery/pkg/runtime"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ClusterDashboard) DeepCopyInto(out *ClusterDashboard) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterDashboard.
func (in *ClusterDashboard) DeepCopy() *ClusterDashboard {
if in == nil {
return nil
}
out := new(ClusterDashboard)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *ClusterDashboard) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ClusterDashboardList) DeepCopyInto(out *ClusterDashboardList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]ClusterDashboard, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterDashboardList.
func (in *ClusterDashboardList) DeepCopy() *ClusterDashboardList {
if in == nil {
return nil
}
out := new(ClusterDashboardList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *ClusterDashboardList) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Dashboard) DeepCopyInto(out *Dashboard) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Dashboard.
func (in *Dashboard) DeepCopy() *Dashboard {
if in == nil {
return nil
}
out := new(Dashboard)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *Dashboard) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DashboardList) DeepCopyInto(out *DashboardList) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]Dashboard, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DashboardList.
func (in *DashboardList) DeepCopy() *DashboardList {
if in == nil {
return nil
}
out := new(DashboardList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *DashboardList) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *DashboardSpec) DeepCopyInto(out *DashboardSpec) {
*out = *in
out.Time = in.Time
if in.Panels != nil {
in, out := &in.Panels, &out.Panels
*out = make([]Panel, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Templatings != nil {
in, out := &in.Templatings, &out.Templatings
*out = make([]Templating, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DashboardSpec.
func (in *DashboardSpec) DeepCopy() *DashboardSpec {
if in == nil {
return nil
}
out := new(DashboardSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Panel) DeepCopyInto(out *Panel) {
*out = *in
out.Row = in.Row
in.Graph.DeepCopyInto(&out.Graph)
in.SingleStat.DeepCopyInto(&out.SingleStat)
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Panel.
func (in *Panel) DeepCopy() *Panel {
if in == nil {
return nil
}
out := new(Panel)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Templating) DeepCopyInto(out *Templating) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Templating.
func (in *Templating) DeepCopy() *Templating {
if in == nil {
return nil
}
out := new(Templating)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Time) DeepCopyInto(out *Time) {
*out = *in
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Time.
func (in *Time) DeepCopy() *Time {
if in == nil {
return nil
}
out := new(Time)
in.DeepCopyInto(out)
return out
}