Examples of MetricResource


Examples of org.springframework.xd.rest.domain.metrics.MetricResource

    return createResourceWithId(entity.getName(), entity);
  }

  @Override
  protected MetricResource instantiateResource(M entity) {
    return new MetricResource(entity.getName());
  }
View Full Code Here

Examples of org.springframework.xd.rest.domain.metrics.MetricResource

    boolean result = false;
    PagedResources<MetricResource> resources = xdTemplate.counterOperations().list();
    Iterator<MetricResource> resourceIter = resources.iterator();
    while (resourceIter.hasNext()) {
      MetricResource resource = resourceIter.next();
      if (name.equals(resource.getName())) {
        result = true;
        break;
      }
    }
    return result;
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.