Skip to content

caeops > dashboards

create

Description


This command helps to create a Dashboards Service. Run caeops dashboards create --help for more help.

Synopsis


  create
--name [value]
--data-source [value]
[--labels [value]]

Options


--name (string)

Name of Dashboards Service

--labels (list)

List of all the labels that you want to attach

--data-source (string)

Name of service for which you want to create Dashboards Service

Examples


To create a Dashboards Service.

The following dashboards create example creates a Dashboards Service.

caeops dashboards create --name=name --labels=[{owner=example},{env=dev}] --data-source=Dashboards-Service-Name

Output


Dashboards Service details -> (structure)

  • serviceName -> (string)
    Name of the Dashboards Service
  • serviceRegion -> (string)
    Region of Dashboards Service
  • serviceEndpoint -> (string)
    Endpoint of the Grafana Instance
  • serviceType -> (string)
    Type of the resource, dashboards-service for Dashboards Service
  • labels -> Structure

    • key -> (string) Name of the label

    • value -> (string) Value of the label

  • createdAt -> (long)
    Creation timestamp

  • updatedAt -> (long)
    Last modified timestamp
Back to top