Uses of Class
com.influxdb.client.domain.Dashboard
-
Uses of Dashboard in com.influxdb.client
Modifier and TypeMethodDescriptionDashboardsApi.createDashboard
(CreateDashboardRequest createDashboardRequest) Create a dashboard.DashboardsApi.createDashboard
(String name, String description, String orgID) Create a dashboard.DashboardsApi.findDashboardByID
(String dashboardID) Get a single Dashboard.DashboardsApi.replaceCells
(List<Cell> cells, Dashboard dashboard) Replace a dashboards cells.DashboardsApi.replaceCells
(List<Cell> cells, String dashboardID) Replace a dashboards cells.DashboardsApi.updateDashboard
(Dashboard dashboard) Update a single dashboard.Modifier and TypeMethodDescriptionDashboardsApi.findDashboards()
Get all dashboards.DashboardsApi.findDashboardsByOrganization
(Organization organization) Get dashboards.DashboardsApi.findDashboardsByOrgName
(String orgName) Get dashboards.Modifier and TypeMethodDescriptionDashboardsApi.addCell
(CreateCell createCell, Dashboard dashboard) Create a dashboard cell.DashboardsApi.addCellView
(View view, Cell cell, Dashboard dashboard) Add the view to a cell.Add a label to a dashboard.Add dashboard member.Add dashboard owner.void
DashboardsApi.deleteCell
(Cell cell, Dashboard dashboard) Delete a dashboard cell.void
DashboardsApi.deleteDashboard
(Dashboard dashboard) Delete a dashboard.void
DashboardsApi.deleteLabel
(Label label, Dashboard dashboard) Delete a label from a dashboard.void
DashboardsApi.deleteMember
(User member, Dashboard dashboard) Removes a member from an dashboard.void
DashboardsApi.deleteOwner
(User owner, Dashboard dashboard) Removes an owner from a dashboard.DashboardsApi.getCellView
(Cell cell, Dashboard dashboard) Retrieve the view for a cell in a dashboard.List all labels for a dashboard.DashboardsApi.getMembers
(Dashboard dashboard) List all dashboard members.List all dashboard owners.DashboardsApi.replaceCells
(List<Cell> cells, Dashboard dashboard) Replace a dashboards cells.DashboardsApi.updateCellView
(View view, Cell cell, Dashboard dashboard) Update the view for a cell.DashboardsApi.updateDashboard
(Dashboard dashboard) Update a single dashboard. -
Uses of Dashboard in com.influxdb.client.domain
Modifier and TypeMethodDescriptionDashboard.addCellsItem
(Cell cellsItem) Dashboard.addLabelsItem
(Label labelsItem) Dashboard.links
(DashboardLinks links) Dashboard.meta
(DashboardMeta meta) Modifier and TypeMethodDescriptionDashboards.dashboards
(List<Dashboard> dashboards) void
Dashboards.setDashboards
(List<Dashboard> dashboards) -
Uses of Dashboard in com.influxdb.client.service
Modifier and TypeMethodDescriptionretrofit2.Call
<Dashboard> DashboardsService.getDashboardsID
(String dashboardID, String zapTraceSpan, String include) Retrieve a Dashboardretrofit2.Call
<Dashboard> DashboardsService.patchDashboardsID
(String dashboardID, String zapTraceSpan, PatchDashboardRequest patchDashboardRequest) Update a dashboardretrofit2.Call
<Dashboard> DashboardsService.postDashboards
(CreateDashboardRequest createDashboardRequest, String zapTraceSpan) Create a dashboardretrofit2.Call
<Dashboard> CellsService.putDashboardsIDCells
(String dashboardID, List<Cell> cell, String zapTraceSpan) Replace cells in a dashboard Replaces all cells in a dashboard.retrofit2.Call
<Dashboard> DashboardsService.putDashboardsIDCells
(String dashboardID, List<Cell> cell, String zapTraceSpan) Replace cells in a dashboard Replaces all cells in a dashboard.