blob: bb0d3ffa3f95b56db5e0c3f023b60cfbc30c18dc [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
# Dashboard Configuration provides the management capabilities for SkyWalking native UI.
type DashboardConfiguration {
# ID is a generated UUID.
id: String!
# JSON based configuration. The format of text is the export result on the UI page.
configuration: String!
}
extend type Query {
# Read an existing UI template according to given id.
getTemplate(id: String!): DashboardConfiguration
# Read all configuration templates。
getAllTemplates: [DashboardConfiguration!]!
}
# Used for add new template
input NewDashboardSetting {
# JSON based configuration. The format of text is the export result on the UI page.
configuration: String!
}
input DashboardSetting {
id: String!
# JSON based configuration. The format of text is the export result on the UI page.
configuration: String!
}
type TemplateChangeStatus {
id: String!
# True means change successfully.
status: Boolean!
message: String
}
# Template Management page provides the creation, update and deletion for the different template typs.
extend type Mutation {
addTemplate(setting: NewDashboardSetting!): TemplateChangeStatus!
changeTemplate(setting: DashboardSetting!): TemplateChangeStatus!
disableTemplate(id: String!): TemplateChangeStatus!
}