Examples of DashboardSummaryResponse


Examples of org.graylog2.restclient.models.api.responses.dashboards.DashboardSummaryResponse

        this.dashboardFactory = dashboardFactory;
    }


    public Dashboard get(String id) throws APIException, IOException {
        DashboardSummaryResponse d = api.path(routes.DashboardsResource().get(id), DashboardSummaryResponse.class)
                .onlyMasterNode()
                .execute();
        return dashboardFactory.fromSummaryResponse(d);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.