Search in sources :

Example 1 with SpaceResource

use of org.cloudfoundry.client.v2.spaces.SpaceResource in project promregator by promregator.

the class CFAccessorMock method retrieveSpaceId.

@Override
public Mono<ListSpacesResponse> retrieveSpaceId(String orgId, String spaceName) {
    if ("unittestspace".equals(spaceName) && orgId.equals(UNITTEST_ORG_UUID)) {
        SpaceResource sr = SpaceResource.builder().entity(SpaceEntity.builder().name(spaceName).build()).metadata(Metadata.builder().createdAt(CREATED_AT_TIMESTAMP).id(UNITTEST_SPACE_UUID).build()).build();
        List<SpaceResource> list = new LinkedList<>();
        list.add(sr);
        ListSpacesResponse resp = ListSpacesResponse.builder().addAllResources(list).build();
        return Mono.just(resp);
    }
    Assert.fail("Invalid SpaceId request");
    return null;
}
Also used : SpaceResource(org.cloudfoundry.client.v2.spaces.SpaceResource) LinkedList(java.util.LinkedList) ListSpacesResponse(org.cloudfoundry.client.v2.spaces.ListSpacesResponse)

Example 2 with SpaceResource

use of org.cloudfoundry.client.v2.spaces.SpaceResource in project promregator by promregator.

the class ReactiveAppInstanceScanner method getSpaceId.

private Mono<String> getSpaceId(Mono<String> orgIdMono, String spaceNameString) {
    String key = String.format("%d|%s", orgIdMono.hashCode(), spaceNameString);
    synchronized (key.intern()) {
        Mono<String> cached = this.spaceMap.get(key);
        if (cached != null) {
            this.internalMetrics.countHit("appinstancescanner.space");
            return cached;
        }
        this.internalMetrics.countMiss("appinstancescanner.space");
        ReactiveTimer reactiveTimer = new ReactiveTimer(this.internalMetrics, "space");
        cached = Mono.zip(orgIdMono, Mono.just(spaceNameString)).zipWith(Mono.just(reactiveTimer)).map(tuple -> {
            tuple.getT2().start();
            return tuple.getT1();
        }).flatMap(tuple -> {
            return this.cfAccessor.retrieveSpaceId(tuple.getT1(), tuple.getT2());
        }).flatMap(response -> {
            List<SpaceResource> resources = response.getResources();
            if (resources == null) {
                return Mono.empty();
            }
            if (resources.isEmpty()) {
                log.warn(String.format("Received empty result on requesting space %s", spaceNameString));
                return Mono.empty();
            }
            SpaceResource spaceResource = resources.get(0);
            return Mono.just(spaceResource.getMetadata().getId());
        }).zipWith(Mono.just(reactiveTimer)).map(tuple -> {
            tuple.getT2().stop();
            return tuple.getT1();
        }).cache();
        this.spaceMap.put(key, cached);
        return cached;
    }
}
Also used : RouteEntity(org.cloudfoundry.client.v2.routes.RouteEntity) Target(org.cloudfoundry.promregator.config.Target) Autowired(org.springframework.beans.factory.annotation.Autowired) SharedDomainEntity(org.cloudfoundry.client.v2.shareddomains.SharedDomainEntity) ListProcessesResponse(org.cloudfoundry.client.v3.processes.ListProcessesResponse) Mono(reactor.core.publisher.Mono) CFAccessor(org.cloudfoundry.promregator.cfaccessor.CFAccessor) SpaceResource(org.cloudfoundry.client.v2.spaces.SpaceResource) TimeUnit(java.util.concurrent.TimeUnit) Value(org.springframework.beans.factory.annotation.Value) PassiveExpiringMap(org.apache.commons.collections4.map.PassiveExpiringMap) Logger(org.apache.log4j.Logger) Flux(reactor.core.publisher.Flux) List(java.util.List) Component(org.springframework.stereotype.Component) ApplicationResource(org.cloudfoundry.client.v2.applications.ApplicationResource) Timer(io.prometheus.client.Histogram.Timer) ProcessResource(org.cloudfoundry.client.v3.processes.ProcessResource) PostConstruct(javax.annotation.PostConstruct) OrganizationResource(org.cloudfoundry.client.v2.organizations.OrganizationResource) LinkedList(java.util.LinkedList) InternalMetrics(org.cloudfoundry.promregator.internalmetrics.InternalMetrics) RouteMappingResource(org.cloudfoundry.client.v2.routemappings.RouteMappingResource) SpaceResource(org.cloudfoundry.client.v2.spaces.SpaceResource)

Aggregations

LinkedList (java.util.LinkedList)2 SpaceResource (org.cloudfoundry.client.v2.spaces.SpaceResource)2 Timer (io.prometheus.client.Histogram.Timer)1 List (java.util.List)1 TimeUnit (java.util.concurrent.TimeUnit)1 PostConstruct (javax.annotation.PostConstruct)1 PassiveExpiringMap (org.apache.commons.collections4.map.PassiveExpiringMap)1 Logger (org.apache.log4j.Logger)1 ApplicationResource (org.cloudfoundry.client.v2.applications.ApplicationResource)1 OrganizationResource (org.cloudfoundry.client.v2.organizations.OrganizationResource)1 RouteMappingResource (org.cloudfoundry.client.v2.routemappings.RouteMappingResource)1 RouteEntity (org.cloudfoundry.client.v2.routes.RouteEntity)1 SharedDomainEntity (org.cloudfoundry.client.v2.shareddomains.SharedDomainEntity)1 ListSpacesResponse (org.cloudfoundry.client.v2.spaces.ListSpacesResponse)1 ListProcessesResponse (org.cloudfoundry.client.v3.processes.ListProcessesResponse)1 ProcessResource (org.cloudfoundry.client.v3.processes.ProcessResource)1 CFAccessor (org.cloudfoundry.promregator.cfaccessor.CFAccessor)1 Target (org.cloudfoundry.promregator.config.Target)1 InternalMetrics (org.cloudfoundry.promregator.internalmetrics.InternalMetrics)1 Autowired (org.springframework.beans.factory.annotation.Autowired)1