$ ./gradlew clean installDist Starting a Gradle Daemon, 1 incompatible Daemon could not be reused, use --status for details > Task :model:compileJava C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\attribute\Attribute.java:114: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated return getObjectValue().getString(TYPE_FIELD_NAME).flatMap(AssetModelUtil::getAttributeValueDescriptor); ^ C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\asset\agent\AgentResource.java:60: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated ProtocolDescriptor[] getSupportedProtocols( ^ C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\asset\agent\AgentResource.java:88: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated Map getAllSupportedProtocols( ^ C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\ModelModule.java:135: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated name -> AssetModelUtil.getAssetDescriptor(name).orElse(null), ^ C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\ModelModule.java:139: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated name -> AssetModelUtil.getAttributeDescriptor(name).orElse(null), ^ C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\ModelModule.java:143: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated name -> AssetModelUtil.getAttributeValueDescriptor(name).orElse(null), ^ C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\ModelModule.java:147: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated urn -> AssetModelUtil.getMetaItemDescriptor(urn).orElse(null), ^ C:\Users\Rene\openremote\model\src\main\java\org\openremote\model\value\Values.java:345: warning: [unchecked] unchecked cast return (T)v; ^ required: T found: Value where T is a type-variable: T extends Value declared in method convertToValueOrThrow(Object,ObjectWriter) 8 warnings > Task :client:compileJava C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:46: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\ProtocolDescriptorArrayMapper.java:26: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\ProtocolDescriptorMapMapper.java:24: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\ProtocolDiscoveryView.java:35: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\MetaEditor.java:30: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\ProtocolLinksEditor.java:26: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:95: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protected List protocolDescriptors = new ArrayList<>(); ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:240: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated Optional protocolDescriptor = protocolDescriptors == null ? ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:243: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated .filter(pd -> pd.getName().equals(type)) ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:531: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated .filter(protocolDescriptor -> protocolDescriptor.getName().equals(attribute.getValueAsString().orElse(""))) ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:534: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protocolDescriptor -> { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:633: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated requestParams -> agentResource.getSupportedProtocols(requestParams, assetId), ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:635: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protocolDescriptors -> { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:640: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated .sorted(Comparator.comparing(ProtocolDescriptor::getDisplayName)) ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:641: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated .forEach(protocolDescriptor -> displayNamesAndTypes ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:657: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protocolDescriptorMap -> { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:658: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protocolDescriptorMap.forEach((id, descriptors) -> { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:659: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated for (ProtocolDescriptor newDescriptor : descriptors) { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:660: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated if (this.protocolDescriptors.stream().noneMatch(pd -> pd.getName().equals(newDescriptor.getName()))) { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\asset\AssetEditActivity.java:676: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated for (ProtocolDescriptor descriptor : protocolDescriptors) { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\ProtocolDescriptorArrayMapper.java:30: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated extends ObjectMapper, ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\ProtocolDescriptorArrayMapper.java:31: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated EntityReader { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\ProtocolDescriptorArrayMapper.java:28: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated @JsonMixIns({@JsonMixIns.JsonMixIn(target = ProtocolDescriptor.class, mixIn = DefaultJsonMixin.class)}) ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\ProtocolDescriptorMapMapper.java:29: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated extends ObjectMapper>, ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\ProtocolDescriptorMapMapper.java:30: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated EntityReader> { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\ProtocolDiscoveryView.java:73: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protected final ProtocolDescriptor protocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\ProtocolDiscoveryView.java:86: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated ProtocolDescriptor protocolDescriptor, ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\MetaEditor.java:271: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protected Supplier> protocolDescriptorSupplier; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\MetaEditor.java:273: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated public MetaEditor(Environment environment, AttributeView.Style style, String existingItemsHeader, String newItemsHeader, AttributeView parentView, AssetAttribute attribute, Supplier> protocolDescriptorSupplier) { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\MetaEditor.java:295: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated .filter(protocolDescriptor -> protocolDescriptor ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\MetaEditor.java:299: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated .ifPresent(protocolDescriptor -> { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\MetaEditor.java:307: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated .forEach(protocolDescriptor -> { ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\ProtocolLinksEditor.java:31: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated protected final ProtocolDescriptor protocolDescriptor; ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\assets\attributes\ProtocolLinksEditor.java:40: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated ProtocolDescriptor protocolDescriptor, ^ C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\util\JsUtil.java:51: warning: [unchecked] unchecked call to toArray(T[]) as a member of the raw type List return ((List)obj).toArray(new Object[0]); ^ where T is a type-variable: T extends Object declared in method toArray(T[]) C:\Users\Rene\openremote\client\src\main\java\org\openremote\app\client\widget\AttributeLinkEditor.java:116: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated ) { ^ 36 warnings > Task :yarnInstall yarn install v1.22.4 [1/4] Resolving packages... warning samsam@1.1.3: This package has been deprecated in favour of @sinonjs/samsam warning Resolution field "supports-color@3.1.2" is incompatible with requested version "supports-color@^5.3.0" warning Resolution field "supports-color@3.1.2" is incompatible with requested version "supports-color@^6.1.0" warning Resolution field "supports-color@3.1.2" is incompatible with requested version "supports-color@^6.1.0" warning Resolution field "supports-color@3.1.2" is incompatible with requested version "supports-color@^6.1.0" warning Resolution field "supports-color@3.1.2" is incompatible with requested version "supports-color@^7.0.0" warning Resolution field "inherits@2.0.3" is incompatible with requested version "inherits@2.0.1" warning Resolution field "inherits@2.0.3" is incompatible with requested version "inherits@^2.0.4" warning Resolution field "inherits@2.0.3" is incompatible with requested version "inherits@2.0.4" warning Resolution field "inherits@2.0.3" is incompatible with requested version "inherits@^2.0.4" [2/4] Fetching packages... warning file-loader@2.0.0: Invalid bin field for "file-loader". warning url-loader@1.1.2: Invalid bin field for "url-loader". info fsevents@1.2.13: The platform "win32" is incompatible with this module. info "fsevents@1.2.13" is an optional dependency and failed compatibility check. Excluding it from installation. info fsevents@2.1.3: The platform "win32" is incompatible with this module. info "fsevents@2.1.3" is an optional dependency and failed compatibility check. Excluding it from installation. [3/4] Linking dependencies... [4/4] Building fresh packages... Done in 88.61s. > Task :container:compileJava C:\Users\Rene\openremote\container\src\main\java\org\openremote\container\security\keycloak\KeycloakIdentityProvider.java:266: warning: [deprecation] SimpleProxyClientProvider in io.undertow.server.handlers.proxy has been deprecated new io.undertow.server.handlers.proxy.SimpleProxyClientProvider(keycloakServiceUri.clone().replacePath("").build()), ^ C:\Users\Rene\openremote\container\src\main\java\org\openremote\container\security\keycloak\KeycloakIdentityProvider.java:265: warning: [deprecation] ProxyHandler(ProxyClient,int,HttpHandler) in ProxyHandler has been deprecated ProxyHandler proxyHandler = new ProxyHandler( ^ C:\Users\Rene\openremote\container\src\main\java\org\openremote\container\security\keycloak\KeycloakIdentityProvider.java:269: warning: [deprecation] setReuseXForwarded(boolean) in ProxyHandler has been deprecated ).setReuseXForwarded(true); ^ C:\Users\Rene\openremote\container\src\main\java\org\openremote\container\security\keycloak\SimpleKeycloakServletExtension.java:72: warning: [deprecation] create(String,FormParserFactory,Map) in AuthenticationMechanismFactory has been deprecated public AuthenticationMechanism create(String s, FormParserFactory formParserFactory, Map stringStringMap) { ^ 4 warnings > Task :agent:compileJava C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\AbstractProtocol.java:36: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\Protocol.java:33: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\AbstractProtocol.java:415: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated final public ProtocolDescriptor getProtocolDescriptor() { ^ C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\AbstractProtocol.java:416: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated return new ProtocolDescriptor( ^ C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\Protocol.java:465: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated ProtocolDescriptor getProtocolDescriptor(); ^ C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\tradfri\util\CoapClient.java:126: warning: [unchecked] unchecked cast if (responseType == String.class) return (T) responsePayload; ^ required: T found: String where T is a type-variable: T extends Object declared in method request(Request,String,Class) C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\tradfri\device\DeviceObserver.java:73: warning: [unchecked] unchecked call to isAssignableFrom(Class) as a member of the raw type Class if(eventHandler.getEventType().isAssignableFrom(event.getClass()) && !called.contains(eventHandler)){ ^ C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\tradfri\device\DeviceObserver.java:74: warning: [unchecked] unchecked call to handle(T) as a member of the raw type EventHandler eventHandler.handle(event); ^ where T is a type-variable: T extends Object declared in class EventHandler C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\tradfri\device\event\EventHandler.java:27: warning: [unchecked] unchecked cast return (Class) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0]; ^ required: Class found: Type where T is a type-variable: T extends Object declared in class EventHandler C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\tradfri\device\GatewayObserver.java:69: warning: [unchecked] unchecked call to isAssignableFrom(Class) as a member of the raw type Class if (eventHandler.getEventType().isAssignableFrom(event.getClass()) && !called.contains(eventHandler)) { ^ C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\tradfri\device\GatewayObserver.java:70: warning: [unchecked] unchecked call to handle(T) as a member of the raw type EventHandler eventHandler.handle(event); ^ where T is a type-variable: T extends Object declared in class EventHandler C:\Users\Rene\openremote\agent\src\main\java\org\openremote\agent\protocol\tradfri\TradfriProtocol.java:225: warning: [unchecked] unchecked cast HashMap removed = (HashMap) tradfriDevices.clone(); ^ required: HashMap found: Object 12 warnings > Task :manager:compileJava C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentConnector.java:26: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetProcessingService.java:47: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated import org.openremote.model.util.AssetModelUtil; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetStorageService.java:55: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated import org.openremote.model.util.AssetModelUtil; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:32: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated import org.openremote.model.asset.agent.ProtocolDescriptor; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelResourceImpl.java:32: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated import org.openremote.model.util.AssetModelUtil; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelService.java:30: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated import org.openremote.model.util.AssetModelUtil; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetResourceImpl.java:38: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated import org.openremote.model.util.AssetModelUtil; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetProcessingService.java:326: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.getAttributeDescriptor(oldAttribute.name).ifPresent(wellKnownAttribute -> { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentService.java:103: warning: [deprecation] LocalAgentConnector in org.openremote.manager.agent has been deprecated protected LocalAgentConnector localAgentConnector; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentService.java:128: warning: [deprecation] LocalAgentConnector in org.openremote.manager.agent has been deprecated localAgentConnector = new LocalAgentConnector(this); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentService.java:857: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated public Optional getAgentConnector(Asset agent) { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentService.java:1090: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated ProtocolDescriptor pd = protocol.getProtocolDescriptor(); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetStorageService.java:334: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated " ('" + Arrays.stream(AssetModelUtil.getMetaItemDescriptors()).filter(i -> i.getAccess().restrictedRead).map(MetaItemDescriptor::getUrn).collect(joining("','")) + "')"; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetStorageService.java:337: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated " ('" + Arrays.stream(AssetModelUtil.getMetaItemDescriptors()).filter(i -> i.getAccess().publicRead).map(MetaItemDescriptor::getUrn).collect(joining("','")) + "')"; ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:66: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated public ProtocolDescriptor[] getSupportedProtocols(RequestParams requestParams, String agentId) { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:67: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated return withAgentConnector(agentId, agentConnector -> { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:70: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated }, () -> new ProtocolDescriptor[0]); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:89: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated List result = withAgentConnector(agentId, agentConnector -> { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:101: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated public Map getAllSupportedProtocols(RequestParams requestParams) { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:102: warning: [deprecation] ProtocolDescriptor in org.openremote.model.asset.agent has been deprecated Map agentDescriptorMap = new HashMap<>(agentService.getAgents().size()); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:107: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated .map(agentConnector -> { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:127: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated return withAgentConnector(agentId, agentConnector -> agentConnector.value.validateProtocolConfiguration(protocolConfiguration), () -> null); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:143: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated agentConnector -> { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:171: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated agentConnector -> { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\agent\AgentResourceImpl.java:184: warning: [deprecation] AgentConnector in org.openremote.manager.agent has been deprecated protected T withAgentConnector(String agentId, Function, T> function, Supplier failureFunction) { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelResourceImpl.java:42: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated return AssetModelUtil.getAssetDescriptors(); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelResourceImpl.java:47: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated return AssetModelUtil.getAgentDescriptors(); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelResourceImpl.java:52: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated return AssetModelUtil.getAttributeDescriptors(); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelResourceImpl.java:57: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated return AssetModelUtil.getAttributeValueDescriptors(); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelResourceImpl.java:62: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated return AssetModelUtil.getMetaItemDescriptors(); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelService.java:76: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.setAgentDescriptors(agentDescriptors.toArray(new AgentDescriptor[0])); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelService.java:77: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.setAssetDescriptors(assetDescriptors.toArray(new AssetDescriptor[0])); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelService.java:78: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.setAttributeDescriptors(attributeDescriptors.toArray(new AttributeDescriptor[0])); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelService.java:79: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.setAttributeValueDescriptors(attributeValueDescriptors.toArray(new AttributeValueDescriptor[0])); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetModelService.java:80: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.setMetaItemDescriptors(metaItemDescriptors.toArray(new MetaItemDescriptor[0])); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetResourceImpl.java:300: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated existingMetaItems.removeIf(AssetModelUtil::isMetaItemRestrictedWrite); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetResourceImpl.java:303: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated updatedMetaItems.stream().filter(AssetModelUtil::isMetaItemRestrictedWrite).forEach(existingMetaItems::add); ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetResourceImpl.java:313: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated if (!AssetModelUtil.isMetaItemRestrictedWrite(metaItem)) { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetResourceImpl.java:366: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.getAttributeDescriptor(assetAttribute.name).ifPresent(wellKnownAttribute -> { ^ C:\Users\Rene\openremote\manager\src\main\java\org\openremote\manager\asset\AssetResourceImpl.java:467: warning: [deprecation] AssetModelUtil in org.openremote.model.util has been deprecated AssetModelUtil.getAssetDescriptor(asset.getType()).ifPresent(assetDescriptor -> { ^ 40 warnings > Task :ui:component:model:generateTypeScript Running TypeScriptGenerator version 2.13.489 Loading class EnumWithInterfacesExtension Loading class com.fasterxml.jackson.datatype.jdk8.Jdk8Module Loading class com.fasterxml.jackson.datatype.jsr310.JavaTimeModule Loading class com.fasterxml.jackson.module.paramnames.ParameterNamesModule Loading class org.openremote.model.ModelModule Scanning classpath Scanning finished in 1,15 seconds. Total number of classes: 21672. Found 332 classes matching pattern. Parsing 'org.openremote.model.AbstractValueHolder' Parsing 'org.openremote.model.AbstractValueTimestampHolder' Parsing 'org.openremote.model.Constants' Parsing 'org.openremote.model.HasUniqueResourceName' Parsing 'org.openremote.model.IdentifiableEntity' Parsing 'org.openremote.model.ModelModule' Parsing 'org.openremote.model.ModelModule$AttributeValueDescriptorSerializer' Parsing 'org.openremote.model.ModelModule$DescriptorDeserializer' Parsing 'org.openremote.model.ModelModule$PositionDeserializer' Parsing 'org.openremote.model.ModelModule$PositionSerializer' Parsing 'org.openremote.model.ModelModule$ValueJsonDeserializer' Parsing 'org.openremote.model.ModelModule$ValueJsonSerializer' Parsing 'org.openremote.model.ValidationFailure' Parsing 'org.openremote.model.ValidationFailure$Reason' Parsing 'org.openremote.model.ValidationFailure$ReasonImpl' Parsing 'org.openremote.model.ValueHolder' Parsing 'org.openremote.model.ValueHolder$ValueFailureReason' Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.apps.ConsoleAppConfig' Parsing 'org.openremote.model.apps.ConsoleAppConfig$MenuPosition' Parsing JAX-RS resource: org.openremote.model.apps.ConsoleAppResource Parsing 'org.openremote.model.asset.Asset' Parsing 'org.openremote.model.asset.Asset$AssetTypeFailureReason' Warning: 'org.openremote.model.asset.Asset$AssetTypeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.Asset$AssetTypeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.asset.AssetAttribute' Parsing 'org.openremote.model.asset.AssetDescriptor' Parsing 'org.openremote.model.asset.AssetDescriptorImpl' Parsing 'org.openremote.model.asset.AssetEvent' Parsing 'org.openremote.model.asset.AssetEvent$Cause' Parsing 'org.openremote.model.asset.AssetFilter' Parsing 'org.openremote.model.asset.AssetModelProvider' Parsing JAX-RS resource: org.openremote.model.asset.AssetModelResource Parsing JAX-RS resource: org.openremote.model.asset.AssetResource Parsing 'org.openremote.model.asset.AssetResource$Util' Parsing 'org.openremote.model.asset.AssetTreeModifiedEvent' Parsing 'org.openremote.model.asset.AssetTreeNode' Parsing 'org.openremote.model.asset.AssetType' Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.asset.AssetsEvent' Parsing 'org.openremote.model.asset.DefaultAssetModelProvider' Parsing 'org.openremote.model.asset.DeleteAssetsRequestEvent' Parsing 'org.openremote.model.asset.DeleteAssetsResponseEvent' Parsing 'org.openremote.model.asset.ElectricityChargerConnectionType' Parsing 'org.openremote.model.asset.ElectricityConsumerDemandResponseType' Parsing 'org.openremote.model.asset.ElectricityProducerOrientationType' Parsing 'org.openremote.model.asset.ReadAssetAttributeEvent' Parsing 'org.openremote.model.asset.ReadAssetEvent' Parsing 'org.openremote.model.asset.ReadAssetsEvent' Parsing 'org.openremote.model.asset.UserAsset' Parsing 'org.openremote.model.asset.UserAsset$Id' Parsing 'org.openremote.model.asset.agent.AgentDescriptor' Parsing 'org.openremote.model.asset.agent.AgentDescriptorImpl' Parsing 'org.openremote.model.asset.agent.AgentLink' Parsing JAX-RS resource: org.openremote.model.asset.agent.AgentResource Parsing 'org.openremote.model.asset.agent.AgentStatusEvent' Parsing 'org.openremote.model.asset.agent.ConnectionStatus' Parsing 'org.openremote.model.asset.agent.ProtocolConfiguration' Parsing 'org.openremote.model.asset.agent.ProtocolConfiguration$ValidationFailureReason' Warning: 'org.openremote.model.asset.agent.ProtocolConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.asset.agent.ProtocolDescriptor' Parsing 'org.openremote.model.attribute.Attribute' Parsing 'org.openremote.model.attribute.Attribute$AttributeFailureReason' Warning: 'org.openremote.model.attribute.Attribute$AttributeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.Attribute$AttributeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.Attribute$AttributeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.AttributeDescriptor' Parsing 'org.openremote.model.attribute.AttributeDescriptorImpl' Parsing 'org.openremote.model.attribute.AttributeEvent' Parsing 'org.openremote.model.attribute.AttributeEvent$Source' Parsing 'org.openremote.model.attribute.AttributeExecuteStatus' Parsing 'org.openremote.model.attribute.AttributeLink' Parsing 'org.openremote.model.attribute.AttributeLink$ConverterType' Parsing 'org.openremote.model.attribute.AttributeRef' Parsing 'org.openremote.model.attribute.AttributeState' Parsing 'org.openremote.model.attribute.AttributeType' Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.AttributeValidationResult' Parsing 'org.openremote.model.attribute.AttributeValueDescriptor' Parsing 'org.openremote.model.attribute.AttributeValueDescriptorImpl' Parsing 'org.openremote.model.attribute.AttributeValueType' Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.AttributeValueType$AttributeValueTypeFailureReason' Warning: 'org.openremote.model.attribute.AttributeValueType$AttributeValueTypeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.ColorRGB' Parsing 'org.openremote.model.attribute.LinkedAttributeDescriptor' Parsing 'org.openremote.model.attribute.MetaItem' Parsing 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.MetaItemDescriptor' Parsing 'org.openremote.model.attribute.MetaItemDescriptor$Access' Parsing 'org.openremote.model.attribute.MetaItemDescriptor$PatternFailure' Parsing 'org.openremote.model.attribute.MetaItemDescriptorImpl' Parsing 'org.openremote.model.attribute.MetaItemType' Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.calendar.CalendarEvent' Parsing 'org.openremote.model.console.ConsoleConfiguration' Parsing 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.console.ConsoleProvider' Parsing 'org.openremote.model.console.ConsoleRegistration' Parsing JAX-RS resource: org.openremote.model.console.ConsoleResource Parsing 'org.openremote.model.datapoint.AssetDatapoint' Parsing JAX-RS resource: org.openremote.model.datapoint.AssetDatapointResource Parsing 'org.openremote.model.datapoint.Datapoint' Parsing 'org.openremote.model.datapoint.DatapointInterval' Parsing 'org.openremote.model.datapoint.ValueDatapoint' Parsing 'org.openremote.model.event.Event' Parsing 'org.openremote.model.event.TriggeredEventSubscription' Parsing 'org.openremote.model.event.bus.EventBus' Parsing 'org.openremote.model.event.bus.EventListener' Parsing 'org.openremote.model.event.bus.EventRegistration' Parsing 'org.openremote.model.event.bus.VetoEventException' Parsing 'org.openremote.model.event.shared.AssetInfo' Parsing 'org.openremote.model.event.shared.CancelEventSubscription' Parsing 'org.openremote.model.event.shared.EventRequestResponseWrapper' Parsing 'org.openremote.model.event.shared.EventSubscription' Parsing 'org.openremote.model.event.shared.SharedEvent' Parsing 'org.openremote.model.event.shared.TenantScopedEvent' Parsing 'org.openremote.model.event.shared.UnauthorizedEventSubscription' Parsing 'org.openremote.model.file.FileInfo' Parsing JAX-RS resource: org.openremote.model.gateway.GatewayClientResource Parsing 'org.openremote.model.gateway.GatewayConnection' Parsing 'org.openremote.model.gateway.GatewayConnectionStatusEvent' Parsing 'org.openremote.model.gateway.GatewayDisconnectEvent' Parsing 'org.openremote.model.gateway.GatewayDisconnectEvent$Reason' Parsing 'org.openremote.model.geo.GeoJSON' Parsing 'org.openremote.model.geo.GeoJSONFeature' Parsing 'org.openremote.model.geo.GeoJSONFeatureCollection' Parsing 'org.openremote.model.geo.GeoJSONGeometry' Parsing 'org.openremote.model.geo.GeoJSONPoint' Parsing 'org.openremote.model.geo.Position' Parsing 'org.openremote.model.http.BadRequestError' Parsing 'org.openremote.model.http.ConflictRequestError' Parsing 'org.openremote.model.http.EntityMarshallingRequestError' Parsing 'org.openremote.model.http.NoResponseError' Parsing 'org.openremote.model.http.NotFoundRequestError' Parsing 'org.openremote.model.http.Request' Parsing 'org.openremote.model.http.Request$XMLHttpRequest' Parsing 'org.openremote.model.http.RequestCallback' Parsing 'org.openremote.model.http.RequestError' Parsing 'org.openremote.model.http.RequestParams' Parsing 'org.openremote.model.http.UnauthorizedRequestError' Parsing 'org.openremote.model.http.UnexpectedStatusRequestError' Parsing JAX-RS resource: org.openremote.model.map.MapResource Parsing 'org.openremote.model.notification.AbstractNotificationMessage' Parsing 'org.openremote.model.notification.EmailNotificationMessage' Parsing 'org.openremote.model.notification.EmailNotificationMessage$Recipient' Parsing 'org.openremote.model.notification.Notification' Parsing 'org.openremote.model.notification.Notification$Source' Parsing 'org.openremote.model.notification.Notification$Target' Parsing 'org.openremote.model.notification.Notification$TargetType' Parsing JAX-RS resource: org.openremote.model.notification.NotificationResource Parsing 'org.openremote.model.notification.NotificationSendResult' Parsing 'org.openremote.model.notification.PushNotificationAction' Parsing 'org.openremote.model.notification.PushNotificationButton' Parsing 'org.openremote.model.notification.PushNotificationMessage' Parsing 'org.openremote.model.notification.PushNotificationMessage$MessagePriority' Parsing 'org.openremote.model.notification.PushNotificationMessage$TargetType' Parsing 'org.openremote.model.notification.RepeatFrequency' Parsing 'org.openremote.model.notification.SentNotification' Parsing 'org.openremote.model.predicted.AssetPredictedDatapoint' Parsing JAX-RS resource: org.openremote.model.predicted.AssetPredictedDatapointResource Parsing 'org.openremote.model.query.AssetQuery' Parsing 'org.openremote.model.query.AssetQuery$Access' Parsing 'org.openremote.model.query.AssetQuery$Match' Parsing 'org.openremote.model.query.AssetQuery$NumberType' Parsing 'org.openremote.model.query.AssetQuery$Operator' Parsing 'org.openremote.model.query.AssetQuery$OrderBy' Parsing 'org.openremote.model.query.AssetQuery$OrderBy$Property' Parsing 'org.openremote.model.query.AssetQuery$Select' Parsing 'org.openremote.model.query.LogicGroup' Parsing 'org.openremote.model.query.LogicGroup$Operator' Parsing 'org.openremote.model.query.RulesetQuery' Parsing 'org.openremote.model.query.UserQuery' Parsing 'org.openremote.model.query.filter.ArrayPredicate' Parsing 'org.openremote.model.query.filter.AttributePredicate' Parsing 'org.openremote.model.query.filter.BooleanPredicate' Parsing 'org.openremote.model.query.filter.CalendarEventPredicate' Parsing 'org.openremote.model.query.filter.DateTimePredicate' Parsing 'org.openremote.model.query.filter.GeofencePredicate' Parsing 'org.openremote.model.query.filter.LocationAttributePredicate' Parsing 'org.openremote.model.query.filter.MetaPredicate' Parsing 'org.openremote.model.query.filter.NewAttributePredicate' Parsing 'org.openremote.model.query.filter.NumberPredicate' Parsing 'org.openremote.model.query.filter.ObjectValueKeyPredicate' Parsing 'org.openremote.model.query.filter.ParentPredicate' Parsing 'org.openremote.model.query.filter.PathPredicate' Parsing 'org.openremote.model.query.filter.RadialGeofencePredicate' Parsing 'org.openremote.model.query.filter.RectangularGeofencePredicate' Parsing 'org.openremote.model.query.filter.RefPredicate' Parsing 'org.openremote.model.query.filter.StringArrayPredicate' Parsing 'org.openremote.model.query.filter.StringPredicate' Parsing 'org.openremote.model.query.filter.TenantPredicate' Parsing 'org.openremote.model.query.filter.UserAssetPredicate' Parsing 'org.openremote.model.query.filter.ValueEmptyPredicate' Parsing 'org.openremote.model.query.filter.ValueNotEmptyPredicate' Parsing 'org.openremote.model.query.filter.ValuePredicate' Parsing 'org.openremote.model.rules.AssetRuleset' Parsing 'org.openremote.model.rules.AssetState' Parsing 'org.openremote.model.rules.Assets' Parsing 'org.openremote.model.rules.GlobalRuleset' Parsing 'org.openremote.model.rules.HistoricDatapoints' Parsing 'org.openremote.model.rules.Notifications' Parsing 'org.openremote.model.rules.PredictedDatapoints' Parsing 'org.openremote.model.rules.RulesEngineInfo' Parsing 'org.openremote.model.rules.RulesEngineStatus' Parsing 'org.openremote.model.rules.RulesEngineStatusEvent' Parsing JAX-RS resource: org.openremote.model.rules.RulesResource Parsing 'org.openremote.model.rules.Ruleset' Parsing 'org.openremote.model.rules.Ruleset$Lang' Parsing 'org.openremote.model.rules.RulesetChangedEvent' Parsing 'org.openremote.model.rules.RulesetStatus' Parsing 'org.openremote.model.rules.TemporaryFact' Parsing 'org.openremote.model.rules.TenantRuleset' Parsing 'org.openremote.model.rules.Users' Parsing 'org.openremote.model.rules.flow.AssetAttributeInternalValue' Parsing JAX-RS resource: org.openremote.model.rules.flow.FlowResource Parsing 'org.openremote.model.rules.flow.Node' Parsing 'org.openremote.model.rules.flow.NodeCollection' Parsing 'org.openremote.model.rules.flow.NodeConnection' Parsing 'org.openremote.model.rules.flow.NodeDataType' Parsing 'org.openremote.model.rules.flow.NodeInternal' Parsing 'org.openremote.model.rules.flow.NodePosition' Parsing 'org.openremote.model.rules.flow.NodeSocket' Parsing 'org.openremote.model.rules.flow.NodeType' Parsing 'org.openremote.model.rules.flow.Option' Parsing 'org.openremote.model.rules.flow.Picker' Parsing 'org.openremote.model.rules.flow.PickerType' Parsing 'org.openremote.model.rules.geofence.GeofenceDefinition' Parsing 'org.openremote.model.rules.json.JsonRule' Parsing 'org.openremote.model.rules.json.JsonRulesetDefinition' Parsing 'org.openremote.model.rules.json.RuleAction' Parsing 'org.openremote.model.rules.json.RuleActionNotification' Parsing 'org.openremote.model.rules.json.RuleActionTarget' Parsing 'org.openremote.model.rules.json.RuleActionUpdateAttribute' Parsing 'org.openremote.model.rules.json.RuleActionUpdateAttribute$UpdateAction' Parsing 'org.openremote.model.rules.json.RuleActionWait' Parsing 'org.openremote.model.rules.json.RuleActionWriteAttribute' Parsing 'org.openremote.model.rules.json.RuleCondition' Parsing 'org.openremote.model.rules.json.RuleRecurrence' Parsing 'org.openremote.model.rules.json.RuleRecurrence$Scope' Parsing 'org.openremote.model.rules.json.RuleTemplate' Parsing 'org.openremote.model.security.ClientRole' Parsing 'org.openremote.model.security.Credential' Parsing 'org.openremote.model.security.Role' Parsing 'org.openremote.model.security.Tenant' Parsing JAX-RS resource: org.openremote.model.security.TenantResource Parsing 'org.openremote.model.security.User' Parsing 'org.openremote.model.security.UserPasswordCredentials' Parsing JAX-RS resource: org.openremote.model.security.UserResource Parsing 'org.openremote.model.simulator.RequestSimulatorState' Parsing 'org.openremote.model.simulator.SimulatorElement' Parsing 'org.openremote.model.simulator.SimulatorState' Parsing 'org.openremote.model.simulator.SimulatorState$ConfigurationFilter' Parsing 'org.openremote.model.simulator.element.ColorSimulatorElement' Parsing 'org.openremote.model.simulator.element.NumberSimulatorElement' Parsing 'org.openremote.model.simulator.element.ReplaySimulatorElement' Parsing 'org.openremote.model.simulator.element.ReplaySimulatorElement$ReplaySimulatorDatapoint' Parsing 'org.openremote.model.simulator.element.SwitchSimulatorElement' Parsing 'org.openremote.model.syslog.SyslogCategory' Parsing 'org.openremote.model.syslog.SyslogConfig' Parsing 'org.openremote.model.syslog.SyslogEvent' Parsing 'org.openremote.model.syslog.SyslogEvent$LevelCategoryFilter' Parsing 'org.openremote.model.syslog.SyslogLevel' Parsing JAX-RS resource: org.openremote.model.syslog.SyslogResource Parsing 'org.openremote.model.system.HealthStatusProvider' Parsing JAX-RS resource: org.openremote.model.system.StatusResource Parsing 'org.openremote.model.validation.ConstraintViolation' Parsing 'org.openremote.model.validation.ConstraintViolation$Type' Parsing 'org.openremote.model.validation.ConstraintViolationReport' Parsing 'org.openremote.model.value.JsonPathFilter' Parsing 'org.openremote.model.value.RegexValueFilter' Parsing 'org.openremote.model.value.SubStringValueFilter' Parsing 'org.openremote.model.value.ValueException' Parsing 'org.openremote.model.value.ValueFactory' Parsing 'org.openremote.model.value.ValueFilter' Parsing 'org.openremote.model.value.ValueType' Parsing 'org.openremote.model.value.Values' Parsing 'com.fasterxml.jackson.core.Version' used in 'ModelModule._version' Parsing 'com.fasterxml.jackson.databind.module.SimpleSerializers' used in 'ModelModule._serializers' Parsing 'com.fasterxml.jackson.databind.module.SimpleDeserializers' used in 'ModelModule._deserializers' Parsing 'com.fasterxml.jackson.databind.module.SimpleKeyDeserializers' used in 'ModelModule._keyDeserializers' Parsing 'com.fasterxml.jackson.databind.module.SimpleAbstractTypeResolver' used in 'ModelModule._abstractTypes' Parsing 'com.fasterxml.jackson.databind.module.SimpleValueInstantiators' used in 'ModelModule._valueInstantiators' Parsing 'com.fasterxml.jackson.databind.deser.BeanDeserializerModifier' used in 'ModelModule._deserializerModifier' Parsing 'com.fasterxml.jackson.databind.ser.BeanSerializerModifier' used in 'ModelModule._serializerModifier' Parsing 'java.lang.Class' used in 'ModelModule._mixins' Parsing 'com.fasterxml.jackson.databind.jsontype.NamedType' used in 'ModelModule._subtypes' Parsing 'com.fasterxml.jackson.databind.PropertyNamingStrategy' used in 'ModelModule._namingStrategy' Parsing 'com.fasterxml.jackson.databind.module.SimpleModule' used in 'ModelModule.' Parsing 'java.util.function.Function' used in 'DescriptorDeserializer.descriptorNameFinder' Parsing 'java.io.Serializable' used in 'Id.' Parsing 'java.lang.Throwable' used in 'VetoEventException.cause' Parsing 'java.lang.StackTraceElement' used in 'VetoEventException.stackTrace' Parsing 'java.lang.RuntimeException' used in 'VetoEventException.' Parsing 'javax.ws.rs.core.UriInfo' used in 'RequestParams.uriInfo' Parsing 'java.util.regex.Pattern' used in 'RegexValueFilter.pattern' Parsing 'com.fasterxml.jackson.databind.JsonSerializer' used in 'SimpleSerializers._classMappings' Parsing 'com.fasterxml.jackson.databind.ser.Serializers$Base' used in 'SimpleSerializers.' Parsing 'com.fasterxml.jackson.databind.JsonDeserializer' used in 'SimpleDeserializers._classMappings' Parsing 'com.fasterxml.jackson.databind.deser.Deserializers' used in 'SimpleDeserializers.' Parsing 'com.fasterxml.jackson.databind.KeyDeserializer' used in 'SimpleKeyDeserializers._classMappings' Parsing 'com.fasterxml.jackson.databind.deser.KeyDeserializers' used in 'SimpleKeyDeserializers.' Parsing 'com.fasterxml.jackson.databind.AbstractTypeResolver' used in 'SimpleAbstractTypeResolver.' Parsing 'com.fasterxml.jackson.databind.deser.ValueInstantiator' used in 'SimpleValueInstantiators._classMappings' Parsing 'com.fasterxml.jackson.databind.deser.ValueInstantiators$Base' used in 'SimpleValueInstantiators.' Parsing 'java.lang.reflect.GenericDeclaration' used in 'Class.' Parsing 'java.lang.reflect.Type' used in 'Class.' Parsing 'java.lang.reflect.AnnotatedElement' used in 'Class.' Parsing 'com.fasterxml.jackson.databind.Module' used in 'SimpleModule.' Parsing 'com.fasterxml.jackson.databind.deser.std.StdDeserializer' used in 'ValueJsonDeserializer.' Parsing 'java.lang.Exception' used in 'RuntimeException.' Parsing 'java.lang.Comparable' used in 'AssetState.' Parsing 'com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable' used in 'JsonSerializer.' Parsing 'com.fasterxml.jackson.databind.ser.Serializers' used in 'Base.' Parsing 'com.fasterxml.jackson.databind.deser.NullValueProvider' used in 'JsonDeserializer.' Parsing 'com.fasterxml.jackson.databind.deser.ValueInstantiators' used in 'Base.' Parsing 'com.fasterxml.jackson.core.Versioned' used in 'Module.' Writing declarations to: C:\Users\Rene\openremote\ui\component\model\src\index.ts > Task :ui:component:rest:generateTypescriptModelInfo Running TypeScriptGenerator version 2.13.489 Loading class com.fasterxml.jackson.datatype.jdk8.Jdk8Module Loading class com.fasterxml.jackson.datatype.jsr310.JavaTimeModule Loading class com.fasterxml.jackson.module.paramnames.ParameterNamesModule Loading class org.openremote.model.ModelModule Scanning classpath Scanning finished in 0,56 seconds. Total number of classes: 21668. Found 332 classes matching pattern. Parsing 'org.openremote.model.AbstractValueHolder' Parsing 'org.openremote.model.AbstractValueTimestampHolder' Parsing 'org.openremote.model.Constants' Parsing 'org.openremote.model.IdentifiableEntity' Parsing 'org.openremote.model.ModelModule' Parsing 'org.openremote.model.ModelModule$AttributeValueDescriptorSerializer' Parsing 'org.openremote.model.ModelModule$DescriptorDeserializer' Parsing 'org.openremote.model.ModelModule$PositionDeserializer' Parsing 'org.openremote.model.ModelModule$PositionSerializer' Parsing 'org.openremote.model.ModelModule$ValueJsonDeserializer' Parsing 'org.openremote.model.ModelModule$ValueJsonSerializer' Parsing 'org.openremote.model.ValidationFailure' Parsing 'org.openremote.model.ValidationFailure$Reason' Parsing 'org.openremote.model.ValidationFailure$ReasonImpl' Parsing 'org.openremote.model.ValueHolder' Parsing 'org.openremote.model.ValueHolder$ValueFailureReason' Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.ValueHolder$ValueFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.apps.ConsoleAppConfig' Parsing 'org.openremote.model.apps.ConsoleAppConfig$MenuPosition' Parsing JAX-RS resource: org.openremote.model.apps.ConsoleAppResource Parsing 'org.openremote.model.asset.Asset' Parsing 'org.openremote.model.asset.Asset$AssetTypeFailureReason' Warning: 'org.openremote.model.asset.Asset$AssetTypeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.Asset$AssetTypeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.asset.AssetAttribute' Parsing 'org.openremote.model.asset.AssetDescriptor' Parsing 'org.openremote.model.asset.AssetDescriptorImpl' Parsing 'org.openremote.model.asset.AssetEvent' Parsing 'org.openremote.model.asset.AssetEvent$Cause' Parsing 'org.openremote.model.asset.AssetFilter' Parsing 'org.openremote.model.asset.AssetModelProvider' Parsing JAX-RS resource: org.openremote.model.asset.AssetModelResource Parsing JAX-RS resource: org.openremote.model.asset.AssetResource Parsing 'org.openremote.model.asset.AssetTreeModifiedEvent' Parsing 'org.openremote.model.asset.AssetTreeNode' Parsing 'org.openremote.model.asset.AssetType' Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.asset.AssetsEvent' Parsing 'org.openremote.model.asset.DefaultAssetModelProvider' Parsing 'org.openremote.model.asset.DeleteAssetsRequestEvent' Parsing 'org.openremote.model.asset.DeleteAssetsResponseEvent' Parsing 'org.openremote.model.asset.ElectricityChargerConnectionType' Parsing 'org.openremote.model.asset.ElectricityConsumerDemandResponseType' Parsing 'org.openremote.model.asset.ElectricityProducerOrientationType' Parsing 'org.openremote.model.asset.ReadAssetAttributeEvent' Parsing 'org.openremote.model.asset.ReadAssetEvent' Parsing 'org.openremote.model.asset.ReadAssetsEvent' Parsing 'org.openremote.model.asset.UserAsset' Parsing 'org.openremote.model.asset.UserAsset$Id' Parsing 'org.openremote.model.asset.agent.AgentDescriptor' Parsing 'org.openremote.model.asset.agent.AgentDescriptorImpl' Parsing 'org.openremote.model.asset.agent.AgentLink' Parsing JAX-RS resource: org.openremote.model.asset.agent.AgentResource Parsing 'org.openremote.model.asset.agent.AgentStatusEvent' Parsing 'org.openremote.model.asset.agent.ConnectionStatus' Parsing 'org.openremote.model.asset.agent.ProtocolConfiguration' Parsing 'org.openremote.model.asset.agent.ProtocolConfiguration$ValidationFailureReason' Warning: 'org.openremote.model.asset.agent.ProtocolConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.asset.agent.ProtocolDescriptor' Parsing 'org.openremote.model.attribute.Attribute' Parsing 'org.openremote.model.attribute.Attribute$AttributeFailureReason' Warning: 'org.openremote.model.attribute.Attribute$AttributeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.Attribute$AttributeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.Attribute$AttributeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.AttributeDescriptor' Parsing 'org.openremote.model.attribute.AttributeDescriptorImpl' Parsing 'org.openremote.model.attribute.AttributeEvent' Parsing 'org.openremote.model.attribute.AttributeEvent$Source' Parsing 'org.openremote.model.attribute.AttributeExecuteStatus' Parsing 'org.openremote.model.attribute.AttributeLink' Parsing 'org.openremote.model.attribute.AttributeLink$ConverterType' Parsing 'org.openremote.model.attribute.AttributeRef' Parsing 'org.openremote.model.attribute.AttributeState' Parsing 'org.openremote.model.attribute.AttributeType' Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.AttributeValidationResult' Parsing 'org.openremote.model.attribute.AttributeValueDescriptor' Parsing 'org.openremote.model.attribute.AttributeValueDescriptorImpl' Parsing 'org.openremote.model.attribute.AttributeValueType' Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.AttributeValueType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.AttributeValueType$AttributeValueTypeFailureReason' Warning: 'org.openremote.model.attribute.AttributeValueType$AttributeValueTypeFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.ColorRGB' Parsing 'org.openremote.model.attribute.LinkedAttributeDescriptor' Parsing 'org.openremote.model.attribute.MetaItem' Parsing 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItem$MetaItemFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.attribute.MetaItemDescriptor' Parsing 'org.openremote.model.attribute.MetaItemDescriptor$Access' Parsing 'org.openremote.model.attribute.MetaItemDescriptor$PatternFailure' Parsing 'org.openremote.model.attribute.MetaItemDescriptorImpl' Parsing 'org.openremote.model.attribute.MetaItemType' Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.attribute.MetaItemType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.calendar.CalendarEvent' Parsing 'org.openremote.model.console.ConsoleConfiguration' Parsing 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.console.ConsoleConfiguration$ValidationFailureReason' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'org.openremote.model.console.ConsoleProvider' Parsing 'org.openremote.model.console.ConsoleRegistration' Parsing JAX-RS resource: org.openremote.model.console.ConsoleResource Parsing 'org.openremote.model.datapoint.AssetDatapoint' Parsing JAX-RS resource: org.openremote.model.datapoint.AssetDatapointResource Parsing 'org.openremote.model.datapoint.Datapoint' Parsing 'org.openremote.model.datapoint.DatapointInterval' Parsing 'org.openremote.model.datapoint.ValueDatapoint' Parsing 'org.openremote.model.event.Event' Parsing 'org.openremote.model.event.TriggeredEventSubscription' Parsing 'org.openremote.model.event.bus.EventBus' Parsing 'org.openremote.model.event.bus.EventListener' Parsing 'org.openremote.model.event.bus.EventRegistration' Parsing 'org.openremote.model.event.bus.VetoEventException' Parsing 'org.openremote.model.event.shared.AssetInfo' Parsing 'org.openremote.model.event.shared.CancelEventSubscription' Parsing 'org.openremote.model.event.shared.EventRequestResponseWrapper' Parsing 'org.openremote.model.event.shared.EventSubscription' Parsing 'org.openremote.model.event.shared.SharedEvent' Parsing 'org.openremote.model.event.shared.TenantScopedEvent' Parsing 'org.openremote.model.event.shared.UnauthorizedEventSubscription' Parsing 'org.openremote.model.file.FileInfo' Parsing JAX-RS resource: org.openremote.model.gateway.GatewayClientResource Parsing 'org.openremote.model.gateway.GatewayConnection' Parsing 'org.openremote.model.gateway.GatewayConnectionStatusEvent' Parsing 'org.openremote.model.gateway.GatewayDisconnectEvent' Parsing 'org.openremote.model.gateway.GatewayDisconnectEvent$Reason' Parsing 'org.openremote.model.geo.GeoJSON' Parsing 'org.openremote.model.geo.GeoJSONFeature' Parsing 'org.openremote.model.geo.GeoJSONFeatureCollection' Parsing 'org.openremote.model.geo.GeoJSONGeometry' Parsing 'org.openremote.model.geo.GeoJSONPoint' Parsing 'org.openremote.model.geo.Position' Parsing 'org.openremote.model.http.BadRequestError' Parsing 'org.openremote.model.http.ConflictRequestError' Parsing 'org.openremote.model.http.EntityMarshallingRequestError' Parsing 'org.openremote.model.http.NoResponseError' Parsing 'org.openremote.model.http.NotFoundRequestError' Parsing 'org.openremote.model.http.Request' Parsing 'org.openremote.model.http.Request$XMLHttpRequest' Parsing 'org.openremote.model.http.RequestCallback' Parsing 'org.openremote.model.http.RequestError' Parsing 'org.openremote.model.http.RequestParams' Parsing 'org.openremote.model.http.UnauthorizedRequestError' Parsing 'org.openremote.model.http.UnexpectedStatusRequestError' Parsing JAX-RS resource: org.openremote.model.map.MapResource Parsing 'org.openremote.model.notification.AbstractNotificationMessage' Parsing 'org.openremote.model.notification.EmailNotificationMessage' Parsing 'org.openremote.model.notification.EmailNotificationMessage$Recipient' Parsing 'org.openremote.model.notification.Notification' Parsing 'org.openremote.model.notification.Notification$Source' Parsing 'org.openremote.model.notification.Notification$Target' Parsing 'org.openremote.model.notification.Notification$TargetType' Parsing JAX-RS resource: org.openremote.model.notification.NotificationResource Parsing 'org.openremote.model.notification.NotificationSendResult' Parsing 'org.openremote.model.notification.PushNotificationAction' Parsing 'org.openremote.model.notification.PushNotificationButton' Parsing 'org.openremote.model.notification.PushNotificationMessage' Parsing 'org.openremote.model.notification.PushNotificationMessage$MessagePriority' Parsing 'org.openremote.model.notification.PushNotificationMessage$TargetType' Parsing 'org.openremote.model.notification.RepeatFrequency' Parsing 'org.openremote.model.notification.SentNotification' Parsing 'org.openremote.model.predicted.AssetPredictedDatapoint' Parsing JAX-RS resource: org.openremote.model.predicted.AssetPredictedDatapointResource Parsing 'org.openremote.model.query.AssetQuery' Parsing 'org.openremote.model.query.AssetQuery$Access' Parsing 'org.openremote.model.query.AssetQuery$Match' Parsing 'org.openremote.model.query.AssetQuery$NumberType' Parsing 'org.openremote.model.query.AssetQuery$Operator' Parsing 'org.openremote.model.query.AssetQuery$OrderBy' Parsing 'org.openremote.model.query.AssetQuery$OrderBy$Property' Parsing 'org.openremote.model.query.AssetQuery$Select' Parsing 'org.openremote.model.query.LogicGroup' Parsing 'org.openremote.model.query.LogicGroup$Operator' Parsing 'org.openremote.model.query.RulesetQuery' Parsing 'org.openremote.model.query.UserQuery' Parsing 'org.openremote.model.query.filter.ArrayPredicate' Parsing 'org.openremote.model.query.filter.AttributePredicate' Parsing 'org.openremote.model.query.filter.BooleanPredicate' Parsing 'org.openremote.model.query.filter.CalendarEventPredicate' Parsing 'org.openremote.model.query.filter.DateTimePredicate' Parsing 'org.openremote.model.query.filter.GeofencePredicate' Parsing 'org.openremote.model.query.filter.LocationAttributePredicate' Parsing 'org.openremote.model.query.filter.MetaPredicate' Parsing 'org.openremote.model.query.filter.NewAttributePredicate' Parsing 'org.openremote.model.query.filter.NumberPredicate' Parsing 'org.openremote.model.query.filter.ObjectValueKeyPredicate' Parsing 'org.openremote.model.query.filter.ParentPredicate' Parsing 'org.openremote.model.query.filter.PathPredicate' Parsing 'org.openremote.model.query.filter.RadialGeofencePredicate' Parsing 'org.openremote.model.query.filter.RectangularGeofencePredicate' Parsing 'org.openremote.model.query.filter.RefPredicate' Parsing 'org.openremote.model.query.filter.StringArrayPredicate' Parsing 'org.openremote.model.query.filter.StringPredicate' Parsing 'org.openremote.model.query.filter.TenantPredicate' Parsing 'org.openremote.model.query.filter.UserAssetPredicate' Parsing 'org.openremote.model.query.filter.ValueEmptyPredicate' Parsing 'org.openremote.model.query.filter.ValueNotEmptyPredicate' Parsing 'org.openremote.model.query.filter.ValuePredicate' Parsing 'org.openremote.model.rules.AssetRuleset' Parsing 'org.openremote.model.rules.AssetState' Parsing 'org.openremote.model.rules.Assets' Parsing 'org.openremote.model.rules.GlobalRuleset' Parsing 'org.openremote.model.rules.HistoricDatapoints' Parsing 'org.openremote.model.rules.Notifications' Parsing 'org.openremote.model.rules.PredictedDatapoints' Parsing 'org.openremote.model.rules.RulesEngineInfo' Parsing 'org.openremote.model.rules.RulesEngineStatus' Parsing 'org.openremote.model.rules.RulesEngineStatusEvent' Parsing JAX-RS resource: org.openremote.model.rules.RulesResource Parsing 'org.openremote.model.rules.Ruleset' Parsing 'org.openremote.model.rules.Ruleset$Lang' Parsing 'org.openremote.model.rules.RulesetChangedEvent' Parsing 'org.openremote.model.rules.RulesetStatus' Parsing 'org.openremote.model.rules.TemporaryFact' Parsing 'org.openremote.model.rules.TenantRuleset' Parsing 'org.openremote.model.rules.Users' Parsing 'org.openremote.model.rules.flow.AssetAttributeInternalValue' Parsing JAX-RS resource: org.openremote.model.rules.flow.FlowResource Parsing 'org.openremote.model.rules.flow.Node' Parsing 'org.openremote.model.rules.flow.NodeCollection' Parsing 'org.openremote.model.rules.flow.NodeConnection' Parsing 'org.openremote.model.rules.flow.NodeDataType' Parsing 'org.openremote.model.rules.flow.NodeInternal' Parsing 'org.openremote.model.rules.flow.NodePosition' Parsing 'org.openremote.model.rules.flow.NodeSocket' Parsing 'org.openremote.model.rules.flow.NodeType' Parsing 'org.openremote.model.rules.flow.Option' Parsing 'org.openremote.model.rules.flow.Picker' Parsing 'org.openremote.model.rules.flow.PickerType' Parsing 'org.openremote.model.rules.geofence.GeofenceDefinition' Parsing 'org.openremote.model.rules.json.JsonRule' Parsing 'org.openremote.model.rules.json.JsonRulesetDefinition' Parsing 'org.openremote.model.rules.json.RuleAction' Parsing 'org.openremote.model.rules.json.RuleActionNotification' Parsing 'org.openremote.model.rules.json.RuleActionTarget' Parsing 'org.openremote.model.rules.json.RuleActionUpdateAttribute' Parsing 'org.openremote.model.rules.json.RuleActionUpdateAttribute$UpdateAction' Parsing 'org.openremote.model.rules.json.RuleActionWait' Parsing 'org.openremote.model.rules.json.RuleActionWriteAttribute' Parsing 'org.openremote.model.rules.json.RuleCondition' Parsing 'org.openremote.model.rules.json.RuleRecurrence' Parsing 'org.openremote.model.rules.json.RuleRecurrence$Scope' Parsing 'org.openremote.model.rules.json.RuleTemplate' Parsing 'org.openremote.model.security.ClientRole' Parsing 'org.openremote.model.security.Credential' Parsing 'org.openremote.model.security.Role' Parsing 'org.openremote.model.security.Tenant' Parsing JAX-RS resource: org.openremote.model.security.TenantResource Parsing 'org.openremote.model.security.User' Parsing 'org.openremote.model.security.UserPasswordCredentials' Parsing JAX-RS resource: org.openremote.model.security.UserResource Parsing 'org.openremote.model.simulator.RequestSimulatorState' Parsing 'org.openremote.model.simulator.SimulatorElement' Parsing 'org.openremote.model.simulator.SimulatorState' Parsing 'org.openremote.model.simulator.SimulatorState$ConfigurationFilter' Parsing 'org.openremote.model.simulator.element.ColorSimulatorElement' Parsing 'org.openremote.model.simulator.element.NumberSimulatorElement' Parsing 'org.openremote.model.simulator.element.ReplaySimulatorElement' Parsing 'org.openremote.model.simulator.element.ReplaySimulatorElement$ReplaySimulatorDatapoint' Parsing 'org.openremote.model.simulator.element.SwitchSimulatorElement' Parsing 'org.openremote.model.syslog.SyslogCategory' Parsing 'org.openremote.model.syslog.SyslogConfig' Parsing 'org.openremote.model.syslog.SyslogEvent' Parsing 'org.openremote.model.syslog.SyslogEvent$LevelCategoryFilter' Parsing 'org.openremote.model.syslog.SyslogLevel' Parsing JAX-RS resource: org.openremote.model.syslog.SyslogResource Parsing 'org.openremote.model.system.HealthStatusProvider' Parsing JAX-RS resource: org.openremote.model.system.StatusResource Parsing 'org.openremote.model.validation.ConstraintViolation' Parsing 'org.openremote.model.validation.ConstraintViolation$Type' Parsing 'org.openremote.model.validation.ConstraintViolationReport' Parsing 'org.openremote.model.value.JsonPathFilter' Parsing 'org.openremote.model.value.RegexValueFilter' Parsing 'org.openremote.model.value.SubStringValueFilter' Parsing 'org.openremote.model.value.ValueException' Parsing 'org.openremote.model.value.ValueFactory' Parsing 'org.openremote.model.value.ValueFilter' Parsing 'org.openremote.model.value.ValueType' Parsing 'org.openremote.model.value.Values' Parsing 'com.fasterxml.jackson.databind.module.SimpleModule' used in 'ModelModule.' Parsing 'com.fasterxml.jackson.databind.JsonSerializer' used in 'AttributeValueDescriptorSerializer.delegatee' Parsing 'com.fasterxml.jackson.databind.JsonDeserializer' used in 'DescriptorDeserializer.delegatee' Parsing 'com.fasterxml.jackson.databind.deser.impl.ObjectIdReader' used in 'DescriptorDeserializer.objectIdReader' Parsing 'com.fasterxml.jackson.databind.util.AccessPattern' used in 'DescriptorDeserializer.nullAccessPattern' Parsing 'com.fasterxml.jackson.databind.JavaType' used in 'ValueJsonDeserializer.valueType' Parsing 'java.lang.Class' used in 'ValueJsonDeserializer.valueClass' Parsing 'java.util.stream.Stream' used in 'Asset.attributesStream' Parsing 'java.io.Serializable' used in 'Id.' Parsing 'java.lang.Throwable' used in 'VetoEventException.cause' Parsing 'java.lang.StackTraceElement' used in 'VetoEventException.stackTrace' Parsing 'java.lang.RuntimeException' used in 'VetoEventException.' Parsing 'javax.ws.rs.core.UriInfo' used in 'RequestParams.uriInfo' Parsing 'javax.ws.rs.core.UriBuilder' used in 'RequestParams.requestBaseUri' Parsing 'java.util.regex.Pattern' used in 'RegexValueFilter.pattern' Parsing 'com.fasterxml.jackson.databind.Module' used in 'SimpleModule.' Parsing 'com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable' used in 'JsonSerializer.' Parsing 'com.fasterxml.jackson.databind.deser.NullValueProvider' used in 'JsonDeserializer.' Parsing 'com.fasterxml.jackson.databind.PropertyName' used in 'ObjectIdReader.propertyName' Parsing 'com.fasterxml.jackson.annotation.ObjectIdGenerator' used in 'ObjectIdReader.generator' Parsing 'com.fasterxml.jackson.annotation.ObjectIdResolver' used in 'ObjectIdReader.resolver' Parsing 'com.fasterxml.jackson.databind.deser.SettableBeanProperty' used in 'ObjectIdReader.idProperty' Parsing 'com.fasterxml.jackson.databind.type.TypeBindings' used in 'JavaType.bindings' Parsing 'com.fasterxml.jackson.core.type.ResolvedType' used in 'JavaType.' Parsing 'java.lang.reflect.Type' used in 'JavaType.' Parsing 'java.lang.reflect.GenericDeclaration' used in 'Class.' Parsing 'java.lang.reflect.AnnotatedElement' used in 'Class.' Parsing 'com.fasterxml.jackson.databind.deser.std.StdDeserializer' used in 'ValueJsonDeserializer.' Parsing 'java.lang.Exception' used in 'RuntimeException.' Parsing 'java.net.URI' used in 'UriInfo.absolutePath' Parsing 'javax.ws.rs.core.PathSegment' used in 'UriInfo.pathSegments' Parsing 'java.lang.Comparable' used in 'AssetState.' Parsing 'com.fasterxml.jackson.core.Versioned' used in 'Module.' Parsing 'com.fasterxml.jackson.databind.introspect.AnnotatedMember' used in 'SettableBeanProperty.member' Parsing 'com.fasterxml.jackson.databind.jsontype.TypeDeserializer' used in 'SettableBeanProperty.valueTypeDeserializer' Parsing 'com.fasterxml.jackson.databind.introspect.ObjectIdInfo' used in 'SettableBeanProperty.objectIdInfo' Parsing 'com.fasterxml.jackson.databind.PropertyMetadata' used in 'SettableBeanProperty.metadata' Parsing 'com.fasterxml.jackson.databind.introspect.ConcreteBeanPropertyBase' used in 'SettableBeanProperty.' Parsing 'java.lang.reflect.TypeVariable' used in 'GenericDeclaration.typeParameters' Parsing 'java.lang.annotation.Annotation' used in 'GenericDeclaration.annotations' Parsing 'java.util.stream.BaseStream' used in 'Stream.' Parsing 'java.lang.reflect.Member' used in 'AnnotatedMember.member' Parsing 'com.fasterxml.jackson.databind.introspect.TypeResolutionContext' used in 'AnnotatedMember.typeContext' Parsing 'com.fasterxml.jackson.databind.introspect.AnnotationMap' used in 'AnnotatedMember.allAnnotations' Parsing 'com.fasterxml.jackson.databind.introspect.Annotated' used in 'AnnotatedMember.' Parsing 'com.fasterxml.jackson.databind.jsontype.TypeIdResolver' used in 'TypeDeserializer.typeIdResolver' Parsing 'com.fasterxml.jackson.annotation.JsonTypeInfo$As' used in 'TypeDeserializer.typeInclusion' Parsing 'com.fasterxml.jackson.annotation.Nulls' used in 'PropertyMetadata.contentNulls' Parsing 'com.fasterxml.jackson.databind.PropertyMetadata$MergeInfo' used in 'PropertyMetadata.mergeInfo' Parsing 'com.fasterxml.jackson.databind.BeanProperty' used in 'ConcreteBeanPropertyBase.' Parsing 'java.lang.reflect.AnnotatedType' used in 'TypeVariable.annotatedBounds' Parsing 'java.lang.AutoCloseable' used in 'BaseStream.' Parsing 'com.fasterxml.jackson.databind.util.Annotations' used in 'AnnotationMap.' Parsing 'com.fasterxml.jackson.annotation.JsonTypeInfo$Id' used in 'TypeIdResolver.mechanism' Parsing 'com.fasterxml.jackson.databind.util.Named' used in 'BeanProperty.' Writing declarations to: C:\Users\Rene\openremote\ui\component\rest\build\typescript-generator\rest.d.ts Writing module info to: C:\Users\Rene\openremote\ui\component\rest\build\typescript-generator\typescript-generator-info.json > Task :ui:component:rest:generateTypeScript Running TypeScriptGenerator version 2.13.489 Loading class AggregatedApiClient Loading class cz.habarta.typescript.generator.ext.AxiosClientExtension Configuration: 'AxiosClientExtension' extension set 'generateJaxrsApplicationClient' parameter to 'true' Configuration: 'AxiosClientExtension' extension set 'restResponseType' parameter to 'Promise>' Configuration: 'AxiosClientExtension' extension set 'restOptionsType' parameter to '' Loading '@openremote/model' module info from: C:\Users\Rene\openremote\ui\component\rest\build\typescript-generator\typescript-generator-info.json Warning: Java class 'org.openremote.model.event.shared.SharedEvent' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.geo.GeoJSON' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.geo.GeoJSONGeometry' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.notification.AbstractNotificationMessage' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.query.filter.ValuePredicate' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.rules.Ruleset' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.rules.json.RuleAction' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.simulator.SimulatorElement' already present in module '@openremote/model' Warning: Java class 'org.openremote.model.value.ValueFilter' already present in module '@openremote/model' Scanning classpath Scanning finished in 0,81 seconds. Total number of classes: 21668. Found 16 classes matching pattern. Parsing JAX-RS resource: org.openremote.model.apps.ConsoleAppResource Parsing JAX-RS resource: org.openremote.model.asset.AssetModelResource Parsing JAX-RS resource: org.openremote.model.asset.AssetResource Parsing JAX-RS resource: org.openremote.model.asset.agent.AgentResource Parsing JAX-RS resource: org.openremote.model.console.ConsoleResource Parsing JAX-RS resource: org.openremote.model.datapoint.AssetDatapointResource Parsing JAX-RS resource: org.openremote.model.gateway.GatewayClientResource Parsing JAX-RS resource: org.openremote.model.map.MapResource Parsing JAX-RS resource: org.openremote.model.notification.NotificationResource Parsing JAX-RS resource: org.openremote.model.predicted.AssetPredictedDatapointResource Parsing JAX-RS resource: org.openremote.model.rules.RulesResource Parsing JAX-RS resource: org.openremote.model.rules.flow.FlowResource Parsing JAX-RS resource: org.openremote.model.security.TenantResource Parsing JAX-RS resource: org.openremote.model.security.UserResource Parsing JAX-RS resource: org.openremote.model.syslog.SyslogResource Parsing JAX-RS resource: org.openremote.model.system.StatusResource Parsing 'org.openremote.model.apps.ConsoleAppConfig' used in 'ConsoleAppResource.getAppConfig' Parsing 'org.openremote.model.asset.Asset' used in 'AssetResource.create' Parsing 'org.openremote.model.asset.UserAsset' used in 'AssetResource.createUserAsset' Parsing 'org.openremote.model.query.AssetQuery' used in 'AssetResource.queryAssets' Parsing 'org.openremote.model.file.FileInfo' used in 'AgentResource.importLinkedAttributes' Parsing 'org.openremote.model.asset.AssetAttribute' used in 'AgentResource.validateProtocolConfiguration' Parsing 'org.openremote.model.attribute.AttributeValidationResult' used in 'AgentResource.validateProtocolConfiguration' Parsing 'org.openremote.model.console.ConsoleRegistration' used in 'ConsoleResource.register' Parsing 'org.openremote.model.datapoint.DatapointInterval' used in 'AssetDatapointResource.getDatapoints' Parsing 'org.openremote.model.gateway.GatewayConnection' used in 'GatewayClientResource.getConnection' Parsing 'org.openremote.model.asset.agent.ConnectionStatus' used in 'GatewayClientResource.getConnectionStatus' Parsing 'org.openremote.model.notification.Notification' used in 'NotificationResource.sendNotification' Parsing 'org.openremote.model.rules.AssetRuleset' used in 'RulesResource.createAssetRuleset' Parsing 'org.openremote.model.rules.GlobalRuleset' used in 'RulesResource.createGlobalRuleset' Parsing 'org.openremote.model.rules.TenantRuleset' used in 'RulesResource.createTenantRuleset' Parsing 'org.openremote.model.rules.RulesEngineInfo' used in 'RulesResource.getAssetEngineInfo' Parsing 'org.openremote.model.rules.flow.NodeType' used in 'FlowResource.getAllNodeDefinitionsByType' Parsing 'org.openremote.model.rules.flow.Node' used in 'FlowResource.getNodeDefinition' Parsing 'org.openremote.model.security.Tenant' used in 'TenantResource.create' Parsing 'org.openremote.model.security.User' used in 'UserResource.create' Parsing 'org.openremote.model.security.Credential' used in 'UserResource.resetPassword' Parsing 'org.openremote.model.syslog.SyslogConfig' used in 'SyslogResource.getConfig' Parsing 'org.openremote.model.syslog.SyslogLevel' used in 'SyslogResource.getEvents' Parsing 'org.openremote.model.asset.agent.AgentDescriptor' used in 'AssetModelResource.getAgentDescriptors' Parsing 'org.openremote.model.asset.AssetDescriptor' used in 'AssetModelResource.getAssetDescriptors' Parsing 'org.openremote.model.attribute.AttributeDescriptor' used in 'AssetModelResource.getAttributeDescriptors' Parsing 'org.openremote.model.attribute.AttributeValueDescriptor' used in 'AssetModelResource.getAttributeValueDescriptors' Parsing 'org.openremote.model.attribute.MetaItemDescriptor' used in 'AssetModelResource.getMetaItemDescriptors' Parsing 'org.openremote.model.geo.GeoJSONPoint' used in 'Asset.coordinates' Parsing 'org.openremote.model.asset.AssetType' used in 'Asset.wellKnownType' Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Warning: 'org.openremote.model.asset.AssetType' enum as a @JsonValue that isn't a String or Number, ignoring Parsing 'java.util.stream.Stream' used in 'Asset.attributesStream' Parsing 'org.openremote.model.IdentifiableEntity' used in 'Asset.' Parsing 'org.openremote.model.asset.UserAsset$Id' used in 'UserAsset.id' Parsing 'org.openremote.model.query.AssetQuery$Select' used in 'AssetQuery.select' Parsing 'org.openremote.model.query.AssetQuery$Access' used in 'AssetQuery.access' Parsing 'org.openremote.model.query.filter.StringPredicate' used in 'AssetQuery.names' Parsing 'org.openremote.model.query.filter.ParentPredicate' used in 'AssetQuery.parents' Parsing 'org.openremote.model.query.filter.PathPredicate' used in 'AssetQuery.paths' Parsing 'org.openremote.model.query.filter.TenantPredicate' used in 'AssetQuery.tenant' Parsing 'org.openremote.model.query.LogicGroup' used in 'AssetQuery.attributes' Parsing 'org.openremote.model.query.filter.AttributePredicate' used in 'AssetQuery.attributes' Parsing 'org.openremote.model.query.filter.MetaPredicate' used in 'AssetQuery.attributeMeta' Parsing 'org.openremote.model.query.AssetQuery$OrderBy' used in 'AssetQuery.orderBy' Parsing 'org.openremote.model.asset.agent.AgentStatusEvent' used in 'AgentResource.getAgentStatus' Parsing 'org.openremote.model.asset.agent.ProtocolDescriptor' used in 'AgentResource.getAllSupportedProtocols' Parsing 'org.openremote.model.asset.AssetTreeNode' used in 'AgentResource.importLinkedAttributes' Parsing 'org.openremote.model.attribute.MetaItem' used in 'AssetAttribute.meta' Parsing 'org.openremote.model.attribute.AttributeRef' used in 'AssetAttribute.reference' Parsing 'org.openremote.model.attribute.AttributeEvent' used in 'AssetAttribute.stateEvent' Parsing 'org.openremote.model.ValidationFailure' used in 'AssetAttribute.validationFailures' Parsing 'org.openremote.model.attribute.Attribute' used in 'AssetAttribute.' Parsing 'org.openremote.model.console.ConsoleProvider' used in 'ConsoleRegistration.providers' Parsing 'org.openremote.model.notification.SentNotification' used in 'NotificationResource.getNotifications' Parsing 'org.openremote.model.notification.AbstractNotificationMessage' used in 'Notification.message' Parsing 'org.openremote.model.notification.Notification$Target' used in 'Notification.targets' Parsing 'org.openremote.model.notification.RepeatFrequency' used in 'Notification.repeatFrequency' Parsing 'org.openremote.model.rules.Ruleset$Lang' used in 'AssetRuleset.lang' Parsing 'org.openremote.model.rules.RulesetStatus' used in 'AssetRuleset.status' Parsing 'org.openremote.model.rules.Ruleset' used in 'AssetRuleset.' Parsing 'org.openremote.model.rules.RulesEngineStatus' used in 'RulesEngineInfo.status' Parsing 'org.openremote.model.rules.geofence.GeofenceDefinition' used in 'RulesResource.getAssetGeofences' Parsing 'org.openremote.model.rules.flow.NodePosition' used in 'Node.position' Parsing 'org.openremote.model.rules.flow.NodeInternal' used in 'Node.internals' Parsing 'org.openremote.model.rules.flow.NodeSocket' used in 'Node.inputs' Parsing 'org.openremote.model.security.Role' used in 'UserResource.getCurrentUserRoles' Parsing 'org.openremote.model.syslog.SyslogCategory' used in 'SyslogConfig.storedCategories' Parsing 'org.openremote.model.value.ValueType' used in 'AttributeValueDescriptor.valueType' Parsing 'org.openremote.model.attribute.MetaItemDescriptor$Access' used in 'MetaItemDescriptor.access' Parsing 'org.openremote.model.HasUniqueResourceName' used in 'MetaItemDescriptor.' Parsing 'org.openremote.model.geo.Position' used in 'GeoJSONPoint.coordinates' Parsing 'org.openremote.model.geo.GeoJSONGeometry' used in 'GeoJSONPoint.' Parsing 'java.io.Serializable' used in 'Id.' Parsing 'org.openremote.model.query.AssetQuery$Match' used in 'StringPredicate.match' Parsing 'org.openremote.model.query.filter.ValuePredicate' used in 'StringPredicate.' Parsing 'org.openremote.model.query.LogicGroup$Operator' used in 'LogicGroup.operator' Parsing 'org.openremote.model.query.AssetQuery$OrderBy$Property' used in 'OrderBy.property' Parsing 'org.openremote.model.event.shared.TenantScopedEvent' used in 'AgentStatusEvent.' Parsing 'org.openremote.model.AbstractValueHolder' used in 'MetaItem.' Parsing 'org.openremote.model.attribute.AttributeState' used in 'AttributeEvent.attributeState' Parsing 'org.openremote.model.event.shared.SharedEvent' used in 'AttributeEvent.' Parsing 'org.openremote.model.event.shared.AssetInfo' used in 'AttributeEvent.' Parsing 'org.openremote.model.ValidationFailure$Reason' used in 'ValidationFailure.reason' Parsing 'org.openremote.model.AbstractValueTimestampHolder' used in 'Attribute.' Parsing 'org.openremote.model.notification.Notification$TargetType' used in 'SentNotification.target' Parsing 'org.openremote.model.notification.Notification$Source' used in 'SentNotification.source' Parsing 'org.openremote.model.notification.PushNotificationMessage' used in 'AbstractNotificationMessage.' Parsing 'org.openremote.model.notification.EmailNotificationMessage' used in 'AbstractNotificationMessage.' Parsing 'org.openremote.model.rules.flow.Picker' used in 'NodeInternal.picker' Parsing 'org.openremote.model.rules.flow.NodeDataType' used in 'NodeSocket.type' Parsing 'org.openremote.model.geo.GeoJSON' used in 'GeoJSONGeometry.' Parsing 'java.util.stream.BaseStream' used in 'Stream.' Parsing 'org.openremote.model.query.filter.BooleanPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.StringArrayPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.DateTimePredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.NumberPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.RadialGeofencePredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.RectangularGeofencePredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.ObjectValueKeyPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.ArrayPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.ValueEmptyPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.ValueNotEmptyPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.query.filter.CalendarEventPredicate' used in 'ValuePredicate.' Parsing 'org.openremote.model.ValueHolder' used in 'AbstractValueHolder.' Parsing 'org.openremote.model.syslog.SyslogEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.AssetEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.AssetsEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.ReadAssetAttributeEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.ReadAssetEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.ReadAssetsEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.AssetTreeModifiedEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.simulator.SimulatorState' used in 'SharedEvent.' Parsing 'org.openremote.model.simulator.RequestSimulatorState' used in 'SharedEvent.' Parsing 'org.openremote.model.rules.RulesEngineStatusEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.rules.RulesetChangedEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.gateway.GatewayDisconnectEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.gateway.GatewayConnectionStatusEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.DeleteAssetsRequestEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.asset.DeleteAssetsResponseEvent' used in 'SharedEvent.' Parsing 'org.openremote.model.event.Event' used in 'SharedEvent.' Parsing 'org.openremote.model.notification.PushNotificationAction' used in 'PushNotificationMessage.action' Parsing 'org.openremote.model.notification.PushNotificationButton' used in 'PushNotificationMessage.buttons' Parsing 'org.openremote.model.notification.PushNotificationMessage$MessagePriority' used in 'PushNotificationMessage.priority' Parsing 'org.openremote.model.notification.PushNotificationMessage$TargetType' used in 'PushNotificationMessage.targetType' Parsing 'org.openremote.model.notification.EmailNotificationMessage$Recipient' used in 'EmailNotificationMessage.from' Parsing 'org.openremote.model.rules.flow.PickerType' used in 'Picker.type' Parsing 'org.openremote.model.rules.flow.Option' used in 'Picker.options' Parsing 'org.openremote.model.geo.GeoJSONFeatureCollection' used in 'GeoJSON.' Parsing 'org.openremote.model.geo.GeoJSONFeature' used in 'GeoJSON.' Parsing 'java.lang.AutoCloseable' used in 'BaseStream.' Parsing 'org.openremote.model.query.AssetQuery$Operator' used in 'DateTimePredicate.operator' Parsing 'org.openremote.model.query.AssetQuery$NumberType' used in 'NumberPredicate.numberType' Parsing 'org.openremote.model.query.filter.GeofencePredicate' used in 'RadialGeofencePredicate.' Parsing 'org.openremote.model.asset.AssetEvent$Cause' used in 'AssetEvent.cause' Parsing 'org.openremote.model.simulator.SimulatorElement' used in 'SimulatorState.elements' Parsing 'org.openremote.model.gateway.GatewayDisconnectEvent$Reason' used in 'GatewayDisconnectEvent.reason' Parsing 'org.openremote.model.simulator.element.NumberSimulatorElement' used in 'SimulatorElement.' Parsing 'org.openremote.model.simulator.element.SwitchSimulatorElement' used in 'SimulatorElement.' Parsing 'org.openremote.model.simulator.element.ColorSimulatorElement' used in 'SimulatorElement.' Parsing 'org.openremote.model.simulator.element.ReplaySimulatorElement' used in 'SimulatorElement.' Parsing 'org.openremote.model.simulator.element.ReplaySimulatorElement$ReplaySimulatorDatapoint' used in 'ReplaySimulatorElement.datapoints' Writing declarations to: C:\Users\Rene\openremote\ui\component\rest\src\restclient.ts > Task :ui:app:main:npmClean > demo@1.0.4 clean C:\Users\Rene\openremote\ui\app\main > npx shx rm -rf dist > Task :ui:app:main:npmBuild > demo@1.0.4 build C:\Users\Rene\openremote\ui\app\main > npx tsc -b && npx cross-env NODE_OPTIONS=--max_old_space_size=4096 webpack --mode production Browserslist: caniuse-lite is outdated. Please run: npx browserslist@latest --update-db Hash: 68ad839b846cab159f55 Version: webpack 4.43.0 Time: 27130ms Built at: 23-12-2020 11:06:15 Asset Size Chunks Chunk Names 00280aae09f2a71c1ab46c7cfb9f491c.js 9.97 KiB [emitted] 02703e133100c3be64cfec414d4db706.js 16.2 KiB [emitted] 03276b6288c255cf1682f53ec11bb5a2.js 105 KiB [emitted] 036680d9c1d332cf478c5823cd2a47db.js 332 bytes [emitted] 0536af8c74f6fdf2d45e5e8990ee60cc.js 7.93 KiB [emitted] 06858cda42aaeae8a0410eea4f089420.js 94.9 KiB [emitted] 06d453ace473034cd357edb758d539ab.js 706 bytes [emitted] 0768225f873adf5f103dcb714f17783d.js 2.59 KiB [emitted] 07c0a60b390501dfbb57219d5c8fbc1a.js 34.2 KiB [emitted] 07c26a67fe6aa27f701c6fb03a7bbafd.js 116 KiB [emitted] 0870bcf868f8d64dc9a6226a6c8b341d.js 692 bytes [emitted] 09195a75bcf8a7ac579281ac2ed5954a.js 70.3 KiB [emitted] 0993fc898738f6e397e2065263d17762.js 121 KiB [emitted] 0a4b12234fd7cba4d7c62207e4835f4c.js 7.9 KiB [emitted] 0a5adf8110dfa37b8a75edf8cafb1dd7.js 12.3 KiB [emitted] 0ab67a107deacf1d9b22eb0b706486db.js 2.92 KiB [emitted] 0b56e82ae05b7ec2022e1cb35b8b6e10.js 20.9 KiB [emitted] 0c2b3b3b66a73e289e2ca47cf22ef150.js 329 bytes [emitted] 0cab51dee983721ec757e7e209a67c1d.js 2.43 KiB [emitted] 0cbaf3ecc6b20dbc83c2164e9a1eac02.js 10.7 KiB [emitted] 0dc486b4415f7cbd7ddde8f32b6f12f1.js 785 bytes [emitted] 0dd0f45c3dde9af3fcf9706e6a2a1edd.js 330 bytes [emitted] 0e7164b2216605b024f4dc8d910ac5e8.js 24.8 KiB [emitted] 0ebc6c9681e409f2bf3bb6d8ce64e28e.js 4.05 KiB [emitted] 100f9b1846c1e1ecae19e0ca2fc8224c.js 4.89 KiB [emitted] 1084edaced97872890c9d87a9944cdcd.js 11.8 KiB [emitted] 10bc79414b62df132421027bbf5e5c3e.js 3.37 KiB [emitted] 117389396b5ae8131c2a299bfc802c7a.js 214 KiB [emitted] 119d8ff08e82b0f391f59f1fe657130f.js 333 bytes [emitted] 1295d4470d348d3ff8ea442b1dcef3d3.js 661 bytes [emitted] 1365ff3d277ebdab408e6aeec886cf08.js 5.87 KiB [emitted] 13b157cfddcb9a76ae0800b47a8f0122.js 336 bytes [emitted] 142d258626093a8c3187029538e32bbc.js 332 bytes [emitted] 144991c48dbba89bfe10e886aaaed32a.js 1.33 KiB [emitted] 155500be4d3113e94dca99f997defb7a.js 332 bytes [emitted] 1570e695c448e6a4f3a6bdf0372b58f0.js 2.45 KiB [emitted] 15abe309c5ecbc579dccc79beb041fd8.js 9.48 KiB [emitted] 167a62ec377adafbeb4bbb1cef73250d.js 14.5 KiB [emitted] 16bcdcf93da5842af0ed775a0a7253c3.js 330 KiB [emitted] [big] 17c85759d562794da4d2ff11f1b9b3bd.js 331 bytes [emitted] 1840080076c4078d157a5b05d0d95551.js 336 bytes [emitted] 18a893070398343ab529fdb7b62f1b6d.js 330 bytes [emitted] 19573d26f286762809b86f935516c1ac.js 3.73 KiB [emitted] 19a2b55271f405d0b97fad53c9d5ec2d.js 1.95 KiB [emitted] 1afbeca385b131cfc3ae515b89e552c7.js 3.28 KiB [emitted] 1afe87852eca4b28294075c659ff8c45.js 330 bytes [emitted] 1c9874850164cfdaa7e1d212d09124a7.js 329 bytes [emitted] 1cb8df3a3416707163473b1ee9268faf.js 336 bytes [emitted] 1d837e2c9de35cbb09a85208da4a0d8a.js 9.18 KiB [emitted] 1e33cb44dfab039b4a7e88a3ee1bbfe7.js 8.35 KiB [emitted] 1f03c9a69a8b9f79bcb7a338963f80c8.js 8.74 KiB [emitted] 1f1abd5e247cf6b2e9a3db6303277572.js 335 bytes [emitted] 2031467f3d02be43b638c5e3ccba3996.js 331 bytes [emitted] 20642f73792092d3c71a4f1f4290430b.js 27.5 KiB [emitted] 20f8061729d26f9786679bbf7af0b87a.js 333 bytes [emitted] 214a729dcea91ee8a56f8ef43e17243a.js 331 bytes [emitted] 21dca974f7343f200597e43a55766c6e.js 334 bytes [emitted] 21fab653998af15bced8d4890e41bebc.js 331 bytes [emitted] 2208705283adad817bb4a5af647f77ab.js 3.56 KiB [emitted] 223593fe8dd78b83f22808f9aad86ae9.js 8.37 KiB [emitted] 22812e27a1f54c0a4ff744a444a32d6c.js 321 KiB [emitted] [big] 22b1c8bf4c2bdd7e438f832b888c75e4.js 10.9 KiB [emitted] 22d4f336d4fbe548273812e6e4cd345e.js 9.1 KiB [emitted] 242fb5a92733d151e9ca303fcd3ae7ff.js 330 bytes [emitted] 243d8101969c933d25388b5287bb3425.js 2.73 KiB [emitted] 2487e54390024553d757b9bd73dd1647.js 3.39 KiB [emitted] 26040867c5c5566de85ba3c7613610df.js 18.8 KiB [emitted] 2681042a598b029b51d51f7669b81c4d.js 330 bytes [emitted] 2713cf58a182cbabbc2538f42ce83a58.js 15.9 KiB [emitted] 280ba139ff95428f262adbf81b77aeb4.js 16.1 KiB [emitted] 2839e845bd0cf60f35f3a8ca90a5ee22.js 50.2 KiB [emitted] 28f7c5b28bbad7b0bac0cc3cc5b89bad.js 329 bytes [emitted] 294fbc5b00264d6215dd8ff838dc2999.js 5.1 KiB [emitted] 29a4e3548d286388c4d5e8f0670a4381.js 10.4 KiB [emitted] 2a7b2ac7dc47105609001b93c25190b8.js 12.1 KiB [emitted] 2ac58492ad5a1b5244deb0fef1e5a773.js 330 bytes [emitted] 2bba99eb717e1aa22e45284a964ca73f.js 329 bytes [emitted] 2dea096a03cd8f864db5f06e9f0113e5.js 4.88 KiB [emitted] 2f6f1f6753d430190cb38411a9112f08.js 3.2 KiB [emitted] 30314e1b4a51b1aed3766eadecde2a42.js 4.28 KiB [emitted] 3045404d52d03253c81822bdf760cfd1.js 13.1 KiB [emitted] 30f5b57295dfda4eafc7f8c098160582.js 2.97 KiB [emitted] 31459a657ac30dcaa54765c6d76d8c81.js 338 bytes [emitted] 318f90759f2ff0d2a437350e87578172.js 329 bytes [emitted] 31bcb02e59d84ce2e38b85616a0b44db.js 334 bytes [emitted] 31f3f1c32b27587832d28b634351325c.js 331 bytes [emitted] 330543be2120b9dcc9bec41ba5e05805.js 331 bytes [emitted] 34f05dc84111ffe37a1d5b5aacff7488.js 330 bytes [emitted] 35858a47038a7be957df49854e8e5eea.js 332 bytes [emitted] 35dc4119f9e28cb9baba1475537460bb.js 337 bytes [emitted] 37bc2ca46b9a9d40678a3cd05d50e397.js 37.1 KiB [emitted] 37e37aa178d97ffcd94eeee1e1a25967.js 1.4 KiB [emitted] 37f7ac1ef289fe8cd4f522a14df1f007.js 14.8 KiB [emitted] 38528de2a5c097da375fd0a076667441.js 332 bytes [emitted] 38a696bcfe6021b6442e70b6d3017b93.js 28.5 KiB [emitted] 39d67af37978d254379d97ead4533a8f.js 74.9 KiB [emitted] 3a969f15f742add3d383e55d0ceb3d25.js 38.2 KiB [emitted] 3b5b61cdd5efaaa85816fbf4ac68207e.js 3.46 KiB [emitted] 3baeab62d681338ba3287f0a50e5dad1.js 335 bytes [emitted] 3c0ec12aff6e148d235875bfed4ca421.js 2.6 KiB [emitted] 3c54f236e4f2dbcbfb4dd485a25e2a15.js 13.2 KiB [emitted] 3c58f68d787710c79906a2cd6d248295.js 330 bytes [emitted] 3c80e275f9c5ea768500653a3a4dc82d.js 103 KiB [emitted] 3cab7110c6a090f72c540dcc1cfbe3b5.js 338 bytes [emitted] 3cce0c7e1a8e1148f97de59a4b1ee73f.js 330 bytes [emitted] 3cd86defa6e36c165ae673afab6b5eab.js 101 KiB [emitted] 3cf64ec91a700bfa1dece0957c49c7dc.js 336 bytes [emitted] 3e6808cd6eefd1be1040403985581374.js 332 bytes [emitted] 3e6cde7f6a3d84c5cff5127be1c019f3.js 2.15 KiB [emitted] 3ea50b3e77156211471bf17956ffadf9.js 47.5 KiB [emitted] 3f9e3ae9d4ee540b9fb067b6fd29d529.js 5.22 KiB [emitted] 3fa9831a2a3c69388ddc38c021eb00b3.js 64 KiB [emitted] 400622a60e8e3194e3d666d073e3c7db.js 2.51 KiB [emitted] 4037e6d4b18e3e286dec455cc63c1d17.js 4.48 KiB [emitted] 40505d6c2f34fc08502d3e596573c7f8.js 329 bytes [emitted] 40ba797ae7e4433f9847cd2c68bfbdf7.js 15.3 KiB [emitted] 413ec783ae29da56e8bdabae45457f91.js 9.22 KiB [emitted] 4190490a8257bdfcce6e2bd4f0634086.js 4.21 KiB [emitted] 41f85ea0c545f0539b6ae2753eb1f79c.js 332 bytes [emitted] 4263ed179f5b2268965e1157074583e8.js 4.5 KiB [emitted] 42837f940cb1b7ef3aacf38a45916320.js 2.72 KiB [emitted] 434a5902436fc0f4bac913f7ae1471c6.js 15 KiB [emitted] 4371d4921a7e27b170fb965e9aef1707.js 23.2 KiB [emitted] 43a9bcfc200d80676bc68fe9a3c8ab6d.js 331 bytes [emitted] 43bd62d6b50d1253f782c9ae5be1593d.js 2.54 KiB [emitted] 43dab3876e6402fc9ae359a033683cc4.js 1.87 KiB [emitted] 4474c9775d04684871043fae3501ec66.js 3.22 KiB [emitted] 44b4462224957b51234691dacc5dd4c8.js 3.45 KiB [emitted] 44e6d883ecccba28d8adf592cb83e01b.js 7.09 KiB [emitted] 451c3753fb6dfc1f2de25cb7524f4bb2.js 4.29 KiB [emitted] 46bac1e89f220258537c533035a6e263.js 13.2 KiB [emitted] 4705b919138245a5b454d25f8e418435.js 858 bytes [emitted] 4750f0ff62cbd59f35aac31b996194e6.js 2.48 KiB [emitted] 476880245318ad211000fa55cb15d83f.js 2.87 KiB [emitted] 47cd5c7d174e6b624e55510c4e503600.js 497 bytes [emitted] 47ecd829f86e48857a05b2189ee9c097.js 3.1 KiB [emitted] 4ab6dffb1b7255cc39ef77a35eb53293.js 11.3 KiB [emitted] 4bf1c0d1ae4dcfec126a81d17f889020.js 337 KiB [emitted] [big] 4cbd6f8a4f52821c1d3476139078797d.js 336 bytes [emitted] 4cf2f8563b2e07e643af9cc19cd44a2e.js 18.9 KiB [emitted] 4d694d41a0c1b3eaad752a8352c5661c.js 333 bytes [emitted] 4e4d407bd6bf0ce7bfc869f7eb6e93d3.js 31.1 KiB [emitted] 4e9e0e943cacfdf9d350ba0c59bfb53b.js 12.9 KiB [emitted] 4f0436f3850202d127036b38729c6861.js 3.35 KiB [emitted] 4f96d1df55d7c479ed066be2863223c7.js 25.8 KiB [emitted] 5094b30d2471cc7312746173d8a4bb25.js 336 bytes [emitted] 51e6918f996813eafa4b1491d9dd343b.js 1.06 KiB [emitted] 51e6ccd3ea9d7443949b155b113eebd5.js 332 bytes [emitted] 536bba7b10d156b509ec6516577ad3ce.js 22.1 KiB [emitted] 540bba54b49ea7a6ec513270449132db.js 343 bytes [emitted] 553aa6bb3b625428f4df57f5885d50f3.js 331 bytes [emitted] 5540bb93f39dcb670a0f9b4e4b793d02.js 11 KiB [emitted] 57c2d2eb6a844a8c9ecd932c6d4067b0.js 338 bytes [emitted] 57c7c145c720f31f3749b658e3769833.js 9.73 KiB [emitted] 58d885ab56201085ce55e8eb5d3f2ac2.js 41.5 KiB [emitted] 59457eef0e0be735680874d74c13e469.js 79.4 KiB [emitted] 5bd58f2ebad7e63ff72a891fb43e2b38.js 329 bytes [emitted] 5e1dbd63b493d399404d7d8d5b9e5934.js 6.07 KiB [emitted] 5e4dd0452f14cf5dbb02a7dc7d9dda76.js 23 KiB [emitted] 5e9314c1c0d4e5f4cb7a3f80fc01530c.js 5 KiB [emitted] 5eeee1acc01b04328cf42db0715bb7f5.js 331 bytes [emitted] 5f0b8714b08d299edbdf3b3d9adb7e71.js 11.1 KiB [emitted] 5f6f5026d13b2a9b884a8144a119cf9e.js 334 bytes [emitted] 60fc15a66fa7ba74ccd248f85b50fbe5.js 329 bytes [emitted] 61cc56da80a76731283878abc3b13761.js 6.16 KiB [emitted] 628b24103fca421515ec8724d12f026f.js 4.79 KiB [emitted] 63999023068dcbebee417ac354fe4e78.js 21.4 KiB [emitted] 63ccb1f1a27a2bf6271f40d3082186f4.js 37.4 KiB [emitted] 642f5bce034554539cc93a5b965e730a.js 19 KiB [emitted] 646c9322233a0ba128268dee916e5719.js 2.17 KiB [emitted] 6477e8f75e2259e66e943bdef7b9e4a7.js 113 KiB [emitted] 64f93b6b093bba4147485023263cf65f.js 329 bytes [emitted] 66670f2c1f5e7c4e531007e89bb85355.js 37 KiB [emitted] 666899335e954b291e938197a76bc90c.js 588 KiB [emitted] [big] 68cf9a0e1eaff7cc991e970a855108f8.js 329 bytes [emitted] 697c2df91bf7c729d317c620a3cd77bd.js 330 bytes [emitted] 6a42bdf71e3ae785252f124075145d08.js 23.6 KiB [emitted] 6d9ca7a980db8fa74e39b1ff3b0c75cd.js 57.7 KiB [emitted] 6dafd4eb9102ea47229a42a24d40f457.js 9.67 KiB [emitted] 6e4d1075690c1f17775f02251592ac60.js 3.36 KiB [emitted] 6e88d3943f4c3a068493aad131cd4898.js 331 bytes [emitted] 6e9ca56e0fa3e784eab3da45f8d0d8ac.js 330 bytes [emitted] 6ef7d9845e8bb0113d81f8354b927daa.js 110 KiB [emitted] 6f0543453c605ea6d673a3bd31dd1090.js 331 bytes [emitted] 6f783ca6efdcb90ccde9175312f6558d.js 2.34 KiB [emitted] 7074e18e67a10875c827b6cfe2665b83.js 14.4 KiB [emitted] 7150c52abe226d317116208cfe9fdc88.js 31.1 KiB [emitted] 727184c92f9da8d8b0c013fd79cf32fe.js 330 bytes [emitted] 72d23326220bc76ce06b4c1c68efb378.js 66 KiB [emitted] 74973bbb728e661679e49a16773535a4.js 861 bytes [emitted] 773282ad14bc60eaff4673747ec0a2ec.js 9.23 KiB [emitted] 78999d905693a14a2c4677977ba222fb.js 3.47 KiB [emitted] 79701bbf8c5436771916d9af708ae8ec.js 13.4 KiB [emitted] 7982ae381c10e501e9a46d8693deddf6.js 4.18 KiB [emitted] 7af5865535fb306e7d0364a9ff81f389.js 948 bytes [emitted] 7bdb2e4d3bc51d15863aa7be6e0a23a9.js 7.15 KiB [emitted] 7cef38946c33fa981d6d2c86c62428e0.js 332 bytes [emitted] 7d46cd8e5efaac33d5bf823ed4268841.js 334 bytes [emitted] 7d4e1c98726f11ff7baaf1a31882c59f.js 581 KiB [emitted] [big] 7da5aafe24e626f9bced82fe40567386.js 2.91 KiB [emitted] 7e89c064ec09f955a6c3ffbfb96908a2.js 8.58 KiB [emitted] 7e98c4d98664d6f7bcc52a07f21a1f9f.js 337 bytes [emitted] 7f10fe526aec57bd522af77ea6ac2b62.js 336 bytes [emitted] 7f97ea63879ac5f3a2b491a651a1a82f.js 3.04 KiB [emitted] 8043595ccf704fc61e7e3e4c7c7e77a5.js 9.32 KiB [emitted] 8090b9684b48e3c94193c31e346e06f5.js 17.4 KiB [emitted] 8103e73d2ea3574b81428aafc4e01c71.js 39.8 KiB [emitted] 8120c57dbca7501da3ecf702c811f16f.js 2.19 KiB [emitted] 817d52a47a4657b8a4dab79e057f5fb0.js 331 bytes [emitted] 81be1aff3c1cfa0531037ebab355abbb.js 3.79 KiB [emitted] 82ce99851e7fc39e91603bc3320fe6d2.js 4.45 KiB [emitted] 8301e1931a5e81554de551296436ad57.js 119 KiB [emitted] 833b242747fd7b098d46011e4289bc3f.js 330 bytes [emitted] 83ea78d42f1a8e5f7346f3a30140ebfb.js 337 bytes [emitted] 8468b2aa5fbe665b49784c30b4a908f7.js 64.3 KiB [emitted] 84d3403e422e4697e86914f183a60a13.js 16.7 KiB [emitted] 84f75bf9ddb5400925d2a043a2013cec.js 33.7 KiB [emitted] 852f3a4ec9ee58d75bd55c85161bb68f.js 10.4 KiB [emitted] 8536514f6ace9c40d36020af05e067fe.js 6.95 KiB [emitted] 85e246a36ca53e3f767608542dcd26b3.js 2.9 KiB [emitted] 85f71b723441bcf428b8abed1fc8f56f.js 13.8 KiB [emitted] 85fe85850b026b668c10d2c9e0e5e8c6.js 4.48 KiB [emitted] 867fb2b26eef123915aff8634c0bbf4a.js 330 bytes [emitted] 8681f562786fa45bebe8ee7ed2461026.js 978 bytes [emitted] 86dfc095a8bb97b2b6d94b798ebcdc61.js 2.54 KiB [emitted] 8833a126ef9d8892bfb372d227f7f088.js 332 bytes [emitted] 8870430db332faf22d90e12f1620ee84.js 332 bytes [emitted] 88d5efab68c7526ad2ad4196932adb03.js 21.4 KiB [emitted] 89859a411a50c90f1e669deaf8a6775f.js 330 bytes [emitted] 89a47a0051ac0b3885ef8af2476526f0.js 329 bytes [emitted] 8a7d1e82245ba58033df533faadfbaf4.js 11.3 KiB [emitted] 8afcf3a037a7f37f9c0bbad01507d73b.js 3.61 KiB [emitted] 8bdbab2f0d58195a7d509ad6fbe02966.js 10.6 KiB [emitted] 8dec848a9d34e3804976ae4a589fbc4f.js 11.1 KiB [emitted] 8e6a809082edab0aaf90b9eb118ae571.js 103 KiB [emitted] 8e81f51d2e7be98e9e45fe93239c7e99.js 14.1 KiB [emitted] 8ee6948d963e299de55144b3c7a60c0a.js 5.37 KiB [emitted] 8f69fc81a83ba318eca7dbae6c6eba75.js 10.2 KiB [emitted] 90643b9da87302fef490f3f48af806e2.js 334 bytes [emitted] 91832748c8f066b07af2341ccc6dd5b1.js 10.3 KiB [emitted] 92cf63e9a949f08d97a74d9ed17392ed.js 329 bytes [emitted] 9360974ffacadb05145e2f6c1458f35b.js 4.17 KiB [emitted] 93edcad7b93942b98afaab6436a13d10.js 18.7 KiB [emitted] 94a0179602c94d55621a35e41c97ed5c.js 339 bytes [emitted] 94a5c40baab0f2df8b43889ed5fb6b8a.js 19.8 KiB [emitted] 9588381016bdc5e88634572e630b4551.js 3.68 KiB [emitted] 983ddc3115fae8e0dfd108d799662892.js 13.8 KiB [emitted] 985b400088bf5e23fb83e70d9948eccb.js 329 bytes [emitted] 998c5f13555e18b42e9bf826578b2e16.js 331 bytes [emitted] 99b756405f919e9022e6a4e3579dd5ee.js 5.15 KiB [emitted] 9abcc804fa38b6d05e62a10cb8dbb668.js 43.2 KiB [emitted] 9c202aefac35a5ff49d3d3795e9932bc.js 335 bytes [emitted] 9cf3be7669b89ac4036cd07c9baf7e13.js 8.8 KiB [emitted] 9d0f4f65be2f50ad54488089f126feda.js 332 bytes [emitted] 9e357a97da26127713394684a51946b8.js 334 bytes [emitted] 9e69cb39701c3578226b39536edd4dd7.js 330 bytes [emitted] 9e875d25eb6d80340adac0cfc35700c1.js 5.08 KiB [emitted] a026164ca1f6f157fcb0f5f6bfd4abce.js 21.8 KiB [emitted] a07f2b025030bd4f277803aea0e6a539.js 14 KiB [emitted] a175d30169f9ee7c0abfd70e33891087.js 363 KiB [emitted] [big] a26463d029a2515171748a1ebcca53c3.js 331 bytes [emitted] a311e02008e0f00a37305a12d479159a.js 336 bytes [emitted] a477d7b35783dd10040a243a84c86a0c.js 20 KiB [emitted] a5cb31cfb4711ef14999198f0d35eaf3.js 4.44 KiB [emitted] a5cd4d965591278c0519bdfa761ea3aa.js 2.83 KiB [emitted] a5ee53d8ec301722cfb69fbeee668488.js 175 KiB [emitted] a65a0bae3e5b73407d15ea6bbb08e515.js 21.3 KiB [emitted] a6a85de8e3b46bd670c9a727ffc67e90.js 71.2 KiB [emitted] a71d8ecb9a2a4b35fcd828bb970e7e84.js 109 KiB [emitted] a84f565fc5473f112281550ea6c2ccf4.js 12.3 KiB [emitted] aa2f98073a8d9f266f3928b5d9c457d1.js 922 bytes [emitted] ab16c1237e6e04bbf0024ee2bae42130.js 327 bytes [emitted] acc30207efba7ab5b7b509b599f37e6f.js 330 bytes [emitted] acc4ded8b9debce27f884c9cce5bf63c.js 1.78 KiB [emitted] acc7448b80728a73c9a4046b3ec4407f.js 332 bytes [emitted] adbb57fa182dce548204311d3be6dffa.js 330 bytes [emitted] ae5d4d6eea08ccfac67e44bfe11da4ed.js 2.95 KiB [emitted] b02513e1d0cc664936e1ba9cb5a923af.js 332 bytes [emitted] b111a00f8f22708140c6fdbc26963155.js 102 KiB [emitted] b131314d1ea62fa7bba91a4da8360298.js 330 bytes [emitted] b1ff2cb4863b8ed961d815393cfe246d.js 3.48 KiB [emitted] b225cb9e753bd0a8ca508ccb2637bf91.js 3.75 KiB [emitted] b25d5064a26eda70aa3d2bae3a1122cc.js 24.5 KiB [emitted] b26738d581e044c69f7a4392906e6843.js 583 bytes [emitted] b2a2011665f9a22c8dddaf833ec822b8.js 58.5 KiB [emitted] b435aebcb57d65080cfd510e0a9d5d9d.js 332 bytes [emitted] b4787b2bbb3e2481e0aca0830ab31484.js 7.21 KiB [emitted] b49c9a9ab619e46a7ba6f9f89c800589.js 4.7 KiB [emitted] b4bd28ac3a7935d0c52a6cb19c89aced.js 3.6 KiB [emitted] b518725b1ee5b4ba27eec173687966f0.js 23.6 KiB [emitted] b5ca9f41776a3ecddc999e0e386c842e.js 119 KiB [emitted] b830d88aa22a866a208be27af90526a7.js 331 bytes [emitted] ba07c8c1ca6ea903fd0f0379db66ea1e.js 15.3 KiB [emitted] bae95bdb1bbcc0969e0e40fb72539df3.js 337 bytes [emitted] bb3e0098a11d21ca01d6e44c2e39f90b.js 4.24 KiB [emitted] bb48e1051c32d32d425681e9200706bc.js 45.7 KiB [emitted] bbd62124f6d03e01eb4332f55ead999d.js 333 bytes [emitted] bc26ab0797e975ba01e701683935864b.js 333 bytes [emitted] bd33197d8c34bf6387e39130c28f8342.js 99.4 KiB [emitted] bd98610e395f3b4c7915cf3fbe854f6f.js 1.52 KiB [emitted] bd9ff502ba460f402b4e2005689402a7.js 109 KiB [emitted] be2fbe775b19bdc18e4f78de18beb433.js 1.07 KiB [emitted] be734ac9c9a7b29439001bfc78984ba3.js 7.64 KiB [emitted] bf06f353bf67ef497b65afe567e7f294.js 104 KiB [emitted] bundle.68ad839b846cab159f55.js 3.8 MiB 0 [emitted] [immutable] [big] bundle c02d976c2c838a2b5ad0e5dfd1facb75.js 125 KiB [emitted] c033d0cf791d80ef14327c1ade637578.js 2.78 KiB [emitted] c0b4cd50c3fcc1292b34cedf813a16dd.js 4.6 KiB [emitted] c0f91d067bd4f665ec7b85a632e3168d.js 22.9 KiB [emitted] c23b1f80ab9746b425f3848bdaacc144.js 330 bytes [emitted] c24de6963d7d00c269db34091059e06d.js 3.17 KiB [emitted] c2b469d0ddb280bda5f621563579725d.js 24.4 KiB [emitted] c2c0e5fa8323e2c5c1f54f20afda51b8.js 6.43 KiB [emitted] c38a3226f3858a47ba9fb788dc7b44fc.js 329 bytes [emitted] c3b0cd15adcc12a549e7ac5d165ac1f4.js 330 bytes [emitted] c502e0f58557345fbd8e157a93dc4d43.js 39.7 KiB [emitted] c5d7c4a345a7bb4c84ee8ced7322a8db.js 12.8 KiB [emitted] c6d4a590e14107a8a5ad505d66241032.js 332 bytes [emitted] c6f608398c43e25821557ee65cda5e58.js 332 bytes [emitted] c7d3b0afe7600a632fbf44ee8d84996e.js 331 bytes [emitted] c7fb0ccebacccfb5c2f7b2f6023ebe4a.js 1.08 KiB [emitted] c806ba4f0026195e7907bfb62d00b502.js 16.7 KiB [emitted] c858d804d048236fd104269716261fa8.js 85 KiB [emitted] c8635d289de514a4e39af9ea7559e6ce.js 148 KiB [emitted] c8bdb139ff462c0e7dc4ba2f56a49318.js 23.8 KiB [emitted] c8c48c73e7d7dd2c142badc913ab26fe.js 3.09 KiB [emitted] c98e5722b508d4eb3afcea637246de33.js 27.1 KiB [emitted] ca1483809659f6c87cc6f588891d2bd4.js 329 bytes [emitted] cb332e7b5386c55fe0ced93b36d73da7.js 11.9 KiB [emitted] cc4fff5e9f9910946eb3cdf026300539.js 3.36 MiB [emitted] [big] ce73c3243f61524d76000c4ace94f2bb.js 5.15 KiB [emitted] ce7ee0aa2aa03d5d30cf3627261ffd85.js 12.9 KiB [emitted] cf0a04afa21ac9ba23a1de0416a03105.js 332 bytes [emitted] cf1f6c842a1ec0af6b00ce1859dce6d5.js 12.1 KiB [emitted] d08030a8f6057b63643bacf4cee162b0.js 6.44 KiB [emitted] d08daa8e673c585e1311729dbcb63eb4.js 104 KiB [emitted] d27d5c5480c14bffe9ffc07fec3a806d.js 2.47 KiB [emitted] d2b533a0128ef6edfaf153c0fa19e432.js 2.17 KiB [emitted] d2e30554e6939a2542e5135fff541daa.js 5.18 KiB [emitted] d465c0a35c6ef244bf587b0e6bdb4019.js 335 bytes [emitted] d47938906a471dea833a3b57991c7124.js 38.1 KiB [emitted] d5a596705e8b1c50832d29b25f4ffb0a.js 2.77 KiB [emitted] d70ab0885fcc546aaf5eee0c5fca6278.js 2.23 KiB [emitted] d750a8dbf9dd09c0a33b9986e79e3c8c.js 335 bytes [emitted] d754905fe54aac6f3c350df34f51a0b6.js 329 bytes [emitted] d7889907dbb51f58ceadb3e1eec03a5d.js 330 bytes [emitted] d7cdf8e31755f70cd564c742feec3be0.js 15 KiB [emitted] d7e8066668f05d83f86a128d7dbd45a2.js 3.33 KiB [emitted] d8c239d65159c02ebd6a2afa3cdc584b.js 2.7 KiB [emitted] d9a00ccd64f554cd458b3d6f6c66f465.js 318 KiB [emitted] [big] d9e70caae42a8f91d34536f0d7941673.js 2.75 KiB [emitted] da06d4429e8bccd9ef90b16ebe49354b.js 23.1 KiB [emitted] da1719655627488c0c1afaa1379e2c1d.js 6.77 KiB [emitted] db7eff370e6f80152653db4bc1c65285.js 23.1 KiB [emitted] dcb084d6aacfa517923dd3a94e3b9af5.js 16.4 KiB [emitted] dcf53bcee59461376a7eb351c13ce19a.js 15.2 KiB [emitted] dcf82c5c24de859d74953010a3bf7f11.js 3.17 KiB [emitted] dcf8b9b721cab79d285ab33fe2154a58.js 35.2 KiB [emitted] dd40dfc7840568927fdef65087a233ed.js 336 bytes [emitted] dde12e6c2c05d17c95ed0a94da234b3b.js 23.4 KiB [emitted] de385e48e4b7a8c5837c9a2fd07ede3e.js 112 KiB [emitted] de581fe10be3ac282fa6abc2f8171551.js 18.9 KiB [emitted] e0476257d7657264e527f7a1f1ecbece.js 31.2 KiB [emitted] e0e2b1267a5d4acb4dda3a4a598cd8a5.js 331 bytes [emitted] e1dbe800b2d3f5d74b2b5480ea2b897a.js 544 bytes [emitted] e2792218bae78a6aef6764de4e61fd82.js 330 bytes [emitted] e393bf5358fc198ca07e518900b24311.js 11.9 KiB [emitted] e4d51c8b4202d444cb39db4e7642d7d9.js 333 bytes [emitted] e6c2b11f457b5aa71fd08de4ae738c3f.js 8.07 KiB [emitted] e6fe37aef08c1bd39b8fc610216b5228.js 24.9 KiB [emitted] e745f8fb4f054a3f5b66ccad100a1217.js 331 bytes [emitted] e7a892eff1dd4ac60e8201386497b66b.js 2.65 KiB [emitted] e8250271e7641960341ae2ac170af4ac.js 1.81 KiB [emitted] ea5c101c16108be8cf1522aae5736f5f.js 38.2 KiB [emitted] eb6f00b565c6441d02346354a0ef64ce.js 17.6 KiB [emitted] ec11fafda0cb8f327579e7f1ca1be3bc.js 12.8 KiB [emitted] ecf2f6a8b8efa35d5901553b5551096d.js 291 KiB [emitted] [big] edb819e7714a62ebe92b7272942da1fc.js 24.3 KiB [emitted] ef2640638453d7df3e7e1659d1f67105.js 108 KiB [emitted] efa2aae8c65855514b0ca66c4fe1cc68.js 35 KiB [emitted] efc508c36f4e417ec6bd5ec72989443b.js 329 bytes [emitted] f023b7e5335b8e16fb42f8f3e18ecf3f.js 14.1 KiB [emitted] f102c542cd35eef623ab82b087af2f14.js 105 KiB [emitted] f120c3f4e008f9abcd3a576bd66dd315.js 122 KiB [emitted] f2040b70e41cfa457e9796aca8abfeea.js 2.61 KiB [emitted] f2195d2eae3dbef7e3798e115209dcd7.js 331 bytes [emitted] f29286fc7d5663eb11457f48664f324d.js 2.82 KiB [emitted] f2cfc0e604350e23bfcd7c78165b1411.js 329 bytes [emitted] f35e34e60520cef0b0dbba2bc2931941.js 17.1 KiB [emitted] f3a0f6e7e442de2ae51eddbf4eb98d97.js 326 bytes [emitted] f3b6993cd8f9bbdd1d5ad68a5e1cdf70.js 6.87 KiB [emitted] f457edce8a9809fa16aab3c8e695bf38.js 6.4 KiB [emitted] f473db7186a8dd6d4526d55c4d7ed873.js 21.9 KiB [emitted] f4b747bf296f21fcf6d59357e92f948d.js 2.72 KiB [emitted] f4ee92824c023ab7278694588c9c40f1.js 23.1 KiB [emitted] f50d7c4ce743ce495230d19bd33fefab.js 331 bytes [emitted] f5292be525fc36a337ce7bfb792070de.js 333 bytes [emitted] f52e2798c3b260592cf35f3a20958d87.js 9.5 KiB [emitted] f61f1aaed3f32a7dabd977a6f47ecd5f.js 334 bytes [emitted] f6cfc0e0566a350632db32ece39b649d.js 3.17 KiB [emitted] f7443e8232a7e4289b9f2ed4a512750c.js 332 bytes [emitted] f80c6eb0f52a68464b21211240e3d6e6.js 329 bytes [emitted] f88127ad8950e3c94c3af6c65a7120fa.js 330 bytes [emitted] f913332fa21973f354fcb5b680811e56.js 1.77 KiB [emitted] f95dc04dc50d90d0555ca3561e75c4c2.js 103 KiB [emitted] fa1618cda4da7d5362c381ea2d5f7321.js 336 bytes [emitted] faf460076b3383fdc3ecc224068964cf.js 329 bytes [emitted] fb4580529d9585e912b7142f6b62cae4.js 15.7 KiB [emitted] fb9b5c96e0fabee1cf3ffaa8cf47d889.js 73.6 KiB [emitted] fe4de7aeda3abed04c238956a8565de4.js 13.8 KiB [emitted] fe51d45583c0425b00c9a784727072e0.js 12.4 KiB [emitted] fe56e099960b1f5a3ac7143e245f7ce1.js 8.07 KiB [emitted] fe58209a4ef163863b95ab289a69cdaf.js 11.1 KiB [emitted] fe5fd32b764aa22fde63925ac549a9c9.js 2.17 KiB [emitted] fffbc895129cdb3efeafa5b234743aa0.js 330 bytes [emitted] images/Icon-128.png 7.41 KiB [emitted] images/Icon-144.png 8.48 KiB [emitted] images/Icon-196.png 12.1 KiB [emitted] images/Icon-256.png 16.6 KiB [emitted] images/Icon-48.png 2.68 KiB [emitted] images/Icon-512.png 41.8 KiB [emitted] images/Icon-72.png 3.92 KiB [emitted] images/ee3a6eeb07c5a91ea0f2e3adfc47c73d.png 19.9 KiB [emitted] images/favicon.ico 1.12 KiB [emitted] images/logo-mobile.png 19.9 KiB [emitted] images/logo.png 8.32 KiB [emitted] index.html 3.63 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-ce.js 20 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js 114 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js 85.7 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd.js 66.7 KiB [emitted] modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js 954 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js 659 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js 1.66 KiB [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js 675 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js 860 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js 1.22 KiB [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js 767 bytes [emitted] modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js 115 KiB [emitted] modules/@webcomponents/webcomponentsjs/webcomponents-loader.js 6.13 KiB [emitted] Entrypoint bundle [big] = bundle.68ad839b846cab159f55.js [15] C:/Users/Rene/openremote/node_modules/rrule/dist/esm/src/index.js + 21 modules 78.9 KiB {0} [built] | 22 modules [25] (webpack)/buildin/module.js 497 bytes {0} [built] [31] (webpack)/buildin/global.js 472 bytes {0} [built] [49] (webpack)/buildin/harmony-module.js 573 bytes {0} [built] [340] (webpack)/buildin/amd-define.js 85 bytes {0} [built] [397] C:/Users/Rene/openremote/node_modules/moment/locale sync ^\.\/.*$ 3.13 KiB {0} [optional] [built] [432] C:/Users/Rene/openremote/ui/component/or-survey/node_modules/moment/locale sync ^\.\/.*$ 3 KiB {0} [optional] [built] [868] ./images/logo.png 11.1 KiB {0} [built] [869] ./images/logo-mobile.png 89 bytes {0} [built] [870] ./src/index.js + 400 modules 4.37 MiB {0} [built] | ./src/index.js 2.99 KiB [built] | ../or-app/dist/pages/page-assets.js 12 KiB [built] | ../or-app/dist/pages/page-map.js 14.4 KiB [built] | ../or-app/dist/index.js 17.2 KiB [built] | ../or-app/dist/pages/page-gateway.js 16.9 KiB [built] | ../or-app/dist/pages/page-insights.js 4.78 KiB [built] | ../or-app/dist/pages/page-rules.js 4.46 KiB [built] | ../or-app/dist/pages/page-logs.js 3.58 KiB [built] | ../or-app/dist/pages/page-account.js 4.16 KiB [built] | ../or-app/dist/pages/page-users.js 17.8 KiB [built] | ../or-app/dist/pages/page-roles.js 14.7 KiB [built] | C:/Users/Rene/openremote/ui/component/or-translate/dist/index.js 3.47 KiB [built] | ../or-app/dist/types.js 2.44 KiB [built] | C:/Users/Rene/openremote/ui/component/model/dist/index.js 167 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/index.js 56.2 KiB [built] | + 386 hidden modules [871] C:/Users/Rene/openremote/node_modules/rrule/dist/esm/src/nlp/index.js + 3 modules 32.1 KiB {0} [built] | 4 modules + 876 hidden modules WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). This can impact web performance. Assets: 22812e27a1f54c0a4ff744a444a32d6c.js (321 KiB) 7d4e1c98726f11ff7baaf1a31882c59f.js (581 KiB) 666899335e954b291e938197a76bc90c.js (588 KiB) d9a00ccd64f554cd458b3d6f6c66f465.js (318 KiB) a175d30169f9ee7c0abfd70e33891087.js (363 KiB) ecf2f6a8b8efa35d5901553b5551096d.js (291 KiB) 16bcdcf93da5842af0ed775a0a7253c3.js (330 KiB) 4bf1c0d1ae4dcfec126a81d17f889020.js (337 KiB) cc4fff5e9f9910946eb3cdf026300539.js (3.36 MiB) bundle.68ad839b846cab159f55.js (3.8 MiB) WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance. Entrypoints: bundle (3.8 MiB) bundle.68ad839b846cab159f55.js WARNING in webpack performance recommendations: You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application. For more info visit https://webpack.js.org/guides/code-splitting/ Child html-webpack-plugin for "index.html": 1 asset Entrypoint undefined = index.html [0] C:/Users/Rene/openremote/node_modules/html-webpack-plugin/lib/loader.js!./index.html 4.05 KiB {0} [built] [2] (webpack)/buildin/global.js 472 bytes {0} [built] [3] (webpack)/buildin/module.js 497 bytes {0} [built] + 1 hidden module > Task :ui:app:mobile:npmClean > mobile@1.0.4 clean C:\Users\Rene\openremote\ui\app\mobile > npx shx rm -rf dist > Task :ui:app:mobile:npmBuild > mobile@1.0.4 build C:\Users\Rene\openremote\ui\app\mobile > npx tsc -b && npx cross-env NODE_OPTIONS=--max_old_space_size=4096 webpack --mode production Browserslist: caniuse-lite is outdated. Please run: npx browserslist@latest --update-db Hash: 3460d36294a8cf96462e Version: webpack 4.43.0 Time: 19872ms Built at: 23-12-2020 11:06:45 Asset Size Chunks Chunk Names bundle.3460d36294a8cf96462e.js 2.89 MiB 0 [emitted] [immutable] [big] bundle images/Icon-128.png 7.41 KiB [emitted] images/Icon-144.png 8.48 KiB [emitted] images/Icon-196.png 12.1 KiB [emitted] images/Icon-256.png 16.6 KiB [emitted] images/Icon-48.png 2.68 KiB [emitted] images/Icon-512.png 41.8 KiB [emitted] images/Icon-72.png 3.92 KiB [emitted] images/ee3a6eeb07c5a91ea0f2e3adfc47c73d.png 19.9 KiB [emitted] images/favicon.ico 1.12 KiB [emitted] images/logo-mobile.png 19.9 KiB [emitted] images/logo-mobile.svg 521 bytes [emitted] images/logo.png 8.32 KiB [emitted] images/onboarding-assets.svg 4.74 KiB [emitted] images/onboarding-geofence.svg 965 bytes [emitted] index.html 3.65 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-ce.js 20 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js 114 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js 85.7 KiB [emitted] modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd.js 66.7 KiB [emitted] modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js 954 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js 659 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js 1.66 KiB [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js 675 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js 860 bytes [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js 1.22 KiB [emitted] modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js 767 bytes [emitted] modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js 115 KiB [emitted] modules/@webcomponents/webcomponentsjs/webcomponents-loader.js 6.13 KiB [emitted] Entrypoint bundle [big] = bundle.3460d36294a8cf96462e.js [24] (webpack)/buildin/global.js 472 bytes {0} [built] [36] (webpack)/buildin/module.js 497 bytes {0} [built] [40] (webpack)/buildin/harmony-module.js 573 bytes {0} [built] [383] C:/Users/Rene/openremote/node_modules/moment/locale sync ^\.\/.*$ 3.13 KiB {0} [optional] [built] [419] C:/Users/Rene/openremote/ui/component/or-survey/node_modules/moment/locale sync ^\.\/.*$ 3 KiB {0} [optional] [built] [420] ./images/onboarding-assets.svg 6.37 KiB {0} [built] [421] ./images/onboarding-geofence.svg 1.3 KiB {0} [built] [422] ./images/logo-mobile.svg 741 bytes {0} [built] [423] ./images/logo.png 11.1 KiB {0} [built] [424] ./images/logo-mobile.png 89 bytes {0} [built] [425] ./src/index.js + 319 modules 3.71 MiB {0} [built] | ./src/index.js 2.41 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/index.js 56.2 KiB [built] | ../or-app/dist/index.js 17.2 KiB [built] | ../or-app/dist/pages/page-mobile-onboarding.js 8.17 KiB [built] | ../or-app/dist/pages/page-mobile-splash.js 4.03 KiB [built] | ../or-app/dist/pages/page-mobile-geofences.js 17.1 KiB [built] | C:/Users/Rene/openremote/ui/component/or-translate/dist/index.js 3.47 KiB [built] | ../or-app/dist/types.js 2.44 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/console.js 27 KiB [built] | C:/Users/Rene/openremote/ui/component/rest/dist/index.js 1.37 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/util.js 16.5 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/event.js 27.4 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/or-icon-set.js 3.5 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/asset-mixin.js 10.9 KiB [built] | C:/Users/Rene/openremote/ui/component/core/dist/defaults.js 792 bytes [built] | + 305 hidden modules + 429 hidden modules WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). This can impact web performance. Assets: bundle.3460d36294a8cf96462e.js (2.89 MiB) WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance. Entrypoints: bundle (2.89 MiB) bundle.3460d36294a8cf96462e.js WARNING in webpack performance recommendations: You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application. For more info visit https://webpack.js.org/guides/code-splitting/ Child html-webpack-plugin for "index.html": 1 asset Entrypoint undefined = index.html [0] C:/Users/Rene/openremote/node_modules/html-webpack-plugin/lib/loader.js!./index.html 4.07 KiB {0} [built] [2] (webpack)/buildin/global.js 472 bytes {0} [built] [3] (webpack)/buildin/module.js 497 bytes {0} [built] + 1 hidden module > Task :ui:component:core:generate > @openremote/core@1.0.3 generate C:\Users\Rene\openremote\ui\component\core > node mdi-iconset-generator.js BUILD SUCCESSFUL in 7m 8s 66 actionable tasks: 61 executed, 5 up-to-date Rene@Rene3 MINGW64 /c/users/rene/openremote (master) $ docker-compose up --build Creating network "openremote_default" with the default driver Creating volume "openremote_proxy-data" with default driver Creating volume "openremote_deployment-data" with default driver Creating volume "openremote_postgresql-data" with default driver Creating volume "openremote_zwave-data" with default driver Building deployment Step 1/5 : FROM debian:stretch-slim stretch-slim: Pulling from library/debian Digest: sha256:eb436e834ba416c45359aa0709febef17fdea65ab6a8f4db12016aa2fa63be0c Status: Downloaded newer image for debian:stretch-slim ---> b87fae470195 Step 2/5 : ARG GIT_COMMIT=unknown ---> Running in 930336101bbc Removing intermediate container 930336101bbc ---> 4668297ca59d Step 3/5 : LABEL git-commit=$GIT_COMMIT ---> Running in 13a262ee88e2 Removing intermediate container 13a262ee88e2 ---> a7297f66339d Step 4/5 : RUN mkdir -p /deployment/extensions ---> Running in 256f65146a0f Removing intermediate container 256f65146a0f ---> 27eb3e3bb258 Step 5/5 : ADD build /deployment ---> f57d3f69123c Successfully built f57d3f69123c Successfully tagged openremote/deployment:latest Building postgresql Step 1/4 : FROM postgres:9.6 9.6: Pulling from library/postgres Digest: sha256:82c335ccb6b60941cb860cbb8252c12f63fd3e27a0d15bce5bc6de110c02a2b4 Status: Downloaded newer image for postgres:9.6 ---> 558c135126d8 Step 2/4 : ENV POSTGIS_MAJOR 2.3 ---> Running in fc66afffa8f7 Removing intermediate container fc66afffa8f7 ---> 9a2482d0c572 Step 3/4 : RUN apt-get update && apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR && apt-get install -y --no-install-recommends postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR-scripts && rm -rf /var/lib/apt/lists/* ---> Running in 6db0893e81cf Ign:1 http://deb.debian.org/debian stretch InRelease Get:2 http://security.debian.org/debian-security stretch/updates InRelease [53.0 kB] Get:3 http://deb.debian.org/debian stretch-updates InRelease [93.6 kB] Get:4 http://deb.debian.org/debian stretch Release [118 kB] Get:5 http://deb.debian.org/debian stretch Release.gpg [2,410 B] Get:6 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [637 kB] Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages [2,596 B] Get:8 http://deb.debian.org/debian stretch/main amd64 Packages [7,080 kB] Get:9 http://apt.postgresql.org/pub/repos/apt stretch-pgdg InRelease [76.6 kB] Get:10 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 Packages [252 kB] Get:11 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/9.6 amd64 Packages [1,841 B] Fetched 8,316 kB in 1s (5,009 kB/s) Reading package lists... Package: postgresql-9.6-postgis-2.3 Versions: 2.3.3+dfsg-1.pgdg90+1 (/var/lib/apt/lists/apt.postgresql.org_pub_repos_apt_dists_stretch-pgdg_main_binary-amd64_Packages.lz4) Description Language: File: /var/lib/apt/lists/deb.debian.org_debian_dists_stretch_main_binary-amd64_Packages.lz4 MD5: e5e93fb57a800c703e3fc68698231de2 Description Language: File: /var/lib/apt/lists/apt.postgresql.org_pub_repos_apt_dists_stretch-pgdg_main_binary-amd64_Packages.lz4 MD5: e5e93fb57a800c703e3fc68698231de2 2.3.1+dfsg-2 (/var/lib/apt/lists/deb.debian.org_debian_dists_stretch_main_binary-amd64_Packages.lz4) Description Language: File: /var/lib/apt/lists/deb.debian.org_debian_dists_stretch_main_binary-amd64_Packages.lz4 MD5: e5e93fb57a800c703e3fc68698231de2 Description Language: File: /var/lib/apt/lists/apt.postgresql.org_pub_repos_apt_dists_stretch-pgdg_main_binary-amd64_Packages.lz4 MD5: e5e93fb57a800c703e3fc68698231de2 Reverse Depends: postgresql-9.6-postgis-2.3-dbgsym,postgresql-9.6-postgis-2.3 2.3.3+dfsg-1.pgdg90+1 postgresql-9.6-postgis-2.3-scripts,postgresql-9.6-postgis-2.3 postgresql-9.6-pgrouting,postgresql-9.6-postgis-2.3 libpostgis-java,postgresql-9.6-postgis-2.3 postgresql-9.6-postgis-2.3-scripts,postgresql-9.6-postgis-2.3 postgis-gui,postgresql-9.6-postgis-2.3 postgis,postgresql-9.6-postgis-2.3 Dependencies: 2.3.3+dfsg-1.pgdg90+1 - postgresql-9.6 (0 (null)) libc6 (2 2.14) libgdal20 (2 2.0.1) libgeos-c1v5 (2 3.5.0) libjson-c3 (2 0.11) liblwgeom-2.3-0 (2 2.3.0) libpcre3 (0 (null)) libproj12 (2 4.9.0) libsfcgal1 (2 1.2.0) libxml2 (2 2.7.4) postgis (3 1.2.1) postgresql-9.6-postgis-2.3-scripts (0 (null)) postgresql-contrib-9.6 (0 (null)) postgis (0 (null)) 2.3.1+dfsg-2 - postgresql-9.6 (0 (null)) libc6 (2 2.14) libgdal20 (2 2.0.1) libgeos-c1v5 (2 3.5.0) libjson-c3 (2 0.11) liblwgeom-2.3-0 (2 2.3.0) libpcre3 (0 (null)) libproj12 (2 4.9.0) libsfcgal1 (2 1.2.0) libxml2 (2 2.7.4) postgis (3 1.2.1) postgresql-9.6-postgis-2.3-scripts (0 (null)) postgresql-contrib-9.6 (0 (null)) postgis (0 (null)) Provides: 2.3.3+dfsg-1.pgdg90+1 - 2.3.1+dfsg-2 - Reverse Provides: Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: fontconfig-config fonts-dejavu-core libaec0 libarmadillo7 libarpack2 libblas-common libblas3 libboost-atomic1.62.0 libboost-chrono1.62.0 libboost-date-time1.62.0 libboost-filesystem1.62.0 libboost-program-options1.62.0 libboost-serialization1.62.0 libboost-system1.62.0 libboost-test1.62.0 libboost-thread1.62.0 libboost-timer1.62.0 libcgal13 libcurl3-gnutls libdap23 libdapclient6v5 libdapserver7v5 libepsilon1 libexpat1 libfontconfig1 libfreetype6 libfreexl1 libgdal20 libgeos-3.7.1 libgeos-c1v5 libgeotiff2 libgfortran3 libgif7 libgmpxx4ldbl libhdf4-0-alt libhdf5-100 libidn2-0 libjbig0 libjpeg62-turbo libjson-c3 libkmlbase1 libkmlconvenience1 libkmldom1 libkmlengine1 libkmlregionator1 libkmlxsd1 liblapack3 liblcms2-2 libltdl7 liblwgeom-2.3-0 libmariadbclient18 libminizip1 libmpfr4 libnetcdf11 libnghttp2-14 libnspr4 libnss3 libodbc1 libogdi3.2 libopenjp2-7 libpng16-16 libpoppler64 libpopt0 libproj12 libpsl5 libqhull7 libquadmath0 librtmp1 libsfcgal1 libspatialite7 libssh2-1 libsuperlu5 libsz2 libtiff5 libunistring0 liburiparser1 libwebp6 libxerces-c3.1 mysql-common odbcinst odbcinst1debian2 proj-data Suggested packages: geotiff-bin gdal-bin libgeotiff-epsg libhdf4-doc libhdf4-alt-dev hdf4-tools liblcms2-utils libmyodbc odbc-postgresql tdsodbc unixodbc-bin ogdi-bin proj-bin postgis Recommended packages: ca-certificates proj-bin poppler-data publicsuffix The following NEW packages will be installed: fontconfig-config fonts-dejavu-core libaec0 libarmadillo7 libarpack2 libblas-common libblas3 libboost-atomic1.62.0 libboost-chrono1.62.0 libboost-date-time1.62.0 libboost-filesystem1.62.0 libboost-program-options1.62.0 libboost-serialization1.62.0 libboost-system1.62.0 libboost-test1.62.0 libboost-thread1.62.0 libboost-timer1.62.0 libcgal13 libcurl3-gnutls libdap23 libdapclient6v5 libdapserver7v5 libepsilon1 libexpat1 libfontconfig1 libfreetype6 libfreexl1 libgdal20 libgeos-3.7.1 libgeos-c1v5 libgeotiff2 libgfortran3 libgif7 libgmpxx4ldbl libhdf4-0-alt libhdf5-100 libidn2-0 libjbig0 libjpeg62-turbo libjson-c3 libkmlbase1 libkmlconvenience1 libkmldom1 libkmlengine1 libkmlregionator1 libkmlxsd1 liblapack3 liblcms2-2 libltdl7 liblwgeom-2.3-0 libmariadbclient18 libminizip1 libmpfr4 libnetcdf11 libnghttp2-14 libnspr4 libnss3 libodbc1 libogdi3.2 libopenjp2-7 libpng16-16 libpoppler64 libpopt0 libproj12 libpsl5 libqhull7 libquadmath0 librtmp1 libsfcgal1 libspatialite7 libssh2-1 libsuperlu5 libsz2 libtiff5 libunistring0 liburiparser1 libwebp6 libxerces-c3.1 mysql-common odbcinst odbcinst1debian2 postgresql-9.6-postgis-2.3 postgresql-9.6-postgis-2.3-scripts proj-data 0 upgraded, 84 newly installed, 0 to remove and 2 not upgraded. Need to get 34.4 MB of archives. After this operation, 192 MB of additional disk space will be used. Get:1 http://security.debian.org/debian-security stretch/updates/main amd64 libcurl3-gnutls amd64 7.52.1-5+deb9u13 [291 kB] Get:2 http://deb.debian.org/debian stretch/main amd64 libpopt0 amd64 1.16-10+b2 [49.4 kB] Get:3 http://deb.debian.org/debian stretch/main amd64 fonts-dejavu-core all 2.37-1 [1,068 kB] Get:4 http://security.debian.org/debian-security stretch/updates/main amd64 libfreetype6 amd64 2.6.3-3.2+deb9u2 [438 kB] Get:5 http://security.debian.org/debian-security stretch/updates/main amd64 libjpeg62-turbo amd64 1:1.5.1-2+deb9u1 [134 kB] Get:6 http://security.debian.org/debian-security stretch/updates/main amd64 libjson-c3 amd64 0.12.1-1.1+deb9u1 [26.1 kB] Get:7 http://security.debian.org/debian-security stretch/updates/main amd64 libmariadbclient18 amd64 10.1.47-0+deb9u1 [785 kB] Get:8 http://deb.debian.org/debian stretch/main amd64 fontconfig-config all 2.11.0-6.7 [271 kB] Get:9 http://deb.debian.org/debian stretch/main amd64 libaec0 amd64 0.3.2-1 [18.5 kB] Get:10 http://deb.debian.org/debian stretch/main amd64 libquadmath0 amd64 6.3.0-18+deb9u1 [131 kB] Get:11 http://deb.debian.org/debian stretch/main amd64 libgfortran3 amd64 6.3.0-18+deb9u1 [265 kB] Get:12 http://deb.debian.org/debian stretch/main amd64 libblas-common amd64 3.7.0-2 [14.2 kB] Get:13 http://deb.debian.org/debian stretch/main amd64 libblas3 amd64 3.7.0-2 [155 kB] Get:14 http://deb.debian.org/debian stretch/main amd64 liblapack3 amd64 3.7.0-2 [2,141 kB] Get:15 http://security.debian.org/debian-security stretch/updates/main amd64 libopenjp2-7 amd64 2.1.2-1.1+deb9u5 [123 kB] Get:16 http://security.debian.org/debian-security stretch/updates/main amd64 libnss3 amd64 2:3.26.2-1.1+deb9u2 [1,245 kB] Get:17 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 libcgal13 amd64 4.13-1~pgdg90+1 [335 kB] Get:18 http://deb.debian.org/debian stretch/main amd64 libarpack2 amd64 3.4.0-1+b1 [96.1 kB] Get:19 http://deb.debian.org/debian stretch/main amd64 libsuperlu5 amd64 5.2.1+dfsg1-2 [160 kB] Get:20 http://security.debian.org/debian-security stretch/updates/main amd64 libpoppler64 amd64 0.48.0-2+deb9u4 [1,288 kB] Get:21 http://deb.debian.org/debian stretch/main amd64 libarmadillo7 amd64 1:7.600.2+dfsg-2 [81.8 kB] Get:22 http://deb.debian.org/debian stretch/main amd64 libboost-atomic1.62.0 amd64 1.62.0+dfsg-4 [30.5 kB] Get:23 http://deb.debian.org/debian stretch/main amd64 libboost-system1.62.0 amd64 1.62.0+dfsg-4 [32.4 kB] Get:24 http://deb.debian.org/debian stretch/main amd64 libboost-chrono1.62.0 amd64 1.62.0+dfsg-4 [36.0 kB] Get:25 http://deb.debian.org/debian stretch/main amd64 libboost-date-time1.62.0 amd64 1.62.0+dfsg-4 [42.9 kB] Get:26 http://deb.debian.org/debian stretch/main amd64 libboost-filesystem1.62.0 amd64 1.62.0+dfsg-4 [63.2 kB] Get:27 http://deb.debian.org/debian stretch/main amd64 libboost-program-options1.62.0 amd64 1.62.0+dfsg-4 [159 kB] Get:28 http://deb.debian.org/debian stretch/main amd64 libboost-serialization1.62.0 amd64 1.62.0+dfsg-4 [125 kB] Get:29 http://deb.debian.org/debian stretch/main amd64 libboost-timer1.62.0 amd64 1.62.0+dfsg-4 [34.5 kB] Get:30 http://deb.debian.org/debian stretch/main amd64 libboost-test1.62.0 amd64 1.62.0+dfsg-4 [254 kB] Get:31 http://deb.debian.org/debian stretch/main amd64 libboost-thread1.62.0 amd64 1.62.0+dfsg-4 [71.5 kB] Get:32 http://deb.debian.org/debian stretch/main amd64 libunistring0 amd64 0.9.6+really0.9.3-0.1 [279 kB] Get:33 http://deb.debian.org/debian stretch/main amd64 libidn2-0 amd64 0.16-1+deb9u1 [60.7 kB] Get:34 http://deb.debian.org/debian stretch/main amd64 libnghttp2-14 amd64 1.18.1-1+deb9u1 [79.2 kB] Get:35 http://deb.debian.org/debian stretch/main amd64 libpsl5 amd64 0.17.0-3 [41.8 kB] Get:36 http://deb.debian.org/debian stretch/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1+b1 [60.4 kB] Get:37 http://deb.debian.org/debian stretch/main amd64 libssh2-1 amd64 1.7.0-1+deb9u1 [139 kB] Get:38 http://security.debian.org/debian-security stretch/updates/main amd64 libxerces-c3.1 amd64 3.1.4+debian-2+deb9u2 [843 kB] Get:39 http://deb.debian.org/debian stretch/main amd64 libdap23 amd64 3.18.2-2+deb9u1 [526 kB] Get:40 http://deb.debian.org/debian stretch/main amd64 libdapclient6v5 amd64 3.18.2-2+deb9u1 [193 kB] Get:41 http://deb.debian.org/debian stretch/main amd64 libdapserver7v5 amd64 3.18.2-2+deb9u1 [121 kB] Get:42 http://deb.debian.org/debian stretch/main amd64 libepsilon1 amd64 0.9.2+dfsg-2 [42.2 kB] Get:43 http://deb.debian.org/debian stretch/main amd64 libexpat1 amd64 2.2.0-2+deb9u3 [83.7 kB] Get:44 http://deb.debian.org/debian stretch/main amd64 libpng16-16 amd64 1.6.28-1+deb9u1 [280 kB] Get:45 http://deb.debian.org/debian stretch/main amd64 libfontconfig1 amd64 2.11.0-6.7+b1 [331 kB] Get:46 http://deb.debian.org/debian stretch/main amd64 libfreexl1 amd64 1.0.2-2+deb9u2 [34.1 kB] Get:47 http://deb.debian.org/debian stretch/main amd64 proj-data all 4.9.3-1 [4,069 kB] Get:48 http://deb.debian.org/debian stretch/main amd64 libproj12 amd64 4.9.3-1 [183 kB] Get:49 http://deb.debian.org/debian stretch/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] Get:50 http://deb.debian.org/debian stretch/main amd64 libtiff5 amd64 4.0.8-2+deb9u5 [239 kB] Get:51 http://deb.debian.org/debian stretch/main amd64 libgeotiff2 amd64 1.4.2-2+b1 [74.5 kB] Get:52 http://deb.debian.org/debian stretch/main amd64 libgif7 amd64 5.1.4-0.4 [43.1 kB] Get:53 http://deb.debian.org/debian stretch/main amd64 libhdf4-0-alt amd64 4.2.12-3 [276 kB] Get:54 http://deb.debian.org/debian stretch/main amd64 libsz2 amd64 0.3.2-1 [5,730 B] Get:55 http://deb.debian.org/debian stretch/main amd64 libhdf5-100 amd64 1.10.0-patch1+docs-3+deb9u1 [1,282 kB] Get:56 http://deb.debian.org/debian stretch/main amd64 libminizip1 amd64 1.1-8+b1 [20.4 kB] Get:57 http://deb.debian.org/debian stretch/main amd64 liburiparser1 amd64 0.8.4-1+deb9u1 [42.2 kB] Get:58 http://deb.debian.org/debian stretch/main amd64 libkmlbase1 amd64 1.3.0-3 [48.0 kB] Get:59 http://deb.debian.org/debian stretch/main amd64 libkmldom1 amd64 1.3.0-3 [176 kB] Get:60 http://deb.debian.org/debian stretch/main amd64 libkmlengine1 amd64 1.3.0-3 [79.0 kB] Get:61 http://deb.debian.org/debian stretch/main amd64 libkmlconvenience1 amd64 1.3.0-3 [48.1 kB] Get:62 http://deb.debian.org/debian stretch/main amd64 libkmlregionator1 amd64 1.3.0-3 [24.0 kB] Get:63 http://deb.debian.org/debian stretch/main amd64 libkmlxsd1 amd64 1.3.0-3 [35.3 kB] Get:64 http://deb.debian.org/debian stretch/main amd64 mysql-common all 5.8+1.0.2 [5,608 B] Get:65 http://deb.debian.org/debian stretch/main amd64 libnetcdf11 amd64 1:4.4.1.1-2 [334 kB] Get:66 http://deb.debian.org/debian stretch/main amd64 libltdl7 amd64 2.4.6-2 [389 kB] Get:67 http://deb.debian.org/debian stretch/main amd64 libodbc1 amd64 2.3.4-1 [214 kB] Get:68 http://deb.debian.org/debian stretch/main amd64 libogdi3.2 amd64 3.2.0+ds-2 [227 kB] Get:69 http://deb.debian.org/debian stretch/main amd64 liblcms2-2 amd64 2.8-4+deb9u1 [143 kB] Get:70 http://deb.debian.org/debian stretch/main amd64 libnspr4 amd64 2:4.12-6 [117 kB] Get:71 http://deb.debian.org/debian stretch/main amd64 libqhull7 amd64 2015.2-2 [194 kB] Get:72 http://deb.debian.org/debian stretch/main amd64 libspatialite7 amd64 4.3.0a-5+b1 [1,232 kB] Get:73 http://deb.debian.org/debian stretch/main amd64 libwebp6 amd64 0.5.2-1 [235 kB] Get:74 http://deb.debian.org/debian stretch/main amd64 odbcinst amd64 2.3.4-1 [43.5 kB] Get:75 http://deb.debian.org/debian stretch/main amd64 odbcinst1debian2 amd64 2.3.4-1 [75.2 kB] Get:76 http://deb.debian.org/debian stretch/main amd64 libgdal20 amd64 2.1.2+dfsg-5 [5,017 kB] Get:77 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 libgeos-3.7.1 amd64 3.7.1-1~pgdg90+1 [728 kB] Get:78 http://deb.debian.org/debian stretch/main amd64 libgmpxx4ldbl amd64 2:6.1.2+dfsg-1 [22.2 kB] Get:79 http://deb.debian.org/debian stretch/main amd64 libmpfr4 amd64 3.1.5-1 [556 kB] Get:80 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 libgeos-c1v5 amd64 3.7.1-1~pgdg90+1 [297 kB] Get:81 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 libsfcgal1 amd64 1.3.6-2~pgdg90+1 [1,719 kB] Get:82 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 liblwgeom-2.3-0 amd64 2.3.3+dfsg-1.pgdg90+1 [670 kB] Get:83 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 postgresql-9.6-postgis-2.3 amd64 2.3.3+dfsg-1.pgdg90+1 [997 kB] Get:84 http://apt.postgresql.org/pub/repos/apt stretch-pgdg/main amd64 postgresql-9.6-postgis-2.3-scripts all 2.3.3+dfsg-1.pgdg90+1 [1,409 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 34.4 MB in 1s (19.5 MB/s) Selecting previously unselected package libpopt0:amd64. (Reading database ... 10351 files and directories currently installed.) Preparing to unpack .../00-libpopt0_1.16-10+b2_amd64.deb ... Unpacking libpopt0:amd64 (1.16-10+b2) ... Selecting previously unselected package fonts-dejavu-core. Preparing to unpack .../01-fonts-dejavu-core_2.37-1_all.deb ... Unpacking fonts-dejavu-core (2.37-1) ... Selecting previously unselected package fontconfig-config. Preparing to unpack .../02-fontconfig-config_2.11.0-6.7_all.deb ... Unpacking fontconfig-config (2.11.0-6.7) ... Selecting previously unselected package libaec0:amd64. Preparing to unpack .../03-libaec0_0.3.2-1_amd64.deb ... Unpacking libaec0:amd64 (0.3.2-1) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../04-libquadmath0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libquadmath0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libgfortran3:amd64. Preparing to unpack .../05-libgfortran3_6.3.0-18+deb9u1_amd64.deb ... Unpacking libgfortran3:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libblas-common. Preparing to unpack .../06-libblas-common_3.7.0-2_amd64.deb ... Unpacking libblas-common (3.7.0-2) ... Selecting previously unselected package libblas3. Preparing to unpack .../07-libblas3_3.7.0-2_amd64.deb ... Unpacking libblas3 (3.7.0-2) ... Selecting previously unselected package liblapack3. Preparing to unpack .../08-liblapack3_3.7.0-2_amd64.deb ... Unpacking liblapack3 (3.7.0-2) ... Selecting previously unselected package libarpack2. Preparing to unpack .../09-libarpack2_3.4.0-1+b1_amd64.deb ... Unpacking libarpack2 (3.4.0-1+b1) ... Selecting previously unselected package libsuperlu5:amd64. Preparing to unpack .../10-libsuperlu5_5.2.1+dfsg1-2_amd64.deb ... Unpacking libsuperlu5:amd64 (5.2.1+dfsg1-2) ... Selecting previously unselected package libarmadillo7. Preparing to unpack .../11-libarmadillo7_1%3a7.600.2+dfsg-2_amd64.deb ... Unpacking libarmadillo7 (1:7.600.2+dfsg-2) ... Selecting previously unselected package libboost-atomic1.62.0:amd64. Preparing to unpack .../12-libboost-atomic1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-atomic1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-system1.62.0:amd64. Preparing to unpack .../13-libboost-system1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-system1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-chrono1.62.0:amd64. Preparing to unpack .../14-libboost-chrono1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-chrono1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-date-time1.62.0:amd64. Preparing to unpack .../15-libboost-date-time1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-date-time1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-filesystem1.62.0:amd64. Preparing to unpack .../16-libboost-filesystem1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-filesystem1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-program-options1.62.0:amd64. Preparing to unpack .../17-libboost-program-options1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-program-options1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-serialization1.62.0:amd64. Preparing to unpack .../18-libboost-serialization1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-serialization1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-timer1.62.0:amd64. Preparing to unpack .../19-libboost-timer1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-timer1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-test1.62.0:amd64. Preparing to unpack .../20-libboost-test1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-test1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libboost-thread1.62.0:amd64. Preparing to unpack .../21-libboost-thread1.62.0_1.62.0+dfsg-4_amd64.deb ... Unpacking libboost-thread1.62.0:amd64 (1.62.0+dfsg-4) ... Selecting previously unselected package libcgal13:amd64. Preparing to unpack .../22-libcgal13_4.13-1~pgdg90+1_amd64.deb ... Unpacking libcgal13:amd64 (4.13-1~pgdg90+1) ... Selecting previously unselected package libunistring0:amd64. Preparing to unpack .../23-libunistring0_0.9.6+really0.9.3-0.1_amd64.deb ... Unpacking libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Selecting previously unselected package libidn2-0:amd64. Preparing to unpack .../24-libidn2-0_0.16-1+deb9u1_amd64.deb ... Unpacking libidn2-0:amd64 (0.16-1+deb9u1) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../25-libnghttp2-14_1.18.1-1+deb9u1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.18.1-1+deb9u1) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../26-libpsl5_0.17.0-3_amd64.deb ... Unpacking libpsl5:amd64 (0.17.0-3) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../27-librtmp1_2.4+20151223.gitfa8646d.1-1+b1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Selecting previously unselected package libssh2-1:amd64. Preparing to unpack .../28-libssh2-1_1.7.0-1+deb9u1_amd64.deb ... Unpacking libssh2-1:amd64 (1.7.0-1+deb9u1) ... Selecting previously unselected package libcurl3-gnutls:amd64. Preparing to unpack .../29-libcurl3-gnutls_7.52.1-5+deb9u13_amd64.deb ... Unpacking libcurl3-gnutls:amd64 (7.52.1-5+deb9u13) ... Selecting previously unselected package libdap23:amd64. Preparing to unpack .../30-libdap23_3.18.2-2+deb9u1_amd64.deb ... Unpacking libdap23:amd64 (3.18.2-2+deb9u1) ... Selecting previously unselected package libdapclient6v5:amd64. Preparing to unpack .../31-libdapclient6v5_3.18.2-2+deb9u1_amd64.deb ... Unpacking libdapclient6v5:amd64 (3.18.2-2+deb9u1) ... Selecting previously unselected package libdapserver7v5:amd64. Preparing to unpack .../32-libdapserver7v5_3.18.2-2+deb9u1_amd64.deb ... Unpacking libdapserver7v5:amd64 (3.18.2-2+deb9u1) ... Selecting previously unselected package libepsilon1:amd64. Preparing to unpack .../33-libepsilon1_0.9.2+dfsg-2_amd64.deb ... Unpacking libepsilon1:amd64 (0.9.2+dfsg-2) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../34-libexpat1_2.2.0-2+deb9u3_amd64.deb ... Unpacking libexpat1:amd64 (2.2.0-2+deb9u3) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../35-libpng16-16_1.6.28-1+deb9u1_amd64.deb ... Unpacking libpng16-16:amd64 (1.6.28-1+deb9u1) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../36-libfreetype6_2.6.3-3.2+deb9u2_amd64.deb ... Unpacking libfreetype6:amd64 (2.6.3-3.2+deb9u2) ... Selecting previously unselected package libfontconfig1:amd64. Preparing to unpack .../37-libfontconfig1_2.11.0-6.7+b1_amd64.deb ... Unpacking libfontconfig1:amd64 (2.11.0-6.7+b1) ... Selecting previously unselected package libfreexl1:amd64. Preparing to unpack .../38-libfreexl1_1.0.2-2+deb9u2_amd64.deb ... Unpacking libfreexl1:amd64 (1.0.2-2+deb9u2) ... Selecting previously unselected package libgeos-3.7.1:amd64. Preparing to unpack .../39-libgeos-3.7.1_3.7.1-1~pgdg90+1_amd64.deb ... Unpacking libgeos-3.7.1:amd64 (3.7.1-1~pgdg90+1) ... Selecting previously unselected package libgeos-c1v5:amd64. Preparing to unpack .../40-libgeos-c1v5_3.7.1-1~pgdg90+1_amd64.deb ... Unpacking libgeos-c1v5:amd64 (3.7.1-1~pgdg90+1) ... Selecting previously unselected package proj-data. Preparing to unpack .../41-proj-data_4.9.3-1_all.deb ... Unpacking proj-data (4.9.3-1) ... Selecting previously unselected package libproj12. Preparing to unpack .../42-libproj12_4.9.3-1_amd64.deb ... Unpacking libproj12 (4.9.3-1) ... Selecting previously unselected package libjbig0:amd64. Preparing to unpack .../43-libjbig0_2.1-3.1+b2_amd64.deb ... Unpacking libjbig0:amd64 (2.1-3.1+b2) ... Selecting previously unselected package libjpeg62-turbo:amd64. Preparing to unpack .../44-libjpeg62-turbo_1%3a1.5.1-2+deb9u1_amd64.deb ... Unpacking libjpeg62-turbo:amd64 (1:1.5.1-2+deb9u1) ... Selecting previously unselected package libtiff5:amd64. Preparing to unpack .../45-libtiff5_4.0.8-2+deb9u5_amd64.deb ... Unpacking libtiff5:amd64 (4.0.8-2+deb9u5) ... Selecting previously unselected package libgeotiff2:amd64. Preparing to unpack .../46-libgeotiff2_1.4.2-2+b1_amd64.deb ... Unpacking libgeotiff2:amd64 (1.4.2-2+b1) ... Selecting previously unselected package libgif7:amd64. Preparing to unpack .../47-libgif7_5.1.4-0.4_amd64.deb ... Unpacking libgif7:amd64 (5.1.4-0.4) ... Selecting previously unselected package libhdf4-0-alt. Preparing to unpack .../48-libhdf4-0-alt_4.2.12-3_amd64.deb ... Unpacking libhdf4-0-alt (4.2.12-3) ... Selecting previously unselected package libsz2:amd64. Preparing to unpack .../49-libsz2_0.3.2-1_amd64.deb ... Unpacking libsz2:amd64 (0.3.2-1) ... Selecting previously unselected package libhdf5-100:amd64. Preparing to unpack .../50-libhdf5-100_1.10.0-patch1+docs-3+deb9u1_amd64.deb ... Unpacking libhdf5-100:amd64 (1.10.0-patch1+docs-3+deb9u1) ... Selecting previously unselected package libjson-c3:amd64. Preparing to unpack .../51-libjson-c3_0.12.1-1.1+deb9u1_amd64.deb ... Unpacking libjson-c3:amd64 (0.12.1-1.1+deb9u1) ... Selecting previously unselected package libminizip1:amd64. Preparing to unpack .../52-libminizip1_1.1-8+b1_amd64.deb ... Unpacking libminizip1:amd64 (1.1-8+b1) ... Selecting previously unselected package liburiparser1:amd64. Preparing to unpack .../53-liburiparser1_0.8.4-1+deb9u1_amd64.deb ... Unpacking liburiparser1:amd64 (0.8.4-1+deb9u1) ... Selecting previously unselected package libkmlbase1:amd64. Preparing to unpack .../54-libkmlbase1_1.3.0-3_amd64.deb ... Unpacking libkmlbase1:amd64 (1.3.0-3) ... Selecting previously unselected package libkmldom1:amd64. Preparing to unpack .../55-libkmldom1_1.3.0-3_amd64.deb ... Unpacking libkmldom1:amd64 (1.3.0-3) ... Selecting previously unselected package libkmlengine1:amd64. Preparing to unpack .../56-libkmlengine1_1.3.0-3_amd64.deb ... Unpacking libkmlengine1:amd64 (1.3.0-3) ... Selecting previously unselected package libkmlconvenience1:amd64. Preparing to unpack .../57-libkmlconvenience1_1.3.0-3_amd64.deb ... Unpacking libkmlconvenience1:amd64 (1.3.0-3) ... Selecting previously unselected package libkmlregionator1:amd64. Preparing to unpack .../58-libkmlregionator1_1.3.0-3_amd64.deb ... Unpacking libkmlregionator1:amd64 (1.3.0-3) ... Selecting previously unselected package libkmlxsd1:amd64. Preparing to unpack .../59-libkmlxsd1_1.3.0-3_amd64.deb ... Unpacking libkmlxsd1:amd64 (1.3.0-3) ... Selecting previously unselected package mysql-common. Preparing to unpack .../60-mysql-common_5.8+1.0.2_all.deb ... Unpacking mysql-common (5.8+1.0.2) ... Selecting previously unselected package libmariadbclient18:amd64. Preparing to unpack .../61-libmariadbclient18_10.1.47-0+deb9u1_amd64.deb ... Unpacking libmariadbclient18:amd64 (10.1.47-0+deb9u1) ... Selecting previously unselected package libnetcdf11. Preparing to unpack .../62-libnetcdf11_1%3a4.4.1.1-2_amd64.deb ... Unpacking libnetcdf11 (1:4.4.1.1-2) ... Selecting previously unselected package libltdl7:amd64. Preparing to unpack .../63-libltdl7_2.4.6-2_amd64.deb ... Unpacking libltdl7:amd64 (2.4.6-2) ... Selecting previously unselected package libodbc1:amd64. Preparing to unpack .../64-libodbc1_2.3.4-1_amd64.deb ... Unpacking libodbc1:amd64 (2.3.4-1) ... Selecting previously unselected package libogdi3.2. Preparing to unpack .../65-libogdi3.2_3.2.0+ds-2_amd64.deb ... Unpacking libogdi3.2 (3.2.0+ds-2) ... Selecting previously unselected package libopenjp2-7:amd64. Preparing to unpack .../66-libopenjp2-7_2.1.2-1.1+deb9u5_amd64.deb ... Unpacking libopenjp2-7:amd64 (2.1.2-1.1+deb9u5) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../67-liblcms2-2_2.8-4+deb9u1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.8-4+deb9u1) ... Selecting previously unselected package libnspr4:amd64. Preparing to unpack .../68-libnspr4_2%3a4.12-6_amd64.deb ... Unpacking libnspr4:amd64 (2:4.12-6) ... Selecting previously unselected package libnss3:amd64. Preparing to unpack .../69-libnss3_2%3a3.26.2-1.1+deb9u2_amd64.deb ... Unpacking libnss3:amd64 (2:3.26.2-1.1+deb9u2) ... Selecting previously unselected package libpoppler64:amd64. Preparing to unpack .../70-libpoppler64_0.48.0-2+deb9u4_amd64.deb ... Unpacking libpoppler64:amd64 (0.48.0-2+deb9u4) ... Selecting previously unselected package libqhull7:amd64. Preparing to unpack .../71-libqhull7_2015.2-2_amd64.deb ... Unpacking libqhull7:amd64 (2015.2-2) ... Selecting previously unselected package libspatialite7:amd64. Preparing to unpack .../72-libspatialite7_4.3.0a-5+b1_amd64.deb ... Unpacking libspatialite7:amd64 (4.3.0a-5+b1) ... Selecting previously unselected package libwebp6:amd64. Preparing to unpack .../73-libwebp6_0.5.2-1_amd64.deb ... Unpacking libwebp6:amd64 (0.5.2-1) ... Selecting previously unselected package libxerces-c3.1:amd64. Preparing to unpack .../74-libxerces-c3.1_3.1.4+debian-2+deb9u2_amd64.deb ... Unpacking libxerces-c3.1:amd64 (3.1.4+debian-2+deb9u2) ... Selecting previously unselected package odbcinst. Preparing to unpack .../75-odbcinst_2.3.4-1_amd64.deb ... Unpacking odbcinst (2.3.4-1) ... Selecting previously unselected package odbcinst1debian2:amd64. Preparing to unpack .../76-odbcinst1debian2_2.3.4-1_amd64.deb ... Unpacking odbcinst1debian2:amd64 (2.3.4-1) ... Selecting previously unselected package libgdal20. Preparing to unpack .../77-libgdal20_2.1.2+dfsg-5_amd64.deb ... Unpacking libgdal20 (2.1.2+dfsg-5) ... Selecting previously unselected package libgmpxx4ldbl:amd64. Preparing to unpack .../78-libgmpxx4ldbl_2%3a6.1.2+dfsg-1_amd64.deb ... Unpacking libgmpxx4ldbl:amd64 (2:6.1.2+dfsg-1) ... Selecting previously unselected package libmpfr4:amd64. Preparing to unpack .../79-libmpfr4_3.1.5-1_amd64.deb ... Unpacking libmpfr4:amd64 (3.1.5-1) ... Selecting previously unselected package libsfcgal1. Preparing to unpack .../80-libsfcgal1_1.3.6-2~pgdg90+1_amd64.deb ... Unpacking libsfcgal1 (1.3.6-2~pgdg90+1) ... Selecting previously unselected package liblwgeom-2.3-0. Preparing to unpack .../81-liblwgeom-2.3-0_2.3.3+dfsg-1.pgdg90+1_amd64.deb ... Unpacking liblwgeom-2.3-0 (2.3.3+dfsg-1.pgdg90+1) ... Selecting previously unselected package postgresql-9.6-postgis-2.3. Preparing to unpack .../82-postgresql-9.6-postgis-2.3_2.3.3+dfsg-1.pgdg90+1_amd64.deb ... Unpacking postgresql-9.6-postgis-2.3 (2.3.3+dfsg-1.pgdg90+1) ... Selecting previously unselected package postgresql-9.6-postgis-2.3-scripts. Preparing to unpack .../83-postgresql-9.6-postgis-2.3-scripts_2.3.3+dfsg-1.pgdg90+1_all.deb ... Unpacking postgresql-9.6-postgis-2.3-scripts (2.3.3+dfsg-1.pgdg90+1) ... Setting up libquadmath0:amd64 (6.3.0-18+deb9u1) ... Setting up libminizip1:amd64 (1.1-8+b1) ... Setting up libboost-serialization1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libpopt0:amd64 (1.16-10+b2) ... Setting up libaec0:amd64 (0.3.2-1) ... Setting up libexpat1:amd64 (2.2.0-2+deb9u3) ... Setting up libopenjp2-7:amd64 (2.1.2-1.1+deb9u5) ... Setting up libqhull7:amd64 (2015.2-2) ... Setting up libboost-date-time1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libjpeg62-turbo:amd64 (1:1.5.1-2+deb9u1) ... Setting up libnghttp2-14:amd64 (1.18.1-1+deb9u1) ... Setting up libpng16-16:amd64 (1.6.28-1+deb9u1) ... Setting up liblcms2-2:amd64 (2.8-4+deb9u1) ... Setting up libjbig0:amd64 (2.1-3.1+b2) ... Setting up fonts-dejavu-core (2.37-1) ... Setting up libboost-program-options1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libblas-common (3.7.0-2) ... Setting up libjson-c3:amd64 (0.12.1-1.1+deb9u1) ... Setting up libgfortran3:amd64 (6.3.0-18+deb9u1) ... Setting up mysql-common (5.8+1.0.2) ... update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode Setting up postgresql-9.6-postgis-2.3-scripts (2.3.3+dfsg-1.pgdg90+1) ... Setting up libtiff5:amd64 (4.0.8-2+deb9u5) ... Setting up libgif7:amd64 (5.1.4-0.4) ... Setting up libmariadbclient18:amd64 (10.1.47-0+deb9u1) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Setting up libepsilon1:amd64 (0.9.2+dfsg-2) ... Setting up libnspr4:amd64 (2:4.12-6) ... Setting up libdap23:amd64 (3.18.2-2+deb9u1) ... Setting up libfreexl1:amd64 (1.0.2-2+deb9u2) ... Setting up libfreetype6:amd64 (2.6.3-3.2+deb9u2) ... Setting up libgeos-3.7.1:amd64 (3.7.1-1~pgdg90+1) ... Setting up libblas3 (3.7.0-2) ... update-alternatives: using /usr/lib/libblas/libblas.so.3 to provide /usr/lib/libblas.so.3 (libblas.so.3) in auto mode Setting up libssh2-1:amd64 (1.7.0-1+deb9u1) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Setting up libdapserver7v5:amd64 (3.18.2-2+deb9u1) ... Setting up libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Setting up libltdl7:amd64 (2.4.6-2) ... Processing triggers for postgresql-common (223.pgdg90+1) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline Building PostgreSQL dictionaries from installed myspell/hunspell packages... Removing obsolete dictionary files: Setting up libboost-atomic1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libmpfr4:amd64 (3.1.5-1) ... Setting up libhdf4-0-alt (4.2.12-3) ... Setting up libgmpxx4ldbl:amd64 (2:6.1.2+dfsg-1) ... Setting up libboost-system1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up liburiparser1:amd64 (0.8.4-1+deb9u1) ... Setting up libsz2:amd64 (0.3.2-1) ... Setting up proj-data (4.9.3-1) ... Setting up libwebp6:amd64 (0.5.2-1) ... Setting up libproj12 (4.9.3-1) ... Setting up fontconfig-config (2.11.0-6.7) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline Setting up libidn2-0:amd64 (0.16-1+deb9u1) ... Setting up libodbc1:amd64 (2.3.4-1) ... Setting up libhdf5-100:amd64 (1.10.0-patch1+docs-3+deb9u1) ... Setting up libboost-thread1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libpsl5:amd64 (0.17.0-3) ... Setting up liblapack3 (3.7.0-2) ... update-alternatives: using /usr/lib/lapack/liblapack.so.3 to provide /usr/lib/liblapack.so.3 (liblapack.so.3) in auto mode Setting up libnss3:amd64 (2:3.26.2-1.1+deb9u2) ... Setting up libsuperlu5:amd64 (5.2.1+dfsg1-2) ... Setting up libkmlbase1:amd64 (1.3.0-3) ... Setting up libogdi3.2 (3.2.0+ds-2) ... Setting up libkmlxsd1:amd64 (1.3.0-3) ... Setting up libgeos-c1v5:amd64 (3.7.1-1~pgdg90+1) ... Setting up libboost-filesystem1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libgeotiff2:amd64 (1.4.2-2+b1) ... Setting up libspatialite7:amd64 (4.3.0a-5+b1) ... Setting up libarpack2 (3.4.0-1+b1) ... Setting up libcgal13:amd64 (4.13-1~pgdg90+1) ... Setting up libkmldom1:amd64 (1.3.0-3) ... Setting up libboost-chrono1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libfontconfig1:amd64 (2.11.0-6.7+b1) ... Setting up libboost-timer1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libcurl3-gnutls:amd64 (7.52.1-5+deb9u13) ... Setting up libpoppler64:amd64 (0.48.0-2+deb9u4) ... Setting up libarmadillo7 (1:7.600.2+dfsg-2) ... Setting up libdapclient6v5:amd64 (3.18.2-2+deb9u1) ... Setting up libkmlengine1:amd64 (1.3.0-3) ... Setting up libboost-test1.62.0:amd64 (1.62.0+dfsg-4) ... Setting up libxerces-c3.1:amd64 (3.1.4+debian-2+deb9u2) ... Setting up libnetcdf11 (1:4.4.1.1-2) ... Setting up libkmlconvenience1:amd64 (1.3.0-3) ... Setting up libsfcgal1 (1.3.6-2~pgdg90+1) ... Setting up libkmlregionator1:amd64 (1.3.0-3) ... Setting up liblwgeom-2.3-0 (2.3.3+dfsg-1.pgdg90+1) ... Setting up odbcinst1debian2:amd64 (2.3.4-1) ... Setting up odbcinst (2.3.4-1) ... Setting up libgdal20 (2.1.2+dfsg-5) ... Setting up postgresql-9.6-postgis-2.3 (2.3.3+dfsg-1.pgdg90+1) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Removing intermediate container 6db0893e81cf ---> fa1f9da9fee8 Step 4/4 : HEALTHCHECK --interval=3s --timeout=3s --start-period=2s --retries=30 CMD gosu postgres pg_isready ---> Running in b3c68ea98482 Removing intermediate container b3c68ea98482 ---> b683a877ac5d Successfully built b683a877ac5d Successfully tagged openremote/postgresql:latest Building keycloak Step 1/12 : FROM jboss/keycloak:11.0.2 11.0.2: Pulling from jboss/keycloak Digest: sha256:8cdd41cb4a0b210ed3f07df5d18306762e1755bb8d6c1ffc5e083c080528783d Status: Downloaded newer image for jboss/keycloak:11.0.2 ---> bccb3f014183 Step 2/12 : MAINTAINER support@openremote.io ---> Running in db21c275cfb4 Removing intermediate container db21c275cfb4 ---> 6b57e9512a85 Step 3/12 : ARG GIT_COMMIT=unknown ---> Running in 0ebcea3cbbe1 Removing intermediate container 0ebcea3cbbe1 ---> 13725bef536b Step 4/12 : LABEL git-commit=$GIT_COMMIT ---> Running in 1be6c73ecb30 Removing intermediate container 1be6c73ecb30 ---> c4f822f428cc Step 5/12 : USER root ---> Running in 56364a90c513 Removing intermediate container 56364a90c513 ---> ddf356c02f93 Step 6/12 : ADD docker-entrypoint.sh /opt/jboss/ ---> 17ed4f061a3d Step 7/12 : RUN chmod +x /opt/jboss/docker-entrypoint.sh ---> Running in 0fcb8cda3549 Removing intermediate container 0fcb8cda3549 ---> 8a6507afd7ac Step 8/12 : HEALTHCHECK --interval=3s --timeout=3s --start-period=600s --retries=30 CMD curl --fail --silent http://localhost:8080/auth || exit 1 ---> Running in 3f181bd353dc Removing intermediate container 3f181bd353dc ---> 0b2c602771cc Step 9/12 : USER 1000 ---> Running in f11cae73f74b Removing intermediate container f11cae73f74b ---> d7be0d635cc5 Step 10/12 : EXPOSE 8080 ---> Running in 877a194109ad Removing intermediate container 877a194109ad ---> 1a80542fc0c7 Step 11/12 : ENTRYPOINT ["/opt/jboss/docker-entrypoint.sh"] ---> Running in 68659bb0c550 Removing intermediate container 68659bb0c550 ---> 50708d02464f Step 12/12 : CMD ["-b", "0.0.0.0"] ---> Running in ab05417c0ea3 Removing intermediate container ab05417c0ea3 ---> 9f1f959b33f9 Successfully built 9f1f959b33f9 Successfully tagged openremote/keycloak:latest Building manager Step 1/20 : FROM debian:stretch-slim ---> b87fae470195 Step 2/20 : RUN mkdir -p /usr/share/man/man1 ---> Running in e6b9315828fd Removing intermediate container e6b9315828fd ---> 0ef585187006 Step 3/20 : RUN apt-get update && apt-get install -y curl openjdk-8-jre-headless --no-install-recommends && rm -rf /var/lib/apt/lists/* ---> Running in 90cd653e411a Get:1 http://security.debian.org/debian-security stretch/updates InRelease [53.0 kB] Ign:2 http://deb.debian.org/debian stretch InRelease Get:3 http://deb.debian.org/debian stretch-updates InRelease [93.6 kB] Get:4 http://deb.debian.org/debian stretch Release [118 kB] Get:5 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [637 kB] Get:6 http://deb.debian.org/debian stretch Release.gpg [2410 B] Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages [2596 B] Get:8 http://deb.debian.org/debian stretch/main amd64 Packages [7080 kB] Fetched 7986 kB in 1s (6059 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: ca-certificates ca-certificates-java fontconfig-config fonts-dejavu-core java-common libavahi-client3 libavahi-common-data libavahi-common3 libbsd0 libcups2 libcurl3 libdbus-1-3 libexpat1 libffi6 libfontconfig1 libfreetype6 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed4 libidn11 libidn2-0 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.4-2 libldap-common libnettle6 libnghttp2-14 libnspr4 libnss3 libp11-kit0 libpcsclite1 libpng16-16 libpsl5 librtmp1 libsasl2-2 libsasl2-modules-db libsqlite3-0 libssh2-1 libssl1.0.2 libssl1.1 libtasn1-6 libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxi6 libxrender1 libxtst6 openssl ucf x11-common Suggested packages: default-jre cups-common gnutls-bin krb5-doc krb5-user liblcms2-utils pcscd libnss-mdns fonts-dejavu-extra fonts-ipafont-gothic fonts-ipafont-mincho fonts-wqy-microhei fonts-wqy-zenhei fonts-indic Recommended packages: dbus krb5-locales publicsuffix libsasl2-modules The following NEW packages will be installed: ca-certificates ca-certificates-java curl fontconfig-config fonts-dejavu-core java-common libavahi-client3 libavahi-common-data libavahi-common3 libbsd0 libcups2 libcurl3 libdbus-1-3 libexpat1 libffi6 libfontconfig1 libfreetype6 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed4 libidn11 libidn2-0 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.4-2 libldap-common libnettle6 libnghttp2-14 libnspr4 libnss3 libp11-kit0 libpcsclite1 libpng16-16 libpsl5 librtmp1 libsasl2-2 libsasl2-modules-db libsqlite3-0 libssh2-1 libssl1.0.2 libssl1.1 libtasn1-6 libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxi6 libxrender1 libxtst6 openjdk-8-jre-headless openssl ucf x11-common 0 upgraded, 61 newly installed, 0 to remove and 0 not upgraded. Need to get 43.1 MB of archives. After this operation, 142 MB of additional disk space will be used. Get:1 http://security.debian.org/debian-security stretch/updates/main amd64 libssl1.0.2 amd64 1.0.2u-1~deb9u3 [1306 kB] Get:2 http://deb.debian.org/debian stretch/main amd64 libxau6 amd64 1:1.0.8-1 [20.7 kB] Get:3 http://deb.debian.org/debian stretch/main amd64 libgmp10 amd64 2:6.1.2+dfsg-1 [253 kB] Get:4 http://deb.debian.org/debian stretch/main amd64 libnettle6 amd64 3.3-1+b2 [192 kB] Get:5 http://deb.debian.org/debian stretch/main amd64 libhogweed4 amd64 3.3-1+b2 [136 kB] Get:6 http://deb.debian.org/debian stretch/main amd64 libidn11 amd64 1.33-1+deb9u1 [115 kB] Get:7 http://deb.debian.org/debian stretch/main amd64 libffi6 amd64 3.2.1-6 [20.4 kB] Get:8 http://deb.debian.org/debian stretch/main amd64 libp11-kit0 amd64 0.23.3-2 [111 kB] Get:9 http://deb.debian.org/debian stretch/main amd64 libtasn1-6 amd64 4.10-1.1+deb9u1 [50.6 kB] Get:10 http://deb.debian.org/debian stretch/main amd64 libgnutls30 amd64 3.5.8-5+deb9u5 [896 kB] Get:11 http://deb.debian.org/debian stretch/main amd64 libkeyutils1 amd64 1.5.9-9 [12.4 kB] Get:12 http://deb.debian.org/debian stretch/main amd64 libsasl2-modules-db amd64 2.1.27~101-g0780600+dfsg-3+deb9u1 [68.4 kB] Get:13 http://deb.debian.org/debian stretch/main amd64 libsasl2-2 amd64 2.1.27~101-g0780600+dfsg-3+deb9u1 [105 kB] Get:14 http://deb.debian.org/debian stretch/main amd64 ucf all 3.0036 [70.2 kB] Get:15 http://deb.debian.org/debian stretch/main amd64 ca-certificates all 20200601~deb9u1 [160 kB] Get:16 http://deb.debian.org/debian stretch/main amd64 java-common all 0.58+deb9u1 [13.6 kB] Get:17 http://deb.debian.org/debian stretch/main amd64 libavahi-common-data amd64 0.6.32-2 [118 kB] Get:18 http://deb.debian.org/debian stretch/main amd64 libavahi-common3 amd64 0.6.32-2 [52.0 kB] Get:19 http://deb.debian.org/debian stretch/main amd64 libdbus-1-3 amd64 1.10.32-0+deb9u1 [196 kB] Get:20 http://deb.debian.org/debian stretch/main amd64 libavahi-client3 amd64 0.6.32-2 [55.3 kB] Get:21 http://deb.debian.org/debian stretch/main amd64 libcups2 amd64 2.2.1-8+deb9u6 [307 kB] Get:22 http://deb.debian.org/debian stretch/main amd64 liblcms2-2 amd64 2.8-4+deb9u1 [143 kB] Get:23 http://deb.debian.org/debian stretch/main amd64 libexpat1 amd64 2.2.0-2+deb9u3 [83.7 kB] Get:24 http://deb.debian.org/debian stretch/main amd64 libpng16-16 amd64 1.6.28-1+deb9u1 [280 kB] Get:25 http://deb.debian.org/debian stretch/main amd64 fonts-dejavu-core all 2.37-1 [1068 kB] Get:26 http://deb.debian.org/debian stretch/main amd64 fontconfig-config all 2.11.0-6.7 [271 kB] Get:27 http://security.debian.org/debian-security stretch/updates/main amd64 libssl1.1 amd64 1.1.0l-1~deb9u2 [1358 kB] Get:28 http://deb.debian.org/debian stretch/main amd64 libfontconfig1 amd64 2.11.0-6.7+b1 [331 kB] Get:29 http://deb.debian.org/debian stretch/main amd64 libnspr4 amd64 2:4.12-6 [117 kB] Get:30 http://deb.debian.org/debian stretch/main amd64 libpcsclite1 amd64 1.8.20-1 [56.5 kB] Get:31 http://deb.debian.org/debian stretch/main amd64 libbsd0 amd64 0.8.3-1 [83.0 kB] Get:32 http://deb.debian.org/debian stretch/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] Get:33 http://deb.debian.org/debian stretch/main amd64 libxcb1 amd64 1.12-1 [133 kB] Get:34 http://deb.debian.org/debian stretch/main amd64 libxext6 amd64 2:1.3.3-1+b2 [52.5 kB] Get:35 http://deb.debian.org/debian stretch/main amd64 libxi6 amd64 2:1.7.9-1 [82.6 kB] Get:36 http://deb.debian.org/debian stretch/main amd64 libxrender1 amd64 1:0.9.10-1 [33.0 kB] Get:37 http://deb.debian.org/debian stretch/main amd64 x11-common all 1:7.7+19 [251 kB] Get:38 http://deb.debian.org/debian stretch/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] Get:39 http://deb.debian.org/debian stretch/main amd64 ca-certificates-java all 20170929~deb9u3 [15.1 kB] Get:40 http://deb.debian.org/debian stretch/main amd64 libunistring0 amd64 0.9.6+really0.9.3-0.1 [279 kB] Get:41 http://deb.debian.org/debian stretch/main amd64 libidn2-0 amd64 0.16-1+deb9u1 [60.7 kB] Get:42 http://deb.debian.org/debian stretch/main amd64 libnghttp2-14 amd64 1.18.1-1+deb9u1 [79.2 kB] Get:43 http://deb.debian.org/debian stretch/main amd64 libpsl5 amd64 0.17.0-3 [41.8 kB] Get:44 http://deb.debian.org/debian stretch/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1+b1 [60.4 kB] Get:45 http://deb.debian.org/debian stretch/main amd64 libssh2-1 amd64 1.7.0-1+deb9u1 [139 kB] Get:46 http://security.debian.org/debian-security stretch/updates/main amd64 libkrb5support0 amd64 1.15-1+deb9u2 [62.1 kB] Get:47 http://security.debian.org/debian-security stretch/updates/main amd64 libk5crypto3 amd64 1.15-1+deb9u2 [119 kB] Get:48 http://security.debian.org/debian-security stretch/updates/main amd64 libkrb5-3 amd64 1.15-1+deb9u2 [312 kB] Get:49 http://security.debian.org/debian-security stretch/updates/main amd64 libgssapi-krb5-2 amd64 1.15-1+deb9u2 [155 kB] Get:50 http://security.debian.org/debian-security stretch/updates/main amd64 libldap-common all 2.4.44+dfsg-5+deb9u6 [85.9 kB] Get:51 http://security.debian.org/debian-security stretch/updates/main amd64 libldap-2.4-2 amd64 2.4.44+dfsg-5+deb9u6 [220 kB] Get:52 http://security.debian.org/debian-security stretch/updates/main amd64 libsqlite3-0 amd64 3.16.2-5+deb9u3 [574 kB] Get:53 http://security.debian.org/debian-security stretch/updates/main amd64 openssl amd64 1.1.0l-1~deb9u2 [748 kB] Get:54 http://security.debian.org/debian-security stretch/updates/main amd64 libjpeg62-turbo amd64 1:1.5.1-2+deb9u1 [134 kB] Get:55 http://security.debian.org/debian-security stretch/updates/main amd64 libfreetype6 amd64 2.6.3-3.2+deb9u2 [438 kB] Get:56 http://security.debian.org/debian-security stretch/updates/main amd64 libnss3 amd64 2:3.26.2-1.1+deb9u2 [1245 kB] Get:57 http://security.debian.org/debian-security stretch/updates/main amd64 libx11-data all 2:1.6.4-3+deb9u3 [291 kB] Get:58 http://security.debian.org/debian-security stretch/updates/main amd64 libx11-6 amd64 2:1.6.4-3+deb9u3 [749 kB] Get:59 http://security.debian.org/debian-security stretch/updates/main amd64 openjdk-8-jre-headless amd64 8u275-b01-1~deb9u1 [28.1 MB] Get:60 http://security.debian.org/debian-security stretch/updates/main amd64 libcurl3 amd64 7.52.1-5+deb9u13 [292 kB] Get:61 http://security.debian.org/debian-security stretch/updates/main amd64 curl amd64 7.52.1-5+deb9u13 [228 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 43.1 MB in 3s (13.5 MB/s) Selecting previously unselected package libxau6:amd64. (Reading database ... 6320 files and directories currently installed.) Preparing to unpack .../00-libxau6_1%3a1.0.8-1_amd64.deb ... Unpacking libxau6:amd64 (1:1.0.8-1) ... Selecting previously unselected package libssl1.0.2:amd64. Preparing to unpack .../01-libssl1.0.2_1.0.2u-1~deb9u3_amd64.deb ... Unpacking libssl1.0.2:amd64 (1.0.2u-1~deb9u3) ... Selecting previously unselected package libssl1.1:amd64. Preparing to unpack .../02-libssl1.1_1.1.0l-1~deb9u2_amd64.deb ... Unpacking libssl1.1:amd64 (1.1.0l-1~deb9u2) ... Selecting previously unselected package libgmp10:amd64. Preparing to unpack .../03-libgmp10_2%3a6.1.2+dfsg-1_amd64.deb ... Unpacking libgmp10:amd64 (2:6.1.2+dfsg-1) ... Selecting previously unselected package libnettle6:amd64. Preparing to unpack .../04-libnettle6_3.3-1+b2_amd64.deb ... Unpacking libnettle6:amd64 (3.3-1+b2) ... Selecting previously unselected package libhogweed4:amd64. Preparing to unpack .../05-libhogweed4_3.3-1+b2_amd64.deb ... Unpacking libhogweed4:amd64 (3.3-1+b2) ... Selecting previously unselected package libidn11:amd64. Preparing to unpack .../06-libidn11_1.33-1+deb9u1_amd64.deb ... Unpacking libidn11:amd64 (1.33-1+deb9u1) ... Selecting previously unselected package libffi6:amd64. Preparing to unpack .../07-libffi6_3.2.1-6_amd64.deb ... Unpacking libffi6:amd64 (3.2.1-6) ... Selecting previously unselected package libp11-kit0:amd64. Preparing to unpack .../08-libp11-kit0_0.23.3-2_amd64.deb ... Unpacking libp11-kit0:amd64 (0.23.3-2) ... Selecting previously unselected package libtasn1-6:amd64. Preparing to unpack .../09-libtasn1-6_4.10-1.1+deb9u1_amd64.deb ... Unpacking libtasn1-6:amd64 (4.10-1.1+deb9u1) ... Selecting previously unselected package libgnutls30:amd64. Preparing to unpack .../10-libgnutls30_3.5.8-5+deb9u5_amd64.deb ... Unpacking libgnutls30:amd64 (3.5.8-5+deb9u5) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../11-libkeyutils1_1.5.9-9_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../12-libkrb5support0_1.15-1+deb9u2_amd64.deb ... Unpacking libkrb5support0:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../13-libk5crypto3_1.15-1+deb9u2_amd64.deb ... Unpacking libk5crypto3:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../14-libkrb5-3_1.15-1+deb9u2_amd64.deb ... Unpacking libkrb5-3:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../15-libgssapi-krb5-2_1.15-1+deb9u2_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libsasl2-modules-db:amd64. Preparing to unpack .../16-libsasl2-modules-db_2.1.27~101-g0780600+dfsg-3+deb9u1_amd64.deb ... Unpacking libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Selecting previously unselected package libsasl2-2:amd64. Preparing to unpack .../17-libsasl2-2_2.1.27~101-g0780600+dfsg-3+deb9u1_amd64.deb ... Unpacking libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Selecting previously unselected package libldap-common. Preparing to unpack .../18-libldap-common_2.4.44+dfsg-5+deb9u6_all.deb ... Unpacking libldap-common (2.4.44+dfsg-5+deb9u6) ... Selecting previously unselected package libldap-2.4-2:amd64. Preparing to unpack .../19-libldap-2.4-2_2.4.44+dfsg-5+deb9u6_amd64.deb ... Unpacking libldap-2.4-2:amd64 (2.4.44+dfsg-5+deb9u6) ... Selecting previously unselected package libsqlite3-0:amd64. Preparing to unpack .../20-libsqlite3-0_3.16.2-5+deb9u3_amd64.deb ... Unpacking libsqlite3-0:amd64 (3.16.2-5+deb9u3) ... Selecting previously unselected package ucf. Preparing to unpack .../21-ucf_3.0036_all.deb ... Moving old data out of the way Unpacking ucf (3.0036) ... Selecting previously unselected package openssl. Preparing to unpack .../22-openssl_1.1.0l-1~deb9u2_amd64.deb ... Unpacking openssl (1.1.0l-1~deb9u2) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../23-ca-certificates_20200601~deb9u1_all.deb ... Unpacking ca-certificates (20200601~deb9u1) ... Selecting previously unselected package java-common. Preparing to unpack .../24-java-common_0.58+deb9u1_all.deb ... Unpacking java-common (0.58+deb9u1) ... Selecting previously unselected package libavahi-common-data:amd64. Preparing to unpack .../25-libavahi-common-data_0.6.32-2_amd64.deb ... Unpacking libavahi-common-data:amd64 (0.6.32-2) ... Selecting previously unselected package libavahi-common3:amd64. Preparing to unpack .../26-libavahi-common3_0.6.32-2_amd64.deb ... Unpacking libavahi-common3:amd64 (0.6.32-2) ... Selecting previously unselected package libdbus-1-3:amd64. Preparing to unpack .../27-libdbus-1-3_1.10.32-0+deb9u1_amd64.deb ... Unpacking libdbus-1-3:amd64 (1.10.32-0+deb9u1) ... Selecting previously unselected package libavahi-client3:amd64. Preparing to unpack .../28-libavahi-client3_0.6.32-2_amd64.deb ... Unpacking libavahi-client3:amd64 (0.6.32-2) ... Selecting previously unselected package libcups2:amd64. Preparing to unpack .../29-libcups2_2.2.1-8+deb9u6_amd64.deb ... Unpacking libcups2:amd64 (2.2.1-8+deb9u6) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../30-liblcms2-2_2.8-4+deb9u1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.8-4+deb9u1) ... Selecting previously unselected package libjpeg62-turbo:amd64. Preparing to unpack .../31-libjpeg62-turbo_1%3a1.5.1-2+deb9u1_amd64.deb ... Unpacking libjpeg62-turbo:amd64 (1:1.5.1-2+deb9u1) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../32-libexpat1_2.2.0-2+deb9u3_amd64.deb ... Unpacking libexpat1:amd64 (2.2.0-2+deb9u3) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../33-libpng16-16_1.6.28-1+deb9u1_amd64.deb ... Unpacking libpng16-16:amd64 (1.6.28-1+deb9u1) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../34-libfreetype6_2.6.3-3.2+deb9u2_amd64.deb ... Unpacking libfreetype6:amd64 (2.6.3-3.2+deb9u2) ... Selecting previously unselected package fonts-dejavu-core. Preparing to unpack .../35-fonts-dejavu-core_2.37-1_all.deb ... Unpacking fonts-dejavu-core (2.37-1) ... Selecting previously unselected package fontconfig-config. Preparing to unpack .../36-fontconfig-config_2.11.0-6.7_all.deb ... Unpacking fontconfig-config (2.11.0-6.7) ... Selecting previously unselected package libfontconfig1:amd64. Preparing to unpack .../37-libfontconfig1_2.11.0-6.7+b1_amd64.deb ... Unpacking libfontconfig1:amd64 (2.11.0-6.7+b1) ... Selecting previously unselected package libnspr4:amd64. Preparing to unpack .../38-libnspr4_2%3a4.12-6_amd64.deb ... Unpacking libnspr4:amd64 (2:4.12-6) ... Selecting previously unselected package libnss3:amd64. Preparing to unpack .../39-libnss3_2%3a3.26.2-1.1+deb9u2_amd64.deb ... Unpacking libnss3:amd64 (2:3.26.2-1.1+deb9u2) ... Selecting previously unselected package libpcsclite1:amd64. Preparing to unpack .../40-libpcsclite1_1.8.20-1_amd64.deb ... Unpacking libpcsclite1:amd64 (1.8.20-1) ... Selecting previously unselected package libbsd0:amd64. Preparing to unpack .../41-libbsd0_0.8.3-1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.3-1) ... Selecting previously unselected package libxdmcp6:amd64. Preparing to unpack .../42-libxdmcp6_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... Selecting previously unselected package libxcb1:amd64. Preparing to unpack .../43-libxcb1_1.12-1_amd64.deb ... Unpacking libxcb1:amd64 (1.12-1) ... Selecting previously unselected package libx11-data. Preparing to unpack .../44-libx11-data_2%3a1.6.4-3+deb9u3_all.deb ... Unpacking libx11-data (2:1.6.4-3+deb9u3) ... Selecting previously unselected package libx11-6:amd64. Preparing to unpack .../45-libx11-6_2%3a1.6.4-3+deb9u3_amd64.deb ... Unpacking libx11-6:amd64 (2:1.6.4-3+deb9u3) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../46-libxext6_2%3a1.3.3-1+b2_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.3-1+b2) ... Selecting previously unselected package libxi6:amd64. Preparing to unpack .../47-libxi6_2%3a1.7.9-1_amd64.deb ... Unpacking libxi6:amd64 (2:1.7.9-1) ... Selecting previously unselected package libxrender1:amd64. Preparing to unpack .../48-libxrender1_1%3a0.9.10-1_amd64.deb ... Unpacking libxrender1:amd64 (1:0.9.10-1) ... Selecting previously unselected package x11-common. Preparing to unpack .../49-x11-common_1%3a7.7+19_all.deb ... Unpacking x11-common (1:7.7+19) ... Selecting previously unselected package libxtst6:amd64. Preparing to unpack .../50-libxtst6_2%3a1.2.3-1_amd64.deb ... Unpacking libxtst6:amd64 (2:1.2.3-1) ... Selecting previously unselected package openjdk-8-jre-headless:amd64. Preparing to unpack .../51-openjdk-8-jre-headless_8u275-b01-1~deb9u1_amd64.deb ... Unpacking openjdk-8-jre-headless:amd64 (8u275-b01-1~deb9u1) ... Selecting previously unselected package ca-certificates-java. Preparing to unpack .../52-ca-certificates-java_20170929~deb9u3_all.deb ... Unpacking ca-certificates-java (20170929~deb9u3) ... Selecting previously unselected package libunistring0:amd64. Preparing to unpack .../53-libunistring0_0.9.6+really0.9.3-0.1_amd64.deb ... Unpacking libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Selecting previously unselected package libidn2-0:amd64. Preparing to unpack .../54-libidn2-0_0.16-1+deb9u1_amd64.deb ... Unpacking libidn2-0:amd64 (0.16-1+deb9u1) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../55-libnghttp2-14_1.18.1-1+deb9u1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.18.1-1+deb9u1) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../56-libpsl5_0.17.0-3_amd64.deb ... Unpacking libpsl5:amd64 (0.17.0-3) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../57-librtmp1_2.4+20151223.gitfa8646d.1-1+b1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Selecting previously unselected package libssh2-1:amd64. Preparing to unpack .../58-libssh2-1_1.7.0-1+deb9u1_amd64.deb ... Unpacking libssh2-1:amd64 (1.7.0-1+deb9u1) ... Selecting previously unselected package libcurl3:amd64. Preparing to unpack .../59-libcurl3_7.52.1-5+deb9u13_amd64.deb ... Unpacking libcurl3:amd64 (7.52.1-5+deb9u13) ... Selecting previously unselected package curl. Preparing to unpack .../60-curl_7.52.1-5+deb9u13_amd64.deb ... Unpacking curl (7.52.1-5+deb9u13) ... Setting up libnettle6:amd64 (3.3-1+b2) ... Setting up libexpat1:amd64 (2.2.0-2+deb9u3) ... Setting up libjpeg62-turbo:amd64 (1:1.5.1-2+deb9u1) ... Setting up libnghttp2-14:amd64 (1.18.1-1+deb9u1) ... Setting up libpng16-16:amd64 (1.6.28-1+deb9u1) ... Setting up liblcms2-2:amd64 (2.8-4+deb9u1) ... Setting up libpcsclite1:amd64 (1.8.20-1) ... Setting up libldap-common (2.4.44+dfsg-5+deb9u6) ... Setting up fonts-dejavu-core (2.37-1) ... Setting up libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Setting up java-common (0.58+deb9u1) ... Setting up libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Setting up libbsd0:amd64 (0.8.3-1) ... Setting up libnspr4:amd64 (2:4.12-6) ... Setting up ucf (3.0036) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Setting up libfreetype6:amd64 (2.6.3-3.2+deb9u2) ... Setting up libtasn1-6:amd64 (4.10-1.1+deb9u1) ... Setting up libssl1.0.2:amd64 (1.0.2u-1~deb9u3) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Setting up libgmp10:amd64 (2:6.1.2+dfsg-1) ... Setting up libssh2-1:amd64 (1.7.0-1+deb9u1) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Setting up libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Setting up libssl1.1:amd64 (1.1.0l-1~deb9u2) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Setting up openssl (1.1.0l-1~deb9u2) ... Setting up libsqlite3-0:amd64 (3.16.2-5+deb9u3) ... Setting up libffi6:amd64 (3.2.1-6) ... Setting up libxdmcp6:amd64 (1:1.1.2-3) ... Setting up libkeyutils1:amd64 (1.5.9-9) ... Setting up x11-common (1:7.7+19) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up ca-certificates (20200601~deb9u1) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Updating certificates in /etc/ssl/certs... 126 added, 0 removed; done. Setting up libx11-data (2:1.6.4-3+deb9u3) ... Setting up libxau6:amd64 (1:1.0.8-1) ... Setting up libidn11:amd64 (1.33-1+deb9u1) ... Setting up libdbus-1-3:amd64 (1.10.32-0+deb9u1) ... Setting up libavahi-common-data:amd64 (0.6.32-2) ... Setting up fontconfig-config (2.11.0-6.7) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Setting up libidn2-0:amd64 (0.16-1+deb9u1) ... Setting up libpsl5:amd64 (0.17.0-3) ... Setting up libnss3:amd64 (2:3.26.2-1.1+deb9u2) ... Setting up libkrb5support0:amd64 (1.15-1+deb9u2) ... Setting up libhogweed4:amd64 (3.3-1+b2) ... Setting up libp11-kit0:amd64 (0.23.3-2) ... Setting up libavahi-common3:amd64 (0.6.32-2) ... Setting up libxcb1:amd64 (1.12-1) ... Setting up libfontconfig1:amd64 (2.11.0-6.7+b1) ... Setting up libk5crypto3:amd64 (1.15-1+deb9u2) ... Setting up libgnutls30:amd64 (3.5.8-5+deb9u5) ... Setting up libx11-6:amd64 (2:1.6.4-3+deb9u3) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Setting up libldap-2.4-2:amd64 (2.4.44+dfsg-5+deb9u6) ... Setting up libxrender1:amd64 (1:0.9.10-1) ... Setting up libavahi-client3:amd64 (0.6.32-2) ... Setting up libkrb5-3:amd64 (1.15-1+deb9u2) ... Setting up libxext6:amd64 (2:1.3.3-1+b2) ... Setting up libgssapi-krb5-2:amd64 (1.15-1+deb9u2) ... Setting up libcups2:amd64 (2.2.1-8+deb9u6) ... Setting up libxi6:amd64 (2:1.7.9-1) ... Setting up libcurl3:amd64 (7.52.1-5+deb9u13) ... Setting up libxtst6:amd64 (2:1.2.3-1) ... Setting up curl (7.52.1-5+deb9u13) ... Setting up ca-certificates-java (20170929~deb9u3) ... Adding debian:Buypass_Class_2_Root_CA.pem Adding debian:Microsec_e-Szigno_Root_CA_2009.pem Adding debian:XRamp_Global_CA_Root.pem Adding debian:Certigna_Root_CA.pem Adding debian:LuxTrust_Global_Root_2.pem Adding debian:TrustCor_RootCert_CA-2.pem Adding debian:Network_Solutions_Certificate_Authority.pem Adding debian:EE_Certification_Centre_Root_CA.pem Adding debian:Staat_der_Nederlanden_Root_CA_-_G3.pem Adding debian:Entrust_Root_Certification_Authority_-_G4.pem Adding debian:T-TeleSec_GlobalRoot_Class_3.pem Adding debian:QuoVadis_Root_CA_1_G3.pem Adding debian:Global_Chambersign_Root_-_2008.pem Adding debian:Cybertrust_Global_Root.pem Adding debian:AC_RAIZ_FNMT-RCM.pem Adding debian:USERTrust_RSA_Certification_Authority.pem Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem Adding debian:CFCA_EV_ROOT.pem Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem Adding debian:DigiCert_Assured_ID_Root_CA.pem Adding debian:GTS_Root_R4.pem Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem Adding debian:Actalis_Authentication_Root_CA.pem Adding debian:Hongkong_Post_Root_CA_3.pem Adding debian:GlobalSign_Root_CA_-_R3.pem Adding debian:Security_Communication_Root_CA.pem Adding debian:GTS_Root_R3.pem Adding debian:TrustCor_ECA-1.pem Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem Adding debian:Amazon_Root_CA_2.pem Adding debian:Certigna.pem Adding debian:GlobalSign_Root_CA.pem Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem Adding debian:COMODO_RSA_Certification_Authority.pem Adding debian:DigiCert_Global_Root_G2.pem Adding debian:SecureSign_RootCA11.pem Adding debian:SZAFIR_ROOT_CA2.pem Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem Adding debian:GeoTrust_Universal_CA_2.pem Adding debian:GTS_Root_R2.pem Adding debian:AffirmTrust_Premium_ECC.pem Adding debian:SSL.com_Root_Certification_Authority_ECC.pem Adding debian:DigiCert_Trusted_Root_G4.pem Adding debian:Baltimore_CyberTrust_Root.pem Adding debian:E-Tugra_Certification_Authority.pem Adding debian:T-TeleSec_GlobalRoot_Class_2.pem Adding debian:Certum_Trusted_Network_CA.pem Adding debian:SwissSign_Gold_CA_-_G2.pem Adding debian:Hongkong_Post_Root_CA_1.pem Adding debian:Entrust_Root_Certification_Authority.pem Adding debian:USERTrust_ECC_Certification_Authority.pem Adding debian:emSign_ECC_Root_CA_-_G3.pem Adding debian:DigiCert_Global_Root_G3.pem Adding debian:ISRG_Root_X1.pem Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem Adding debian:GDCA_TrustAUTH_R5_ROOT.pem Adding debian:Go_Daddy_Class_2_CA.pem Adding debian:GTS_Root_R1.pem Adding debian:COMODO_ECC_Certification_Authority.pem Adding debian:NetLock_Arany_=Class_Gold=_F?tanâ–’sâ–’tvâ–’ny.pem Adding debian:emSign_Root_CA_-_G1.pem Adding debian:UCA_Global_G2_Root.pem Adding debian:QuoVadis_Root_CA_2_G3.pem Adding debian:Certum_Trusted_Network_CA_2.pem Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem Adding debian:QuoVadis_Root_CA_2.pem Adding debian:ACCVRAIZ1.pem Adding debian:TeliaSonera_Root_CA_v1.pem Adding debian:SecureTrust_CA.pem Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem Adding debian:ePKI_Root_Certification_Authority.pem Adding debian:AffirmTrust_Networking.pem Adding debian:TWCA_Global_Root_CA.pem Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem Adding debian:Staat_der_Nederlanden_EV_Root_CA.pem Adding debian:QuoVadis_Root_CA_3_G3.pem Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem Adding debian:Chambers_of_Commerce_Root_-_2008.pem Adding debian:certSIGN_ROOT_CA.pem Adding debian:Staat_der_Nederlanden_Root_CA_-_G2.pem Adding debian:emSign_Root_CA_-_C1.pem Adding debian:QuoVadis_Root_CA.pem Adding debian:GlobalSign_Root_CA_-_R6.pem Adding debian:Amazon_Root_CA_1.pem Adding debian:Trustis_FPS_Root_CA.pem Adding debian:DST_Root_CA_X3.pem Adding debian:TWCA_Root_Certification_Authority.pem Adding debian:IdenTrust_Commercial_Root_CA_1.pem Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem Adding debian:SwissSign_Silver_CA_-_G2.pem Adding debian:OISTE_WISeKey_Global_Root_GA_CA.pem Adding debian:DigiCert_Assured_ID_Root_G3.pem Adding debian:COMODO_Certification_Authority.pem Adding debian:Buypass_Class_3_Root_CA.pem Adding debian:AffirmTrust_Premium.pem Adding debian:CA_Disig_Root_R2.pem Adding debian:QuoVadis_Root_CA_3.pem Adding debian:UCA_Extended_Validation_Root.pem Adding debian:Amazon_Root_CA_3.pem Adding debian:emSign_ECC_Root_CA_-_C3.pem Adding debian:Secure_Global_CA.pem Adding debian:Amazon_Root_CA_4.pem Adding debian:Comodo_AAA_Services_root.pem Adding debian:DigiCert_Assured_ID_Root_G2.pem Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem Adding debian:AffirmTrust_Commercial.pem Adding debian:Starfield_Class_2_CA.pem Adding debian:Sonera_Class_2_Root_CA.pem Adding debian:EC-ACC.pem Adding debian:TrustCor_RootCert_CA-1.pem Adding debian:Security_Communication_RootCA2.pem Adding debian:Taiwan_GRCA.pem Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem Adding debian:DigiCert_Global_Root_CA.pem Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem Adding debian:GlobalSign_Root_CA_-_R2.pem Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem Adding debian:SSL.com_Root_Certification_Authority_RSA.pem Adding debian:Izenpe.com.pem Adding debian:Entrust_Root_Certification_Authority_-_G2.pem Adding debian:Atos_TrustedRoot_2011.pem done. Processing triggers for ca-certificates (20200601~deb9u1) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. done. Setting up openjdk-8-jre-headless:amd64 (8u275-b01-1~deb9u1) ... update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java to provide /usr/bin/java (java) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/jjs to provide /usr/bin/jjs (jjs) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/orbd to provide /usr/bin/orbd (orbd) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/servertool to provide /usr/bin/servertool (servertool) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/tnameserv to provide /usr/bin/tnameserv (tnameserv) in auto mode update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode Processing triggers for libc-bin (2.24-11+deb9u4) ... Removing intermediate container 90cd653e411a ---> 8ce915d89c6e Step 4/20 : ENV JAVA_HOME /etc/alternatives/java ---> Running in 3bb65a3567f5 Removing intermediate container 3bb65a3567f5 ---> 5940a549c531 Step 5/20 : ARG GIT_COMMIT=unknown ---> Running in ce696b74a7c1 Removing intermediate container ce696b74a7c1 ---> 14b181624126 Step 6/20 : LABEL git-commit=$GIT_COMMIT ---> Running in 4267c72e5a6f Removing intermediate container 4267c72e5a6f ---> 5bf2751e7dbd Step 7/20 : ENV JAVA_OPTS=${JAVA_OPTS} ---> Running in 4f9e44f6a281 Removing intermediate container 4f9e44f6a281 ---> 3dc0ad847e15 Step 8/20 : ENV JAVA_TOOL_OPTIONS=${JAVA_TOOL_OPTIONS} ---> Running in 8524a0295740 Removing intermediate container 8524a0295740 ---> 07e9a297a50e Step 9/20 : ENV APP_DOCROOT /deployment/manager/app ---> Running in c60a7b94aa55 Removing intermediate container c60a7b94aa55 ---> 2504448e83b5 Step 10/20 : ENV SHARED_DOCROOT /deployment/manager/shared ---> Running in efe9488dd08c Removing intermediate container efe9488dd08c ---> 88032a3f36e8 Step 11/20 : ENV LOGGING_CONFIG_FILE /deployment/manager/logging.properties ---> Running in 5d5b54a99b59 Removing intermediate container 5d5b54a99b59 ---> 9a5e0ffab550 Step 12/20 : ENV MAP_TILES_PATH /deployment/map/mapdata.mbtiles ---> Running in 033789f73c71 Removing intermediate container 033789f73c71 ---> ca0db23e1e87 Step 13/20 : ENV MAP_SETTINGS_PATH /deployment/map/mapsettings.json ---> Running in 24997dc9c03b Removing intermediate container 24997dc9c03b ---> c3dbba52575a Step 14/20 : EXPOSE 8080 ---> Running in 1eee7ed75a11 Removing intermediate container 1eee7ed75a11 ---> 0c35929133dc Step 15/20 : HEALTHCHECK --interval=3s --timeout=3s --start-period=2s --retries=120 CMD curl --fail --silent http://localhost:8080 || exit 1 ---> Running in f4a286cb2ece Removing intermediate container f4a286cb2ece ---> 18dbfc8b38d1 Step 16/20 : RUN mkdir -p /opt/app ---> Running in a5068c2cedd9 Removing intermediate container a5068c2cedd9 ---> cdfc5aacaf85 Step 17/20 : WORKDIR /opt/app ---> Running in faa91dbfbb56 Removing intermediate container faa91dbfbb56 ---> 939456ce92e4 Step 18/20 : RUN mkdir -p /deployment/manager/extensions ---> Running in 1c99c710e4e7 Removing intermediate container 1c99c710e4e7 ---> 88c0addc2158 Step 19/20 : ADD lib /opt/app/lib ---> 71327126be0a Step 20/20 : ENTRYPOINT java $JAVA_OPTS -cp /opt/app/lib/*:/deployment/manager/extensions/* org.openremote.manager.Main ---> Running in 1f567672c0e1 Removing intermediate container 1f567672c0e1 ---> e1a695b57b08 Successfully built e1a695b57b08 Successfully tagged openremote/manager:latest Building proxy Step 1/32 : FROM debian:stretch-slim ---> b87fae470195 Step 2/32 : MAINTAINER support@openremote.io ---> Running in 3141e85d08e1 Removing intermediate container 3141e85d08e1 ---> 469acb229d3a Step 3/32 : RUN apt-get update && apt-get install -y --no-install-recommends apt-transport-https gnupg2 software-properties-common procps ca-certificates curl wget && rm -rf /var/lib/apt/lists/* ---> Running in f42f89d3dc04 Get:1 http://security.debian.org/debian-security stretch/updates InRelease [53.0 kB] Ign:2 http://deb.debian.org/debian stretch InRelease Get:3 http://deb.debian.org/debian stretch-updates InRelease [93.6 kB] Get:4 http://deb.debian.org/debian stretch Release [118 kB] Get:5 http://deb.debian.org/debian stretch Release.gpg [2410 B] Get:6 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [637 kB] Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages [2596 B] Get:8 http://deb.debian.org/debian stretch/main amd64 Packages [7080 kB] Fetched 7986 kB in 1s (6556 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: dh-python distro-info-data gir1.2-glib-2.0 gir1.2-packagekitglib-1.0 gnupg gnupg-agent iso-codes libapt-inst2.0 libassuan0 libcurl3 libcurl3-gnutls libdbus-1-3 libdbus-glib-1-2 libexpat1 libffi6 libgirepository-1.0-1 libglib2.0-0 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed4 libidn11 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libksba8 libldap-2.4-2 libldap-common libmpdec2 libncurses5 libnettle6 libnghttp2-14 libnpth0 libp11-kit0 libpackagekit-glib2-18 libprocps6 libpsl5 libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib libreadline7 librtmp1 libsasl2-2 libsasl2-modules-db libsqlite3-0 libssh2-1 libssl1.0.2 libssl1.1 libtasn1-6 libunistring0 lsb-release mime-support openssl pinentry-curses python-apt-common python3 python3-apt python3-dbus python3-gi python3-minimal python3-pycurl python3-software-properties python3.5 python3.5-minimal readline-common Suggested packages: libdpkg-perl parcimonie xloadimage dbus-user-session libpam-systemd pinentry-gnome3 scdaemon isoquery gnutls-bin krb5-doc krb5-user lsb pinentry-doc python3-doc python3-tk python3-venv python3-apt-dbg python-apt-doc python-dbus-doc python3-dbus-dbg libcurl4-gnutls-dev python-pycurl-doc python3-pycurl-dbg python3.5-venv python3.5-doc binutils binfmt-support readline-doc Recommended packages: dirmngr gnupg-l10n dbus libglib2.0-data shared-mime-info xdg-user-dirs krb5-locales libgpm2 packagekit publicsuffix libsasl2-modules bzip2 file xz-utils psmisc unattended-upgrades The following NEW packages will be installed: apt-transport-https ca-certificates curl dh-python distro-info-data gir1.2-glib-2.0 gir1.2-packagekitglib-1.0 gnupg gnupg-agent gnupg2 iso-codes libapt-inst2.0 libassuan0 libcurl3 libcurl3-gnutls libdbus-1-3 libdbus-glib-1-2 libexpat1 libffi6 libgirepository-1.0-1 libglib2.0-0 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed4 libidn11 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libksba8 libldap-2.4-2 libldap-common libmpdec2 libncurses5 libnettle6 libnghttp2-14 libnpth0 libp11-kit0 libpackagekit-glib2-18 libprocps6 libpsl5 libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib libreadline7 librtmp1 libsasl2-2 libsasl2-modules-db libsqlite3-0 libssh2-1 libssl1.0.2 libssl1.1 libtasn1-6 libunistring0 lsb-release mime-support openssl pinentry-curses procps python-apt-common python3 python3-apt python3-dbus python3-gi python3-minimal python3-pycurl python3-software-properties python3.5 python3.5-minimal readline-common software-properties-common wget 0 upgraded, 74 newly installed, 0 to remove and 0 not upgraded. Need to get 24.6 MB of archives. After this operation, 85.2 MB of additional disk space will be used. Get:1 http://deb.debian.org/debian stretch/main amd64 libexpat1 amd64 2.2.0-2+deb9u3 [83.7 kB] Get:2 http://security.debian.org/debian-security stretch/updates/main amd64 libssl1.1 amd64 1.1.0l-1~deb9u2 [1358 kB] Get:3 http://deb.debian.org/debian stretch/main amd64 python3-minimal amd64 3.5.3-1 [35.3 kB] Get:4 http://deb.debian.org/debian stretch/main amd64 mime-support all 3.60 [36.7 kB] Get:5 http://deb.debian.org/debian stretch/main amd64 libmpdec2 amd64 2.4.2-1 [85.2 kB] Get:6 http://deb.debian.org/debian stretch/main amd64 readline-common all 7.0-3 [70.4 kB] Get:7 http://deb.debian.org/debian stretch/main amd64 libreadline7 amd64 7.0-3 [151 kB] Get:8 http://deb.debian.org/debian stretch/main amd64 libpython3-stdlib amd64 3.5.3-1 [18.6 kB] Get:9 http://deb.debian.org/debian stretch/main amd64 dh-python all 2.20170125 [86.8 kB] Get:10 http://deb.debian.org/debian stretch/main amd64 python3 amd64 3.5.3-1 [21.6 kB] Get:11 http://deb.debian.org/debian stretch/main amd64 libassuan0 amd64 2.4.3-2 [42.5 kB] Get:12 http://deb.debian.org/debian stretch/main amd64 pinentry-curses amd64 1.0.0-2 [50.5 kB] Get:13 http://deb.debian.org/debian stretch/main amd64 libnpth0 amd64 1.3-1 [14.6 kB] Get:14 http://deb.debian.org/debian stretch/main amd64 gnupg-agent amd64 2.1.18-8~deb9u4 [554 kB] Get:15 http://deb.debian.org/debian stretch/main amd64 libksba8 amd64 1.3.5-2 [99.7 kB] Get:16 http://deb.debian.org/debian stretch/main amd64 gnupg amd64 2.1.18-8~deb9u4 [1128 kB] Get:17 http://security.debian.org/debian-security stretch/updates/main amd64 libpython3.5-minimal amd64 3.5.3-1+deb9u3 [575 kB] Get:18 http://security.debian.org/debian-security stretch/updates/main amd64 python3.5-minimal amd64 3.5.3-1+deb9u3 [1694 kB] Get:19 http://deb.debian.org/debian stretch/main amd64 libprocps6 amd64 2:3.3.12-3+deb9u1 [58.5 kB] Get:20 http://deb.debian.org/debian stretch/main amd64 libncurses5 amd64 6.0+20161126-1+deb9u2 [93.4 kB] Get:21 http://deb.debian.org/debian stretch/main amd64 procps amd64 2:3.3.12-3+deb9u1 [250 kB] Get:22 http://deb.debian.org/debian stretch/main amd64 libgmp10 amd64 2:6.1.2+dfsg-1 [253 kB] Get:23 http://deb.debian.org/debian stretch/main amd64 libnettle6 amd64 3.3-1+b2 [192 kB] Get:24 http://deb.debian.org/debian stretch/main amd64 libhogweed4 amd64 3.3-1+b2 [136 kB] Get:25 http://deb.debian.org/debian stretch/main amd64 libidn11 amd64 1.33-1+deb9u1 [115 kB] Get:26 http://deb.debian.org/debian stretch/main amd64 libffi6 amd64 3.2.1-6 [20.4 kB] Get:27 http://deb.debian.org/debian stretch/main amd64 libp11-kit0 amd64 0.23.3-2 [111 kB] Get:28 http://security.debian.org/debian-security stretch/updates/main amd64 libsqlite3-0 amd64 3.16.2-5+deb9u3 [574 kB] Get:29 http://deb.debian.org/debian stretch/main amd64 libtasn1-6 amd64 4.10-1.1+deb9u1 [50.6 kB] Get:30 http://deb.debian.org/debian stretch/main amd64 libgnutls30 amd64 3.5.8-5+deb9u5 [896 kB] Get:31 http://security.debian.org/debian-security stretch/updates/main amd64 libpython3.5-stdlib amd64 3.5.3-1+deb9u3 [2167 kB] Get:32 http://deb.debian.org/debian stretch/main amd64 libunistring0 amd64 0.9.6+really0.9.3-0.1 [279 kB] Get:33 http://deb.debian.org/debian stretch/main amd64 libidn2-0 amd64 0.16-1+deb9u1 [60.7 kB] Get:34 http://deb.debian.org/debian stretch/main amd64 libpsl5 amd64 0.17.0-3 [41.8 kB] Get:35 http://deb.debian.org/debian stretch/main amd64 wget amd64 1.18-5+deb9u3 [800 kB] Get:36 http://security.debian.org/debian-security stretch/updates/main amd64 python3.5 amd64 3.5.3-1+deb9u3 [231 kB] Get:37 http://deb.debian.org/debian stretch/main amd64 libkeyutils1 amd64 1.5.9-9 [12.4 kB] Get:38 http://deb.debian.org/debian stretch/main amd64 libsasl2-modules-db amd64 2.1.27~101-g0780600+dfsg-3+deb9u1 [68.4 kB] Get:39 http://security.debian.org/debian-security stretch/updates/main amd64 libapt-inst2.0 amd64 1.4.11 [191 kB] Get:40 http://deb.debian.org/debian stretch/main amd64 libsasl2-2 amd64 2.1.27~101-g0780600+dfsg-3+deb9u1 [105 kB] Get:41 http://security.debian.org/debian-security stretch/updates/main amd64 libssl1.0.2 amd64 1.0.2u-1~deb9u3 [1306 kB] Get:42 http://deb.debian.org/debian stretch/main amd64 libnghttp2-14 amd64 1.18.1-1+deb9u1 [79.2 kB] Get:43 http://deb.debian.org/debian stretch/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1+b1 [60.4 kB] Get:44 http://deb.debian.org/debian stretch/main amd64 libssh2-1 amd64 1.7.0-1+deb9u1 [139 kB] Get:45 http://deb.debian.org/debian stretch/main amd64 ca-certificates all 20200601~deb9u1 [160 kB] Get:46 http://deb.debian.org/debian stretch/main amd64 distro-info-data all 0.36 [5810 B] Get:47 http://deb.debian.org/debian stretch/main amd64 libglib2.0-0 amd64 2.50.3-2+deb9u2 [2692 kB] Get:48 http://security.debian.org/debian-security stretch/updates/main amd64 libkrb5support0 amd64 1.15-1+deb9u2 [62.1 kB] Get:49 http://security.debian.org/debian-security stretch/updates/main amd64 libk5crypto3 amd64 1.15-1+deb9u2 [119 kB] Get:50 http://security.debian.org/debian-security stretch/updates/main amd64 libkrb5-3 amd64 1.15-1+deb9u2 [312 kB] Get:51 http://security.debian.org/debian-security stretch/updates/main amd64 libgssapi-krb5-2 amd64 1.15-1+deb9u2 [155 kB] Get:52 http://security.debian.org/debian-security stretch/updates/main amd64 libldap-common all 2.4.44+dfsg-5+deb9u6 [85.9 kB] Get:53 http://security.debian.org/debian-security stretch/updates/main amd64 libldap-2.4-2 amd64 2.4.44+dfsg-5+deb9u6 [220 kB] Get:54 http://security.debian.org/debian-security stretch/updates/main amd64 libcurl3-gnutls amd64 7.52.1-5+deb9u13 [291 kB] Get:55 http://security.debian.org/debian-security stretch/updates/main amd64 apt-transport-https amd64 1.4.11 [171 kB] Get:56 http://security.debian.org/debian-security stretch/updates/main amd64 openssl amd64 1.1.0l-1~deb9u2 [748 kB] Get:57 http://security.debian.org/debian-security stretch/updates/main amd64 libcurl3 amd64 7.52.1-5+deb9u13 [292 kB] Get:58 http://security.debian.org/debian-security stretch/updates/main amd64 curl amd64 7.52.1-5+deb9u13 [228 kB] Get:59 http://deb.debian.org/debian stretch/main amd64 libgirepository-1.0-1 amd64 1.50.0-1+b1 [89.0 kB] Get:60 http://security.debian.org/debian-security stretch/updates/main amd64 libpackagekit-glib2-18 amd64 1.1.5-2+deb9u2 [114 kB] Get:61 http://deb.debian.org/debian stretch/main amd64 gir1.2-glib-2.0 amd64 1.50.0-1+b1 [139 kB] Get:62 http://security.debian.org/debian-security stretch/updates/main amd64 gir1.2-packagekitglib-1.0 amd64 1.1.5-2+deb9u2 [34.9 kB] Get:63 http://security.debian.org/debian-security stretch/updates/main amd64 python-apt-common all 1.4.2 [94.0 kB] Get:64 http://deb.debian.org/debian stretch/main amd64 gnupg2 all 2.1.18-8~deb9u4 [299 kB] Get:65 http://security.debian.org/debian-security stretch/updates/main amd64 python3-apt amd64 1.4.2 [174 kB] Get:66 http://security.debian.org/debian-security stretch/updates/main amd64 python3-software-properties all 0.96.20.2-1+deb9u1 [49.7 kB] Get:67 http://security.debian.org/debian-security stretch/updates/main amd64 software-properties-common all 0.96.20.2-1+deb9u1 [83.8 kB] Get:68 http://deb.debian.org/debian stretch/main amd64 iso-codes all 3.75-1 [2389 kB] Get:69 http://deb.debian.org/debian stretch/main amd64 libdbus-1-3 amd64 1.10.32-0+deb9u1 [196 kB] Get:70 http://deb.debian.org/debian stretch/main amd64 libdbus-glib-1-2 amd64 0.108-2 [206 kB] Get:71 http://deb.debian.org/debian stretch/main amd64 lsb-release all 9.20161125 [27.1 kB] Get:72 http://deb.debian.org/debian stretch/main amd64 python3-dbus amd64 1.2.4-1+b1 [184 kB] Get:73 http://deb.debian.org/debian stretch/main amd64 python3-gi amd64 3.22.0-2 [473 kB] Get:74 http://deb.debian.org/debian stretch/main amd64 python3-pycurl amd64 7.43.0-2 [61.3 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 24.6 MB in 0s (29.6 MB/s) Selecting previously unselected package libssl1.1:amd64. (Reading database ... 6320 files and directories currently installed.) Preparing to unpack .../00-libssl1.1_1.1.0l-1~deb9u2_amd64.deb ... Unpacking libssl1.1:amd64 (1.1.0l-1~deb9u2) ... Selecting previously unselected package libpython3.5-minimal:amd64. Preparing to unpack .../01-libpython3.5-minimal_3.5.3-1+deb9u3_amd64.deb ... Unpacking libpython3.5-minimal:amd64 (3.5.3-1+deb9u3) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../02-libexpat1_2.2.0-2+deb9u3_amd64.deb ... Unpacking libexpat1:amd64 (2.2.0-2+deb9u3) ... Selecting previously unselected package python3.5-minimal. Preparing to unpack .../03-python3.5-minimal_3.5.3-1+deb9u3_amd64.deb ... Unpacking python3.5-minimal (3.5.3-1+deb9u3) ... Selecting previously unselected package python3-minimal. Preparing to unpack .../04-python3-minimal_3.5.3-1_amd64.deb ... Unpacking python3-minimal (3.5.3-1) ... Selecting previously unselected package mime-support. Preparing to unpack .../05-mime-support_3.60_all.deb ... Unpacking mime-support (3.60) ... Selecting previously unselected package libmpdec2:amd64. Preparing to unpack .../06-libmpdec2_2.4.2-1_amd64.deb ... Unpacking libmpdec2:amd64 (2.4.2-1) ... Selecting previously unselected package readline-common. Preparing to unpack .../07-readline-common_7.0-3_all.deb ... Unpacking readline-common (7.0-3) ... Selecting previously unselected package libreadline7:amd64. Preparing to unpack .../08-libreadline7_7.0-3_amd64.deb ... Unpacking libreadline7:amd64 (7.0-3) ... Selecting previously unselected package libsqlite3-0:amd64. Preparing to unpack .../09-libsqlite3-0_3.16.2-5+deb9u3_amd64.deb ... Unpacking libsqlite3-0:amd64 (3.16.2-5+deb9u3) ... Selecting previously unselected package libpython3.5-stdlib:amd64. Preparing to unpack .../10-libpython3.5-stdlib_3.5.3-1+deb9u3_amd64.deb ... Unpacking libpython3.5-stdlib:amd64 (3.5.3-1+deb9u3) ... Selecting previously unselected package python3.5. Preparing to unpack .../11-python3.5_3.5.3-1+deb9u3_amd64.deb ... Unpacking python3.5 (3.5.3-1+deb9u3) ... Selecting previously unselected package libpython3-stdlib:amd64. Preparing to unpack .../12-libpython3-stdlib_3.5.3-1_amd64.deb ... Unpacking libpython3-stdlib:amd64 (3.5.3-1) ... Selecting previously unselected package dh-python. Preparing to unpack .../13-dh-python_2.20170125_all.deb ... Unpacking dh-python (2.20170125) ... Setting up libssl1.1:amd64 (1.1.0l-1~deb9u2) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Setting up libpython3.5-minimal:amd64 (3.5.3-1+deb9u3) ... Setting up libexpat1:amd64 (2.2.0-2+deb9u3) ... Setting up python3.5-minimal (3.5.3-1+deb9u3) ... Setting up python3-minimal (3.5.3-1) ... Selecting previously unselected package python3. (Reading database ... 7313 files and directories currently installed.) Preparing to unpack .../00-python3_3.5.3-1_amd64.deb ... Unpacking python3 (3.5.3-1) ... Selecting previously unselected package libassuan0:amd64. Preparing to unpack .../01-libassuan0_2.4.3-2_amd64.deb ... Unpacking libassuan0:amd64 (2.4.3-2) ... Selecting previously unselected package pinentry-curses. Preparing to unpack .../02-pinentry-curses_1.0.0-2_amd64.deb ... Unpacking pinentry-curses (1.0.0-2) ... Selecting previously unselected package libnpth0:amd64. Preparing to unpack .../03-libnpth0_1.3-1_amd64.deb ... Unpacking libnpth0:amd64 (1.3-1) ... Selecting previously unselected package gnupg-agent. Preparing to unpack .../04-gnupg-agent_2.1.18-8~deb9u4_amd64.deb ... Unpacking gnupg-agent (2.1.18-8~deb9u4) ... Selecting previously unselected package libksba8:amd64. Preparing to unpack .../05-libksba8_1.3.5-2_amd64.deb ... Unpacking libksba8:amd64 (1.3.5-2) ... Selecting previously unselected package gnupg. Preparing to unpack .../06-gnupg_2.1.18-8~deb9u4_amd64.deb ... Unpacking gnupg (2.1.18-8~deb9u4) ... Selecting previously unselected package libapt-inst2.0:amd64. Preparing to unpack .../07-libapt-inst2.0_1.4.11_amd64.deb ... Unpacking libapt-inst2.0:amd64 (1.4.11) ... Selecting previously unselected package libprocps6:amd64. Preparing to unpack .../08-libprocps6_2%3a3.3.12-3+deb9u1_amd64.deb ... Unpacking libprocps6:amd64 (2:3.3.12-3+deb9u1) ... Selecting previously unselected package libssl1.0.2:amd64. Preparing to unpack .../09-libssl1.0.2_1.0.2u-1~deb9u3_amd64.deb ... Unpacking libssl1.0.2:amd64 (1.0.2u-1~deb9u3) ... Selecting previously unselected package libncurses5:amd64. Preparing to unpack .../10-libncurses5_6.0+20161126-1+deb9u2_amd64.deb ... Unpacking libncurses5:amd64 (6.0+20161126-1+deb9u2) ... Selecting previously unselected package procps. Preparing to unpack .../11-procps_2%3a3.3.12-3+deb9u1_amd64.deb ... Unpacking procps (2:3.3.12-3+deb9u1) ... Selecting previously unselected package libgmp10:amd64. Preparing to unpack .../12-libgmp10_2%3a6.1.2+dfsg-1_amd64.deb ... Unpacking libgmp10:amd64 (2:6.1.2+dfsg-1) ... Selecting previously unselected package libnettle6:amd64. Preparing to unpack .../13-libnettle6_3.3-1+b2_amd64.deb ... Unpacking libnettle6:amd64 (3.3-1+b2) ... Selecting previously unselected package libhogweed4:amd64. Preparing to unpack .../14-libhogweed4_3.3-1+b2_amd64.deb ... Unpacking libhogweed4:amd64 (3.3-1+b2) ... Selecting previously unselected package libidn11:amd64. Preparing to unpack .../15-libidn11_1.33-1+deb9u1_amd64.deb ... Unpacking libidn11:amd64 (1.33-1+deb9u1) ... Selecting previously unselected package libffi6:amd64. Preparing to unpack .../16-libffi6_3.2.1-6_amd64.deb ... Unpacking libffi6:amd64 (3.2.1-6) ... Selecting previously unselected package libp11-kit0:amd64. Preparing to unpack .../17-libp11-kit0_0.23.3-2_amd64.deb ... Unpacking libp11-kit0:amd64 (0.23.3-2) ... Selecting previously unselected package libtasn1-6:amd64. Preparing to unpack .../18-libtasn1-6_4.10-1.1+deb9u1_amd64.deb ... Unpacking libtasn1-6:amd64 (4.10-1.1+deb9u1) ... Selecting previously unselected package libgnutls30:amd64. Preparing to unpack .../19-libgnutls30_3.5.8-5+deb9u5_amd64.deb ... Unpacking libgnutls30:amd64 (3.5.8-5+deb9u5) ... Selecting previously unselected package libunistring0:amd64. Preparing to unpack .../20-libunistring0_0.9.6+really0.9.3-0.1_amd64.deb ... Unpacking libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Selecting previously unselected package libidn2-0:amd64. Preparing to unpack .../21-libidn2-0_0.16-1+deb9u1_amd64.deb ... Unpacking libidn2-0:amd64 (0.16-1+deb9u1) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../22-libpsl5_0.17.0-3_amd64.deb ... Unpacking libpsl5:amd64 (0.17.0-3) ... Selecting previously unselected package wget. Preparing to unpack .../23-wget_1.18-5+deb9u3_amd64.deb ... Unpacking wget (1.18-5+deb9u3) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../24-libkeyutils1_1.5.9-9_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../25-libkrb5support0_1.15-1+deb9u2_amd64.deb ... Unpacking libkrb5support0:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../26-libk5crypto3_1.15-1+deb9u2_amd64.deb ... Unpacking libk5crypto3:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../27-libkrb5-3_1.15-1+deb9u2_amd64.deb ... Unpacking libkrb5-3:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../28-libgssapi-krb5-2_1.15-1+deb9u2_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.15-1+deb9u2) ... Selecting previously unselected package libsasl2-modules-db:amd64. Preparing to unpack .../29-libsasl2-modules-db_2.1.27~101-g0780600+dfsg-3+deb9u1_amd64.deb ... Unpacking libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Selecting previously unselected package libsasl2-2:amd64. Preparing to unpack .../30-libsasl2-2_2.1.27~101-g0780600+dfsg-3+deb9u1_amd64.deb ... Unpacking libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Selecting previously unselected package libldap-common. Preparing to unpack .../31-libldap-common_2.4.44+dfsg-5+deb9u6_all.deb ... Unpacking libldap-common (2.4.44+dfsg-5+deb9u6) ... Selecting previously unselected package libldap-2.4-2:amd64. Preparing to unpack .../32-libldap-2.4-2_2.4.44+dfsg-5+deb9u6_amd64.deb ... Unpacking libldap-2.4-2:amd64 (2.4.44+dfsg-5+deb9u6) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../33-libnghttp2-14_1.18.1-1+deb9u1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.18.1-1+deb9u1) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../34-librtmp1_2.4+20151223.gitfa8646d.1-1+b1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Selecting previously unselected package libssh2-1:amd64. Preparing to unpack .../35-libssh2-1_1.7.0-1+deb9u1_amd64.deb ... Unpacking libssh2-1:amd64 (1.7.0-1+deb9u1) ... Selecting previously unselected package libcurl3-gnutls:amd64. Preparing to unpack .../36-libcurl3-gnutls_7.52.1-5+deb9u13_amd64.deb ... Unpacking libcurl3-gnutls:amd64 (7.52.1-5+deb9u13) ... Selecting previously unselected package apt-transport-https. Preparing to unpack .../37-apt-transport-https_1.4.11_amd64.deb ... Unpacking apt-transport-https (1.4.11) ... Selecting previously unselected package openssl. Preparing to unpack .../38-openssl_1.1.0l-1~deb9u2_amd64.deb ... Unpacking openssl (1.1.0l-1~deb9u2) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../39-ca-certificates_20200601~deb9u1_all.deb ... Unpacking ca-certificates (20200601~deb9u1) ... Selecting previously unselected package libcurl3:amd64. Preparing to unpack .../40-libcurl3_7.52.1-5+deb9u13_amd64.deb ... Unpacking libcurl3:amd64 (7.52.1-5+deb9u13) ... Selecting previously unselected package curl. Preparing to unpack .../41-curl_7.52.1-5+deb9u13_amd64.deb ... Unpacking curl (7.52.1-5+deb9u13) ... Selecting previously unselected package distro-info-data. Preparing to unpack .../42-distro-info-data_0.36_all.deb ... Unpacking distro-info-data (0.36) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../43-libglib2.0-0_2.50.3-2+deb9u2_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.50.3-2+deb9u2) ... Selecting previously unselected package libgirepository-1.0-1:amd64. Preparing to unpack .../44-libgirepository-1.0-1_1.50.0-1+b1_amd64.deb ... Unpacking libgirepository-1.0-1:amd64 (1.50.0-1+b1) ... Selecting previously unselected package gir1.2-glib-2.0:amd64. Preparing to unpack .../45-gir1.2-glib-2.0_1.50.0-1+b1_amd64.deb ... Unpacking gir1.2-glib-2.0:amd64 (1.50.0-1+b1) ... Selecting previously unselected package libpackagekit-glib2-18:amd64. Preparing to unpack .../46-libpackagekit-glib2-18_1.1.5-2+deb9u2_amd64.deb ... Unpacking libpackagekit-glib2-18:amd64 (1.1.5-2+deb9u2) ... Selecting previously unselected package gir1.2-packagekitglib-1.0. Preparing to unpack .../47-gir1.2-packagekitglib-1.0_1.1.5-2+deb9u2_amd64.deb ... Unpacking gir1.2-packagekitglib-1.0 (1.1.5-2+deb9u2) ... Selecting previously unselected package gnupg2. Preparing to unpack .../48-gnupg2_2.1.18-8~deb9u4_all.deb ... Unpacking gnupg2 (2.1.18-8~deb9u4) ... Selecting previously unselected package iso-codes. Preparing to unpack .../49-iso-codes_3.75-1_all.deb ... Unpacking iso-codes (3.75-1) ... Selecting previously unselected package libdbus-1-3:amd64. Preparing to unpack .../50-libdbus-1-3_1.10.32-0+deb9u1_amd64.deb ... Unpacking libdbus-1-3:amd64 (1.10.32-0+deb9u1) ... Selecting previously unselected package libdbus-glib-1-2:amd64. Preparing to unpack .../51-libdbus-glib-1-2_0.108-2_amd64.deb ... Unpacking libdbus-glib-1-2:amd64 (0.108-2) ... Selecting previously unselected package lsb-release. Preparing to unpack .../52-lsb-release_9.20161125_all.deb ... Unpacking lsb-release (9.20161125) ... Selecting previously unselected package python-apt-common. Preparing to unpack .../53-python-apt-common_1.4.2_all.deb ... Unpacking python-apt-common (1.4.2) ... Selecting previously unselected package python3-apt. Preparing to unpack .../54-python3-apt_1.4.2_amd64.deb ... Unpacking python3-apt (1.4.2) ... Selecting previously unselected package python3-dbus. Preparing to unpack .../55-python3-dbus_1.2.4-1+b1_amd64.deb ... Unpacking python3-dbus (1.2.4-1+b1) ... Selecting previously unselected package python3-gi. Preparing to unpack .../56-python3-gi_3.22.0-2_amd64.deb ... Unpacking python3-gi (3.22.0-2) ... Selecting previously unselected package python3-pycurl. Preparing to unpack .../57-python3-pycurl_7.43.0-2_amd64.deb ... Unpacking python3-pycurl (7.43.0-2) ... Selecting previously unselected package python3-software-properties. Preparing to unpack .../58-python3-software-properties_0.96.20.2-1+deb9u1_all.deb ... Unpacking python3-software-properties (0.96.20.2-1+deb9u1) ... Selecting previously unselected package software-properties-common. Preparing to unpack .../59-software-properties-common_0.96.20.2-1+deb9u1_all.deb ... Unpacking software-properties-common (0.96.20.2-1+deb9u1) ... Setting up python-apt-common (1.4.2) ... Setting up libnpth0:amd64 (1.3-1) ... Setting up libncurses5:amd64 (6.0+20161126-1+deb9u2) ... Setting up readline-common (7.0-3) ... Setting up libapt-inst2.0:amd64 (1.4.11) ... Setting up libnettle6:amd64 (3.3-1+b2) ... Setting up libnghttp2-14:amd64 (1.18.1-1+deb9u1) ... Setting up mime-support (3.60) ... Setting up iso-codes (3.75-1) ... Setting up libldap-common (2.4.44+dfsg-5+deb9u6) ... Setting up libreadline7:amd64 (7.0-3) ... Setting up libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Setting up libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u1) ... Setting up distro-info-data (0.36) ... Setting up libksba8:amd64 (1.3.5-2) ... Setting up libprocps6:amd64 (2:3.3.12-3+deb9u1) ... Setting up libtasn1-6:amd64 (4.10-1.1+deb9u1) ... Setting up procps (2:3.3.12-3+deb9u1) ... update-alternatives: using /usr/bin/w.procps to provide /usr/bin/w (w) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/w.1.gz because associated file /usr/share/man/man1/w.procps.1.gz (of link group w) doesn't exist Setting up libssl1.0.2:amd64 (1.0.2u-1~deb9u3) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Setting up libgmp10:amd64 (2:6.1.2+dfsg-1) ... Setting up libssh2-1:amd64 (1.7.0-1+deb9u1) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Setting up libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Setting up openssl (1.1.0l-1~deb9u2) ... Setting up libsqlite3-0:amd64 (3.16.2-5+deb9u3) ... Setting up libffi6:amd64 (3.2.1-6) ... Setting up libkeyutils1:amd64 (1.5.9-9) ... Setting up ca-certificates (20200601~deb9u1) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/x86_64-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Updating certificates in /etc/ssl/certs... 126 added, 0 removed; done. Setting up libassuan0:amd64 (2.4.3-2) ... Setting up libidn11:amd64 (1.33-1+deb9u1) ... Setting up libmpdec2:amd64 (2.4.2-1) ... Setting up libdbus-1-3:amd64 (1.10.32-0+deb9u1) ... Setting up libidn2-0:amd64 (0.16-1+deb9u1) ... Setting up libpsl5:amd64 (0.17.0-3) ... Setting up libglib2.0-0:amd64 (2.50.3-2+deb9u2) ... No schema files found: doing nothing. Setting up libpython3.5-stdlib:amd64 (3.5.3-1+deb9u3) ... Setting up libpackagekit-glib2-18:amd64 (1.1.5-2+deb9u2) ... Setting up libkrb5support0:amd64 (1.15-1+deb9u2) ... Setting up libgirepository-1.0-1:amd64 (1.50.0-1+b1) ... Setting up libhogweed4:amd64 (3.3-1+b2) ... Setting up gir1.2-glib-2.0:amd64 (1.50.0-1+b1) ... Setting up libp11-kit0:amd64 (0.23.3-2) ... Setting up gir1.2-packagekitglib-1.0 (1.1.5-2+deb9u2) ... Setting up pinentry-curses (1.0.0-2) ... Setting up gnupg-agent (2.1.18-8~deb9u4) ... Setting up python3.5 (3.5.3-1+deb9u3) ... Setting up libpython3-stdlib:amd64 (3.5.3-1) ... Setting up libk5crypto3:amd64 (1.15-1+deb9u2) ... Setting up libdbus-glib-1-2:amd64 (0.108-2) ... Setting up gnupg (2.1.18-8~deb9u4) ... Setting up libgnutls30:amd64 (3.5.8-5+deb9u5) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Setting up gnupg2 (2.1.18-8~deb9u4) ... Setting up libldap-2.4-2:amd64 (2.4.44+dfsg-5+deb9u6) ... Setting up wget (1.18-5+deb9u3) ... Setting up libkrb5-3:amd64 (1.15-1+deb9u2) ... Setting up libgssapi-krb5-2:amd64 (1.15-1+deb9u2) ... Setting up libcurl3:amd64 (7.52.1-5+deb9u13) ... Setting up libcurl3-gnutls:amd64 (7.52.1-5+deb9u13) ... Setting up apt-transport-https (1.4.11) ... Setting up curl (7.52.1-5+deb9u13) ... Setting up python3 (3.5.3-1) ... running python rtupdate hooks for python3.5... running python post-rtupdate hooks for python3.5... Setting up python3-gi (3.22.0-2) ... Setting up lsb-release (9.20161125) ... Setting up dh-python (2.20170125) ... Setting up python3-pycurl (7.43.0-2) ... Setting up python3-apt (1.4.2) ... Setting up python3-dbus (1.2.4-1+b1) ... Setting up python3-software-properties (0.96.20.2-1+deb9u1) ... Setting up software-properties-common (0.96.20.2-1+deb9u1) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Processing triggers for ca-certificates (20200601~deb9u1) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Removing intermediate container f42f89d3dc04 ---> 1bb3c5861619 Step 4/32 : RUN apt-get update && apt-get install -y --no-install-recommends curl certbot rsyslog cron inotify-tools make gcc g++ libreadline-dev libssl-dev libpcre3-dev libz-dev && rm -rf /var/lib/apt/lists/* ---> Running in 2073f80ac0ff Get:1 http://security.debian.org/debian-security stretch/updates InRelease [53.0 kB] Ign:2 http://deb.debian.org/debian stretch InRelease Get:3 http://deb.debian.org/debian stretch-updates InRelease [93.6 kB] Get:4 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [637 kB] Get:5 http://deb.debian.org/debian stretch Release [118 kB] Get:6 http://deb.debian.org/debian stretch Release.gpg [2410 B] Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages [2596 B] Get:8 http://deb.debian.org/debian stretch/main amd64 Packages [7080 kB] Fetched 7986 kB in 1s (5875 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... curl is already the newest version (7.52.1-5+deb9u13). The following additional packages will be installed: binutils cpp cpp-6 g++-6 gcc-6 libasan3 libatomic1 libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libestr0 libfastjson4 libgcc-6-dev libgomp1 libinotifytools0 libisl15 libitm1 liblogging-stdlog0 liblognorm5 liblsan0 libmpc3 libmpfr4 libmpx2 libpcre16-3 libpcre32-3 libpcrecpp0v5 libquadmath0 libstdc++-6-dev libtinfo-dev libtsan0 libubsan0 linux-libc-dev python3-acme python3-certbot python3-cffi-backend python3-chardet python3-configargparse python3-configobj python3-cryptography python3-idna python3-josepy python3-mock python3-openssl python3-parsedatetime python3-pbr python3-pkg-resources python3-pyasn1 python3-requests python3-requests-toolbelt python3-rfc3339 python3-setuptools python3-six python3-tz python3-urllib3 python3-zope.component python3-zope.event python3-zope.hookable python3-zope.interface Suggested packages: binutils-doc python3-certbot-apache python3-certbot-nginx python-certbot-doc cpp-doc gcc-6-locales anacron logrotate checksecurity g++-multilib g++-6-multilib gcc-6-doc libstdc++6-6-dbg gcc-multilib manpages-dev autoconf automake libtool flex bison gdb gcc-doc gcc-6-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan3-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg glibc-doc readline-doc libstdc++-6-doc make-doc python-acme-doc python-configobj-doc python-cryptography-doc python3-cryptography-vectors python-mock-doc python-openssl-doc python3-openssl-dbg doc-base python3-socks python-setuptools-doc rsyslog-mysql | rsyslog-pgsql rsyslog-mongodb rsyslog-doc rsyslog-gnutls rsyslog-gssapi rsyslog-relp Recommended packages: exim4 | postfix | mail-transport-agent manpages manpages-dev libssl-doc python3-pyicu logrotate The following NEW packages will be installed: binutils certbot cpp cpp-6 cron g++ g++-6 gcc gcc-6 inotify-tools libasan3 libatomic1 libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libestr0 libfastjson4 libgcc-6-dev libgomp1 libinotifytools0 libisl15 libitm1 liblogging-stdlog0 liblognorm5 liblsan0 libmpc3 libmpfr4 libmpx2 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libquadmath0 libreadline-dev libssl-dev libstdc++-6-dev libtinfo-dev libtsan0 libubsan0 linux-libc-dev make python3-acme python3-certbot python3-cffi-backend python3-chardet python3-configargparse python3-configobj python3-cryptography python3-idna python3-josepy python3-mock python3-openssl python3-parsedatetime python3-pbr python3-pkg-resources python3-pyasn1 python3-requests python3-requests-toolbelt python3-rfc3339 python3-setuptools python3-six python3-tz python3-urllib3 python3-zope.component python3-zope.event python3-zope.hookable python3-zope.interface rsyslog zlib1g-dev 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. Need to get 40.8 MB of archives. After this operation, 179 MB of additional disk space will be used. Get:1 http://deb.debian.org/debian stretch/main amd64 cron amd64 3.0pl1-128+deb9u1 [95.4 kB] Get:2 http://security.debian.org/debian-security stretch/updates/main amd64 linux-libc-dev amd64 4.9.246-2 [1563 kB] Get:3 http://deb.debian.org/debian stretch/main amd64 libestr0 amd64 0.1.10-2 [8450 B] Get:4 http://deb.debian.org/debian stretch/main amd64 libpcrecpp0v5 amd64 2:8.39-3 [151 kB] Get:5 http://deb.debian.org/debian stretch/main amd64 liblogging-stdlog0 amd64 1.0.5-2+b2 [12.6 kB] Get:6 http://deb.debian.org/debian stretch/main amd64 libfastjson4 amd64 0.99.4-1 [22.7 kB] Get:7 http://deb.debian.org/debian stretch/main amd64 liblognorm5 amd64 2.0.1-1.1+b1 [57.7 kB] Get:8 http://deb.debian.org/debian stretch/main amd64 rsyslog amd64 8.24.0-1 [553 kB] Get:9 http://security.debian.org/debian-security stretch/updates/main amd64 libssl-dev amd64 1.1.0l-1~deb9u2 [1594 kB] Get:10 http://security.debian.org/debian-security stretch/updates/main amd64 python3-certbot all 0.28.0-1~deb9u3 [223 kB] Get:11 http://security.debian.org/debian-security stretch/updates/main amd64 certbot all 0.28.0-1~deb9u3 [37.9 kB] Get:12 http://deb.debian.org/debian stretch/main amd64 binutils amd64 2.28-5 [3770 kB] Get:13 http://deb.debian.org/debian stretch/main amd64 libisl15 amd64 0.18-1 [564 kB] Get:14 http://deb.debian.org/debian stretch/main amd64 libmpfr4 amd64 3.1.5-1 [556 kB] Get:15 http://deb.debian.org/debian stretch/main amd64 libmpc3 amd64 1.0.3-1+b2 [39.9 kB] Get:16 http://deb.debian.org/debian stretch/main amd64 cpp-6 amd64 6.3.0-18+deb9u1 [6584 kB] Get:17 http://deb.debian.org/debian stretch/main amd64 cpp amd64 4:6.3.0-4 [18.7 kB] Get:18 http://deb.debian.org/debian stretch/main amd64 libcc1-0 amd64 6.3.0-18+deb9u1 [30.6 kB] Get:19 http://deb.debian.org/debian stretch/main amd64 libgomp1 amd64 6.3.0-18+deb9u1 [73.3 kB] Get:20 http://deb.debian.org/debian stretch/main amd64 libitm1 amd64 6.3.0-18+deb9u1 [27.3 kB] Get:21 http://deb.debian.org/debian stretch/main amd64 libatomic1 amd64 6.3.0-18+deb9u1 [8966 B] Get:22 http://deb.debian.org/debian stretch/main amd64 libasan3 amd64 6.3.0-18+deb9u1 [311 kB] Get:23 http://deb.debian.org/debian stretch/main amd64 liblsan0 amd64 6.3.0-18+deb9u1 [115 kB] Get:24 http://deb.debian.org/debian stretch/main amd64 libtsan0 amd64 6.3.0-18+deb9u1 [257 kB] Get:25 http://deb.debian.org/debian stretch/main amd64 libubsan0 amd64 6.3.0-18+deb9u1 [107 kB] Get:26 http://deb.debian.org/debian stretch/main amd64 libcilkrts5 amd64 6.3.0-18+deb9u1 [40.5 kB] Get:27 http://deb.debian.org/debian stretch/main amd64 libmpx2 amd64 6.3.0-18+deb9u1 [11.2 kB] Get:28 http://deb.debian.org/debian stretch/main amd64 libquadmath0 amd64 6.3.0-18+deb9u1 [131 kB] Get:29 http://deb.debian.org/debian stretch/main amd64 libgcc-6-dev amd64 6.3.0-18+deb9u1 [2296 kB] Get:30 http://deb.debian.org/debian stretch/main amd64 gcc-6 amd64 6.3.0-18+deb9u1 [6900 kB] Get:31 http://deb.debian.org/debian stretch/main amd64 gcc amd64 4:6.3.0-4 [5196 B] Get:32 http://deb.debian.org/debian stretch/main amd64 libc-dev-bin amd64 2.24-11+deb9u4 [259 kB] Get:33 http://deb.debian.org/debian stretch/main amd64 libc6-dev amd64 2.24-11+deb9u4 [2364 kB] Get:34 http://deb.debian.org/debian stretch/main amd64 libstdc++-6-dev amd64 6.3.0-18+deb9u1 [1420 kB] Get:35 http://deb.debian.org/debian stretch/main amd64 g++-6 amd64 6.3.0-18+deb9u1 [7094 kB] Get:36 http://deb.debian.org/debian stretch/main amd64 g++ amd64 4:6.3.0-4 [1546 B] Get:37 http://deb.debian.org/debian stretch/main amd64 libinotifytools0 amd64 3.14-2 [17.8 kB] Get:38 http://deb.debian.org/debian stretch/main amd64 inotify-tools amd64 3.14-2 [25.0 kB] Get:39 http://deb.debian.org/debian stretch/main amd64 libpcre16-3 amd64 2:8.39-3 [258 kB] Get:40 http://deb.debian.org/debian stretch/main amd64 libpcre32-3 amd64 2:8.39-3 [248 kB] Get:41 http://deb.debian.org/debian stretch/main amd64 libpcre3-dev amd64 2:8.39-3 [647 kB] Get:42 http://deb.debian.org/debian stretch/main amd64 libtinfo-dev amd64 6.0+20161126-1+deb9u2 [79.2 kB] Get:43 http://deb.debian.org/debian stretch/main amd64 libreadline-dev amd64 7.0-3 [132 kB] Get:44 http://deb.debian.org/debian stretch/main amd64 make amd64 4.1-9.1 [302 kB] Get:45 http://deb.debian.org/debian stretch/main amd64 python3-cffi-backend amd64 1.9.1-2 [70.1 kB] Get:46 http://deb.debian.org/debian stretch/main amd64 python3-idna all 2.2-1 [32.7 kB] Get:47 http://deb.debian.org/debian stretch/main amd64 python3-pyasn1 all 0.1.9-2 [34.5 kB] Get:48 http://deb.debian.org/debian stretch/main amd64 python3-pkg-resources all 33.1.1-1 [137 kB] Get:49 http://deb.debian.org/debian stretch/main amd64 python3-setuptools all 33.1.1-1 [215 kB] Get:50 http://deb.debian.org/debian stretch/main amd64 python3-six all 1.10.0-3 [14.4 kB] Get:51 http://deb.debian.org/debian stretch/main amd64 python3-cryptography amd64 1.7.1-3+deb9u2 [211 kB] Get:52 http://deb.debian.org/debian stretch/main amd64 python3-openssl all 16.2.0-1 [43.8 kB] Get:53 http://deb.debian.org/debian stretch/main amd64 python3-josepy all 1.1.0-2~deb9u1 [27.8 kB] Get:54 http://deb.debian.org/debian stretch/main amd64 python3-pbr all 1.10.0-1 [52.5 kB] Get:55 http://deb.debian.org/debian stretch/main amd64 python3-mock all 2.0.0-3 [59.9 kB] Get:56 http://deb.debian.org/debian stretch/main amd64 python3-urllib3 all 1.19.1-1 [77.6 kB] Get:57 http://deb.debian.org/debian stretch/main amd64 python3-chardet all 2.3.0-2 [96.0 kB] Get:58 http://deb.debian.org/debian stretch/main amd64 python3-requests all 2.12.4-1 [101 kB] Get:59 http://deb.debian.org/debian stretch/main amd64 python3-requests-toolbelt all 0.7.0-1 [36.7 kB] Get:60 http://deb.debian.org/debian stretch/main amd64 python3-tz all 2016.7-0.3 [27.1 kB] Get:61 http://deb.debian.org/debian stretch/main amd64 python3-rfc3339 all 1.0-4 [6282 B] Get:62 http://deb.debian.org/debian stretch/main amd64 python3-acme all 0.28.0-1~deb9u2 [49.9 kB] Get:63 http://deb.debian.org/debian stretch/main amd64 python3-configargparse all 0.11.0-1 [22.3 kB] Get:64 http://deb.debian.org/debian stretch/main amd64 python3-configobj all 5.0.6-2 [35.2 kB] Get:65 http://deb.debian.org/debian stretch/main amd64 python3-parsedatetime all 2.1-3+deb9u1 [37.7 kB] Get:66 http://deb.debian.org/debian stretch/main amd64 python3-zope.hookable amd64 4.0.4-4+b2 [10.3 kB] Get:67 http://deb.debian.org/debian stretch/main amd64 python3-zope.interface amd64 4.3.2-1 [89.8 kB] Get:68 http://deb.debian.org/debian stretch/main amd64 python3-zope.event all 4.2.0-1 [8412 B] Get:69 http://deb.debian.org/debian stretch/main amd64 python3-zope.component all 4.3.0-1 [43.0 kB] Get:70 http://deb.debian.org/debian stretch/main amd64 zlib1g-dev amd64 1:1.2.8.dfsg-5 [205 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 40.8 MB in 3s (11.1 MB/s) Selecting previously unselected package cron. (Reading database ... 9494 files and directories currently installed.) Preparing to unpack .../00-cron_3.0pl1-128+deb9u1_amd64.deb ... Unpacking cron (3.0pl1-128+deb9u1) ... Selecting previously unselected package libestr0. Preparing to unpack .../01-libestr0_0.1.10-2_amd64.deb ... Unpacking libestr0 (0.1.10-2) ... Selecting previously unselected package libpcrecpp0v5:amd64. Preparing to unpack .../02-libpcrecpp0v5_2%3a8.39-3_amd64.deb ... Unpacking libpcrecpp0v5:amd64 (2:8.39-3) ... Selecting previously unselected package liblogging-stdlog0:amd64. Preparing to unpack .../03-liblogging-stdlog0_1.0.5-2+b2_amd64.deb ... Unpacking liblogging-stdlog0:amd64 (1.0.5-2+b2) ... Selecting previously unselected package libfastjson4:amd64. Preparing to unpack .../04-libfastjson4_0.99.4-1_amd64.deb ... Unpacking libfastjson4:amd64 (0.99.4-1) ... Selecting previously unselected package liblognorm5:amd64. Preparing to unpack .../05-liblognorm5_2.0.1-1.1+b1_amd64.deb ... Unpacking liblognorm5:amd64 (2.0.1-1.1+b1) ... Selecting previously unselected package rsyslog. Preparing to unpack .../06-rsyslog_8.24.0-1_amd64.deb ... Unpacking rsyslog (8.24.0-1) ... Selecting previously unselected package binutils. Preparing to unpack .../07-binutils_2.28-5_amd64.deb ... Unpacking binutils (2.28-5) ... Selecting previously unselected package libisl15:amd64. Preparing to unpack .../08-libisl15_0.18-1_amd64.deb ... Unpacking libisl15:amd64 (0.18-1) ... Selecting previously unselected package libmpfr4:amd64. Preparing to unpack .../09-libmpfr4_3.1.5-1_amd64.deb ... Unpacking libmpfr4:amd64 (3.1.5-1) ... Selecting previously unselected package libmpc3:amd64. Preparing to unpack .../10-libmpc3_1.0.3-1+b2_amd64.deb ... Unpacking libmpc3:amd64 (1.0.3-1+b2) ... Selecting previously unselected package cpp-6. Preparing to unpack .../11-cpp-6_6.3.0-18+deb9u1_amd64.deb ... Unpacking cpp-6 (6.3.0-18+deb9u1) ... Selecting previously unselected package cpp. Preparing to unpack .../12-cpp_4%3a6.3.0-4_amd64.deb ... Unpacking cpp (4:6.3.0-4) ... Selecting previously unselected package libcc1-0:amd64. Preparing to unpack .../13-libcc1-0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libcc1-0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libgomp1:amd64. Preparing to unpack .../14-libgomp1_6.3.0-18+deb9u1_amd64.deb ... Unpacking libgomp1:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libitm1:amd64. Preparing to unpack .../15-libitm1_6.3.0-18+deb9u1_amd64.deb ... Unpacking libitm1:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libatomic1:amd64. Preparing to unpack .../16-libatomic1_6.3.0-18+deb9u1_amd64.deb ... Unpacking libatomic1:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libasan3:amd64. Preparing to unpack .../17-libasan3_6.3.0-18+deb9u1_amd64.deb ... Unpacking libasan3:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package liblsan0:amd64. Preparing to unpack .../18-liblsan0_6.3.0-18+deb9u1_amd64.deb ... Unpacking liblsan0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libtsan0:amd64. Preparing to unpack .../19-libtsan0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libtsan0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libubsan0:amd64. Preparing to unpack .../20-libubsan0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libubsan0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libcilkrts5:amd64. Preparing to unpack .../21-libcilkrts5_6.3.0-18+deb9u1_amd64.deb ... Unpacking libcilkrts5:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libmpx2:amd64. Preparing to unpack .../22-libmpx2_6.3.0-18+deb9u1_amd64.deb ... Unpacking libmpx2:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../23-libquadmath0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libquadmath0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libgcc-6-dev:amd64. Preparing to unpack .../24-libgcc-6-dev_6.3.0-18+deb9u1_amd64.deb ... Unpacking libgcc-6-dev:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package gcc-6. Preparing to unpack .../25-gcc-6_6.3.0-18+deb9u1_amd64.deb ... Unpacking gcc-6 (6.3.0-18+deb9u1) ... Selecting previously unselected package gcc. Preparing to unpack .../26-gcc_4%3a6.3.0-4_amd64.deb ... Unpacking gcc (4:6.3.0-4) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../27-libc-dev-bin_2.24-11+deb9u4_amd64.deb ... Unpacking libc-dev-bin (2.24-11+deb9u4) ... Selecting previously unselected package linux-libc-dev:amd64. Preparing to unpack .../28-linux-libc-dev_4.9.246-2_amd64.deb ... Unpacking linux-libc-dev:amd64 (4.9.246-2) ... Selecting previously unselected package libc6-dev:amd64. Preparing to unpack .../29-libc6-dev_2.24-11+deb9u4_amd64.deb ... Unpacking libc6-dev:amd64 (2.24-11+deb9u4) ... Selecting previously unselected package libstdc++-6-dev:amd64. Preparing to unpack .../30-libstdc++-6-dev_6.3.0-18+deb9u1_amd64.deb ... Unpacking libstdc++-6-dev:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package g++-6. Preparing to unpack .../31-g++-6_6.3.0-18+deb9u1_amd64.deb ... Unpacking g++-6 (6.3.0-18+deb9u1) ... Selecting previously unselected package g++. Preparing to unpack .../32-g++_4%3a6.3.0-4_amd64.deb ... Unpacking g++ (4:6.3.0-4) ... Selecting previously unselected package libinotifytools0. Preparing to unpack .../33-libinotifytools0_3.14-2_amd64.deb ... Unpacking libinotifytools0 (3.14-2) ... Selecting previously unselected package inotify-tools. Preparing to unpack .../34-inotify-tools_3.14-2_amd64.deb ... Unpacking inotify-tools (3.14-2) ... Selecting previously unselected package libpcre16-3:amd64. Preparing to unpack .../35-libpcre16-3_2%3a8.39-3_amd64.deb ... Unpacking libpcre16-3:amd64 (2:8.39-3) ... Selecting previously unselected package libpcre32-3:amd64. Preparing to unpack .../36-libpcre32-3_2%3a8.39-3_amd64.deb ... Unpacking libpcre32-3:amd64 (2:8.39-3) ... Selecting previously unselected package libpcre3-dev:amd64. Preparing to unpack .../37-libpcre3-dev_2%3a8.39-3_amd64.deb ... Unpacking libpcre3-dev:amd64 (2:8.39-3) ... Selecting previously unselected package libtinfo-dev:amd64. Preparing to unpack .../38-libtinfo-dev_6.0+20161126-1+deb9u2_amd64.deb ... Unpacking libtinfo-dev:amd64 (6.0+20161126-1+deb9u2) ... Selecting previously unselected package libreadline-dev:amd64. Preparing to unpack .../39-libreadline-dev_7.0-3_amd64.deb ... Unpacking libreadline-dev:amd64 (7.0-3) ... Selecting previously unselected package libssl-dev:amd64. Preparing to unpack .../40-libssl-dev_1.1.0l-1~deb9u2_amd64.deb ... Unpacking libssl-dev:amd64 (1.1.0l-1~deb9u2) ... Selecting previously unselected package make. Preparing to unpack .../41-make_4.1-9.1_amd64.deb ... Unpacking make (4.1-9.1) ... Selecting previously unselected package python3-cffi-backend. Preparing to unpack .../42-python3-cffi-backend_1.9.1-2_amd64.deb ... Unpacking python3-cffi-backend (1.9.1-2) ... Selecting previously unselected package python3-idna. Preparing to unpack .../43-python3-idna_2.2-1_all.deb ... Unpacking python3-idna (2.2-1) ... Selecting previously unselected package python3-pyasn1. Preparing to unpack .../44-python3-pyasn1_0.1.9-2_all.deb ... Unpacking python3-pyasn1 (0.1.9-2) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../45-python3-pkg-resources_33.1.1-1_all.deb ... Unpacking python3-pkg-resources (33.1.1-1) ... Selecting previously unselected package python3-setuptools. Preparing to unpack .../46-python3-setuptools_33.1.1-1_all.deb ... Unpacking python3-setuptools (33.1.1-1) ... Selecting previously unselected package python3-six. Preparing to unpack .../47-python3-six_1.10.0-3_all.deb ... Unpacking python3-six (1.10.0-3) ... Selecting previously unselected package python3-cryptography. Preparing to unpack .../48-python3-cryptography_1.7.1-3+deb9u2_amd64.deb ... Unpacking python3-cryptography (1.7.1-3+deb9u2) ... Selecting previously unselected package python3-openssl. Preparing to unpack .../49-python3-openssl_16.2.0-1_all.deb ... Unpacking python3-openssl (16.2.0-1) ... Selecting previously unselected package python3-josepy. Preparing to unpack .../50-python3-josepy_1.1.0-2~deb9u1_all.deb ... Unpacking python3-josepy (1.1.0-2~deb9u1) ... Selecting previously unselected package python3-pbr. Preparing to unpack .../51-python3-pbr_1.10.0-1_all.deb ... Unpacking python3-pbr (1.10.0-1) ... Selecting previously unselected package python3-mock. Preparing to unpack .../52-python3-mock_2.0.0-3_all.deb ... Unpacking python3-mock (2.0.0-3) ... Selecting previously unselected package python3-urllib3. Preparing to unpack .../53-python3-urllib3_1.19.1-1_all.deb ... Unpacking python3-urllib3 (1.19.1-1) ... Selecting previously unselected package python3-chardet. Preparing to unpack .../54-python3-chardet_2.3.0-2_all.deb ... Unpacking python3-chardet (2.3.0-2) ... Selecting previously unselected package python3-requests. Preparing to unpack .../55-python3-requests_2.12.4-1_all.deb ... Unpacking python3-requests (2.12.4-1) ... Selecting previously unselected package python3-requests-toolbelt. Preparing to unpack .../56-python3-requests-toolbelt_0.7.0-1_all.deb ... Unpacking python3-requests-toolbelt (0.7.0-1) ... Selecting previously unselected package python3-tz. Preparing to unpack .../57-python3-tz_2016.7-0.3_all.deb ... Unpacking python3-tz (2016.7-0.3) ... Selecting previously unselected package python3-rfc3339. Preparing to unpack .../58-python3-rfc3339_1.0-4_all.deb ... Unpacking python3-rfc3339 (1.0-4) ... Selecting previously unselected package python3-acme. Preparing to unpack .../59-python3-acme_0.28.0-1~deb9u2_all.deb ... Unpacking python3-acme (0.28.0-1~deb9u2) ... Selecting previously unselected package python3-configargparse. Preparing to unpack .../60-python3-configargparse_0.11.0-1_all.deb ... Unpacking python3-configargparse (0.11.0-1) ... Selecting previously unselected package python3-configobj. Preparing to unpack .../61-python3-configobj_5.0.6-2_all.deb ... Unpacking python3-configobj (5.0.6-2) ... Selecting previously unselected package python3-parsedatetime. Preparing to unpack .../62-python3-parsedatetime_2.1-3+deb9u1_all.deb ... Unpacking python3-parsedatetime (2.1-3+deb9u1) ... Selecting previously unselected package python3-zope.hookable. Preparing to unpack .../63-python3-zope.hookable_4.0.4-4+b2_amd64.deb ... Unpacking python3-zope.hookable (4.0.4-4+b2) ... Selecting previously unselected package python3-zope.interface. Preparing to unpack .../64-python3-zope.interface_4.3.2-1_amd64.deb ... Unpacking python3-zope.interface (4.3.2-1) ... Selecting previously unselected package python3-zope.event. Preparing to unpack .../65-python3-zope.event_4.2.0-1_all.deb ... Unpacking python3-zope.event (4.2.0-1) ... Selecting previously unselected package python3-zope.component. Preparing to unpack .../66-python3-zope.component_4.3.0-1_all.deb ... Unpacking python3-zope.component (4.3.0-1) ... Selecting previously unselected package python3-certbot. Preparing to unpack .../67-python3-certbot_0.28.0-1~deb9u3_all.deb ... Unpacking python3-certbot (0.28.0-1~deb9u3) ... Selecting previously unselected package zlib1g-dev:amd64. Preparing to unpack .../68-zlib1g-dev_1%3a1.2.8.dfsg-5_amd64.deb ... Unpacking zlib1g-dev:amd64 (1:1.2.8.dfsg-5) ... Selecting previously unselected package certbot. Preparing to unpack .../69-certbot_0.28.0-1~deb9u3_all.deb ... Unpacking certbot (0.28.0-1~deb9u3) ... Setting up libquadmath0:amd64 (6.3.0-18+deb9u1) ... Setting up libgomp1:amd64 (6.3.0-18+deb9u1) ... Setting up libatomic1:amd64 (6.3.0-18+deb9u1) ... Setting up libinotifytools0 (3.14-2) ... Setting up libestr0 (0.1.10-2) ... Setting up libcc1-0:amd64 (6.3.0-18+deb9u1) ... Setting up make (4.1-9.1) ... Setting up libasan3:amd64 (6.3.0-18+deb9u1) ... Setting up inotify-tools (3.14-2) ... Setting up python3-cffi-backend (1.9.1-2) ... Setting up libfastjson4:amd64 (0.99.4-1) ... Setting up libcilkrts5:amd64 (6.3.0-18+deb9u1) ... Setting up libubsan0:amd64 (6.3.0-18+deb9u1) ... Setting up libtsan0:amd64 (6.3.0-18+deb9u1) ... Setting up libssl-dev:amd64 (1.1.0l-1~deb9u2) ... Setting up python3-idna (2.2-1) ... Setting up liblogging-stdlog0:amd64 (1.0.5-2+b2) ... Setting up python3-six (1.10.0-3) ... Setting up linux-libc-dev:amd64 (4.9.246-2) ... Setting up libtinfo-dev:amd64 (6.0+20161126-1+deb9u2) ... Setting up python3-pkg-resources (33.1.1-1) ... Setting up liblognorm5:amd64 (2.0.1-1.1+b1) ... Setting up liblsan0:amd64 (6.3.0-18+deb9u1) ... Setting up python3-configargparse (0.11.0-1) ... Setting up python3-zope.hookable (4.0.4-4+b2) ... Setting up libmpx2:amd64 (6.3.0-18+deb9u1) ... Setting up libisl15:amd64 (0.18-1) ... Setting up python3-pyasn1 (0.1.9-2) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Setting up python3-chardet (2.3.0-2) ... Setting up libreadline-dev:amd64 (7.0-3) ... Setting up libmpfr4:amd64 (3.1.5-1) ... Setting up libpcrecpp0v5:amd64 (2:8.39-3) ... Setting up libpcre32-3:amd64 (2:8.39-3) ... Setting up python3-urllib3 (1.19.1-1) ... Setting up libmpc3:amd64 (1.0.3-1+b2) ... Setting up binutils (2.28-5) ... Setting up cpp-6 (6.3.0-18+deb9u1) ... Setting up libc-dev-bin (2.24-11+deb9u4) ... Setting up libpcre16-3:amd64 (2:8.39-3) ... Setting up python3-configobj (5.0.6-2) ... Setting up python3-setuptools (33.1.1-1) ... Setting up libc6-dev:amd64 (2.24-11+deb9u4) ... Setting up cron (3.0pl1-128+deb9u1) ... Adding group `crontab' (GID 101) ... Done. update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up python3-tz (2016.7-0.3) ... Setting up libitm1:amd64 (6.3.0-18+deb9u1) ... Setting up rsyslog (8.24.0-1) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up python3-parsedatetime (2.1-3+deb9u1) ... Setting up zlib1g-dev:amd64 (1:1.2.8.dfsg-5) ... Setting up python3-cryptography (1.7.1-3+deb9u2) ... Setting up cpp (4:6.3.0-4) ... Setting up python3-pbr (1.10.0-1) ... update-alternatives: using /usr/bin/python3-pbr to provide /usr/bin/pbr (pbr) in auto mode Setting up libpcre3-dev:amd64 (2:8.39-3) ... Setting up libgcc-6-dev:amd64 (6.3.0-18+deb9u1) ... Setting up python3-rfc3339 (1.0-4) ... Setting up libstdc++-6-dev:amd64 (6.3.0-18+deb9u1) ... Setting up python3-mock (2.0.0-3) ... Setting up python3-zope.event (4.2.0-1) ... Setting up python3-zope.interface (4.3.2-1) ... Setting up gcc-6 (6.3.0-18+deb9u1) ... Setting up g++-6 (6.3.0-18+deb9u1) ... Setting up python3-requests (2.12.4-1) ... Setting up python3-openssl (16.2.0-1) ... Setting up python3-josepy (1.1.0-2~deb9u1) ... Setting up python3-requests-toolbelt (0.7.0-1) ... Setting up python3-zope.component (4.3.0-1) ... Setting up gcc (4:6.3.0-4) ... Setting up g++ (4:6.3.0-4) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode Setting up python3-acme (0.28.0-1~deb9u2) ... Setting up python3-certbot (0.28.0-1~deb9u3) ... Setting up certbot (0.28.0-1~deb9u3) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Removing intermediate container 2073f80ac0ff ---> 67fe63c384ae Step 5/32 : ARG HA_PROXY_MINOR_VERSION=2.1 ---> Running in 861a0376aa18 Removing intermediate container 861a0376aa18 ---> a1f554c68b3c Step 6/32 : ARG HA_PROXY_VERSION=2.1.2 ---> Running in 74d221c9f392 Removing intermediate container 74d221c9f392 ---> 11e3085d7955 Step 7/32 : ARG LUA_VERSION=5.3.5 ---> Running in e815f0767432 Removing intermediate container e815f0767432 ---> 1f826d1b3bc4 Step 8/32 : ARG ACME_PLUGIN_VERSION=0.1.1 ---> Running in 946180e317e6 Removing intermediate container 946180e317e6 ---> b1d18c91e741 Step 9/32 : ARG DOMAINNAME ---> Running in f8f0c8671180 Removing intermediate container f8f0c8671180 ---> bb95bfe54106 Step 10/32 : ARG LOCAL_CERT_FILE ---> Running in 228cc1929f20 Removing intermediate container 228cc1929f20 ---> 1c20b7c13e31 Step 11/32 : ENV DOMAINNAME=${DOMAINNAME:-localhost} ---> Running in 664df67b4f58 Removing intermediate container 664df67b4f58 ---> 02658131cd22 Step 12/32 : ENV LOCAL_CERT_FILE=$LOCAL_CERT_FILE ---> Running in 151b3c4b6bd0 Removing intermediate container 151b3c4b6bd0 ---> 8f8cb0e9bc3c Step 13/32 : ENV TERM xterm ---> Running in 722df034c503 Removing intermediate container 722df034c503 ---> 4deed358e4a4 Step 14/32 : ENV PROXY_LOGLEVEL notice ---> Running in 2593012fb3f9 Removing intermediate container 2593012fb3f9 ---> eb25a17a0077 Step 15/32 : ENV PROXY_BACKEND_HOST=${PROXY_BACKEND_HOST:-manager} ---> Running in 2839aefffcea Removing intermediate container 2839aefffcea ---> e00c8c6b9d37 Step 16/32 : ENV PROXY_BACKEND_PORT=${PROXY_BACKEND_PORT:-8080} ---> Running in 52f909a3d765 Removing intermediate container 52f909a3d765 ---> 2eeebb6e3187 Step 17/32 : RUN mkdir /tmp/lua && cd /tmp/lua && curl -sSL https://www.lua.org/ftp/lua-${LUA_VERSION}.tar.gz -o lua.tar.gz && tar xfv lua.tar.gz --strip-components=1 && make linux && make install && cd /tmp && rm -r lua ---> Running in 86d1502ac560 lua-5.3.5/Makefile lua-5.3.5/doc/ lua-5.3.5/doc/luac.1 lua-5.3.5/doc/manual.html lua-5.3.5/doc/manual.css lua-5.3.5/doc/contents.html lua-5.3.5/doc/lua.css lua-5.3.5/doc/osi-certified-72x60.png lua-5.3.5/doc/logo.gif lua-5.3.5/doc/lua.1 lua-5.3.5/doc/index.css lua-5.3.5/doc/readme.html lua-5.3.5/src/ lua-5.3.5/src/ldblib.c lua-5.3.5/src/lmathlib.c lua-5.3.5/src/loslib.c lua-5.3.5/src/lvm.c lua-5.3.5/src/ldo.h lua-5.3.5/src/lua.h lua-5.3.5/src/lgc.h lua-5.3.5/src/ltm.h lua-5.3.5/src/loadlib.c lua-5.3.5/src/lmem.c lua-5.3.5/src/lstate.h lua-5.3.5/src/Makefile lua-5.3.5/src/lzio.h lua-5.3.5/src/luaconf.h lua-5.3.5/src/lopcodes.c lua-5.3.5/src/lua.c lua-5.3.5/src/lundump.h lua-5.3.5/src/lbaselib.c lua-5.3.5/src/ltable.c lua-5.3.5/src/ldump.c lua-5.3.5/src/liolib.c lua-5.3.5/src/llimits.h lua-5.3.5/src/lfunc.h lua-5.3.5/src/lualib.h lua-5.3.5/src/lzio.c lua-5.3.5/src/lctype.c lua-5.3.5/src/lmem.h lua-5.3.5/src/llex.h lua-5.3.5/src/ltable.h lua-5.3.5/src/lstring.c lua-5.3.5/src/ldebug.h lua-5.3.5/src/lbitlib.c lua-5.3.5/src/lprefix.h lua-5.3.5/src/llex.c lua-5.3.5/src/linit.c lua-5.3.5/src/lobject.h lua-5.3.5/src/lapi.h lua-5.3.5/src/ldebug.c lua-5.3.5/src/ldo.c lua-5.3.5/src/lvm.h lua-5.3.5/src/lauxlib.c lua-5.3.5/src/luac.c lua-5.3.5/src/lctype.h lua-5.3.5/src/lstring.h lua-5.3.5/src/lcorolib.c lua-5.3.5/src/lutf8lib.c lua-5.3.5/src/lgc.c lua-5.3.5/src/lstate.c lua-5.3.5/src/lundump.c lua-5.3.5/src/ltablib.c lua-5.3.5/src/lauxlib.h lua-5.3.5/src/ltm.c lua-5.3.5/src/lparser.c lua-5.3.5/src/lcode.h lua-5.3.5/src/lobject.c lua-5.3.5/src/lcode.c lua-5.3.5/src/lopcodes.h lua-5.3.5/src/lfunc.c lua-5.3.5/src/lapi.c lua-5.3.5/src/lparser.h lua-5.3.5/src/lua.hpp lua-5.3.5/src/lstrlib.c lua-5.3.5/README cd src && make linux make[1]: Entering directory '/tmp/lua/src' make all SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -ldl -lreadline" make[2]: Entering directory '/tmp/lua/src' gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lapi.o lapi.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lcode.o lcode.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lctype.o lctype.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o ldebug.o ldebug.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o ldo.o ldo.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o ldump.o ldump.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lfunc.o lfunc.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lgc.o lgc.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o llex.o llex.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lmem.o lmem.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lobject.o lobject.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lopcodes.o lopcodes.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lparser.o lparser.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lstate.o lstate.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lstring.o lstring.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o ltable.o ltable.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o ltm.o ltm.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lundump.o lundump.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lvm.o lvm.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lzio.o lzio.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lauxlib.o lauxlib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lbaselib.o lbaselib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lbitlib.o lbitlib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lcorolib.o lcorolib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o ldblib.o ldblib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o liolib.o liolib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lmathlib.o lmathlib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o loslib.o loslib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lstrlib.o lstrlib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o ltablib.o ltablib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lutf8lib.o lutf8lib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o loadlib.o loadlib.c gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o linit.o linit.c ar rcu liblua.a lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o lundump.o lvm.o lzio.o lauxlib.o lbaselib.o lbitlib.o lcorolib.o ldblib.o liolib.o lmathlib.o loslib.o lstrlib.o ltablib.o lutf8lib.o loadlib.o linit.o ar: `u' modifier ignored since `D' is the default (see `U') ranlib liblua.a gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o lua.o lua.c gcc -std=gnu99 -o lua lua.o liblua.a -lm -Wl,-E -ldl -lreadline gcc -std=gnu99 -O2 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_USE_LINUX -c -o luac.o luac.c gcc -std=gnu99 -o luac luac.o liblua.a -lm -Wl,-E -ldl -lreadline make[2]: Leaving directory '/tmp/lua/src' make[1]: Leaving directory '/tmp/lua/src' cd src && mkdir -p /usr/local/bin /usr/local/include /usr/local/lib /usr/local/man/man1 /usr/local/share/lua/5.3 /usr/local/lib/lua/5.3 cd src && install -p -m 0755 lua luac /usr/local/bin cd src && install -p -m 0644 lua.h luaconf.h lualib.h lauxlib.h lua.hpp /usr/local/include cd src && install -p -m 0644 liblua.a /usr/local/lib cd doc && install -p -m 0644 lua.1 luac.1 /usr/local/man/man1 Removing intermediate container 86d1502ac560 ---> 9b9198f1ca74 Step 18/32 : RUN mkdir /tmp/haproxy && cd /tmp/haproxy && curl -sSL http://www.haproxy.org/download/${HA_PROXY_MINOR_VERSION}/src/haproxy-${HA_PROXY_VERSION}.tar.gz -o haproxy.tar.gz && tar xfv haproxy.tar.gz --strip-components=1 && make -j $(nproc) TARGET=linux-glibc USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1 USE_LUA=1 && make install && cd /tmp && rm -r haproxy ---> Running in 6b1d7c201558 haproxy-2.1.2/.cirrus.yml haproxy-2.1.2/.github/ haproxy-2.1.2/.github/ISSUE_TEMPLATE/ haproxy-2.1.2/.github/ISSUE_TEMPLATE/Bug.md haproxy-2.1.2/.github/ISSUE_TEMPLATE/Feature.md haproxy-2.1.2/.github/ISSUE_TEMPLATE/Question.md haproxy-2.1.2/.github/ISSUE_TEMPLATE/config.yml haproxy-2.1.2/.gitignore haproxy-2.1.2/.travis.yml haproxy-2.1.2/BRANCHES haproxy-2.1.2/CHANGELOG haproxy-2.1.2/CONTRIBUTING haproxy-2.1.2/INSTALL haproxy-2.1.2/LICENSE haproxy-2.1.2/MAINTAINERS haproxy-2.1.2/Makefile haproxy-2.1.2/README haproxy-2.1.2/ROADMAP haproxy-2.1.2/SUBVERS haproxy-2.1.2/VERDATE haproxy-2.1.2/VERSION haproxy-2.1.2/contrib/ haproxy-2.1.2/contrib/51d/ haproxy-2.1.2/contrib/51d/src/ haproxy-2.1.2/contrib/51d/src/cityhash/ haproxy-2.1.2/contrib/51d/src/cityhash/city.c haproxy-2.1.2/contrib/51d/src/pattern/ haproxy-2.1.2/contrib/51d/src/pattern/51Degrees.c haproxy-2.1.2/contrib/51d/src/pattern/51Degrees.h haproxy-2.1.2/contrib/51d/src/threading.c haproxy-2.1.2/contrib/51d/src/trie/ haproxy-2.1.2/contrib/51d/src/trie/51Degrees.c haproxy-2.1.2/contrib/51d/src/trie/51Degrees.h haproxy-2.1.2/contrib/base64/ haproxy-2.1.2/contrib/base64/base64rev-gen.c haproxy-2.1.2/contrib/debug/ haproxy-2.1.2/contrib/debug/Makefile haproxy-2.1.2/contrib/debug/flags.c haproxy-2.1.2/contrib/debug/poll.c haproxy-2.1.2/contrib/deviceatlas/ haproxy-2.1.2/contrib/deviceatlas/Makefile haproxy-2.1.2/contrib/deviceatlas/dac.c haproxy-2.1.2/contrib/deviceatlas/dac.h haproxy-2.1.2/contrib/deviceatlas/json.c haproxy-2.1.2/contrib/halog/ haproxy-2.1.2/contrib/halog/Makefile haproxy-2.1.2/contrib/halog/fgets2.c haproxy-2.1.2/contrib/halog/halog.c haproxy-2.1.2/contrib/hpack/ haproxy-2.1.2/contrib/hpack/Makefile haproxy-2.1.2/contrib/hpack/decode.c haproxy-2.1.2/contrib/hpack/gen-enc.c haproxy-2.1.2/contrib/hpack/gen-rht.c haproxy-2.1.2/contrib/ip6range/ haproxy-2.1.2/contrib/ip6range/Makefile haproxy-2.1.2/contrib/ip6range/ip6range.c haproxy-2.1.2/contrib/iprange/ haproxy-2.1.2/contrib/iprange/Makefile haproxy-2.1.2/contrib/iprange/iprange.c haproxy-2.1.2/contrib/mod_defender/ haproxy-2.1.2/contrib/mod_defender/Makefile haproxy-2.1.2/contrib/mod_defender/README haproxy-2.1.2/contrib/mod_defender/defender.c haproxy-2.1.2/contrib/mod_defender/defender.h haproxy-2.1.2/contrib/mod_defender/spoa.c haproxy-2.1.2/contrib/mod_defender/spoa.h haproxy-2.1.2/contrib/mod_defender/standalone.c haproxy-2.1.2/contrib/mod_defender/standalone.h haproxy-2.1.2/contrib/modsecurity/ haproxy-2.1.2/contrib/modsecurity/Makefile haproxy-2.1.2/contrib/modsecurity/README haproxy-2.1.2/contrib/modsecurity/modsec_wrapper.c haproxy-2.1.2/contrib/modsecurity/modsec_wrapper.h haproxy-2.1.2/contrib/modsecurity/spoa.c haproxy-2.1.2/contrib/modsecurity/spoa.h haproxy-2.1.2/contrib/netsnmp-perl/ haproxy-2.1.2/contrib/netsnmp-perl/README haproxy-2.1.2/contrib/netsnmp-perl/cacti_data_query_haproxy_backends.xml haproxy-2.1.2/contrib/netsnmp-perl/cacti_data_query_haproxy_frontends.xml haproxy-2.1.2/contrib/netsnmp-perl/haproxy.pl haproxy-2.1.2/contrib/netsnmp-perl/haproxy_backend.xml haproxy-2.1.2/contrib/netsnmp-perl/haproxy_frontend.xml haproxy-2.1.2/contrib/netsnmp-perl/haproxy_socket.xml haproxy-2.1.2/contrib/plug_qdisc/ haproxy-2.1.2/contrib/plug_qdisc/README haproxy-2.1.2/contrib/plug_qdisc/plug_qdisc.c haproxy-2.1.2/contrib/prometheus-exporter/ haproxy-2.1.2/contrib/prometheus-exporter/README haproxy-2.1.2/contrib/prometheus-exporter/service-prometheus.c haproxy-2.1.2/contrib/selinux/ haproxy-2.1.2/contrib/selinux/README haproxy-2.1.2/contrib/selinux/haproxy.fc haproxy-2.1.2/contrib/selinux/haproxy.if haproxy-2.1.2/contrib/selinux/haproxy.te haproxy-2.1.2/contrib/spoa_example/ haproxy-2.1.2/contrib/spoa_example/Makefile haproxy-2.1.2/contrib/spoa_example/README haproxy-2.1.2/contrib/spoa_example/include/ haproxy-2.1.2/contrib/spoa_example/include/mini-clist.h haproxy-2.1.2/contrib/spoa_example/include/spoe_types.h haproxy-2.1.2/contrib/spoa_example/include/spop_functions.h haproxy-2.1.2/contrib/spoa_example/spoa.c haproxy-2.1.2/contrib/spoa_server/ haproxy-2.1.2/contrib/spoa_server/Makefile haproxy-2.1.2/contrib/spoa_server/README haproxy-2.1.2/contrib/spoa_server/print_r.lua haproxy-2.1.2/contrib/spoa_server/ps_lua.c haproxy-2.1.2/contrib/spoa_server/ps_lua.lua haproxy-2.1.2/contrib/spoa_server/ps_python.c haproxy-2.1.2/contrib/spoa_server/ps_python.py haproxy-2.1.2/contrib/spoa_server/spoa-server.conf haproxy-2.1.2/contrib/spoa_server/spoa-server.spoe.conf haproxy-2.1.2/contrib/spoa_server/spoa.c haproxy-2.1.2/contrib/spoa_server/spoa.h haproxy-2.1.2/contrib/syntax-highlight/ haproxy-2.1.2/contrib/syntax-highlight/haproxy.vim haproxy-2.1.2/contrib/systemd/ haproxy-2.1.2/contrib/systemd/Makefile haproxy-2.1.2/contrib/systemd/haproxy.service.in haproxy-2.1.2/contrib/tcploop/ haproxy-2.1.2/contrib/tcploop/Makefile haproxy-2.1.2/contrib/tcploop/tcploop.c haproxy-2.1.2/contrib/trace/ haproxy-2.1.2/contrib/trace/trace.awk haproxy-2.1.2/contrib/wireshark-dissectors/ haproxy-2.1.2/contrib/wireshark-dissectors/peers/ haproxy-2.1.2/contrib/wireshark-dissectors/peers/README haproxy-2.1.2/contrib/wireshark-dissectors/peers/packet-happp.c haproxy-2.1.2/contrib/wireshark-dissectors/peers/wireshark.happp.dissector.patch haproxy-2.1.2/contrib/wurfl/ haproxy-2.1.2/contrib/wurfl/Makefile haproxy-2.1.2/contrib/wurfl/dummy-wurfl.c haproxy-2.1.2/contrib/wurfl/wurfl/ haproxy-2.1.2/contrib/wurfl/wurfl/wurfl.h haproxy-2.1.2/doc/ haproxy-2.1.2/doc/51Degrees-device-detection.txt haproxy-2.1.2/doc/DeviceAtlas-device-detection.txt haproxy-2.1.2/doc/SOCKS4.protocol.txt haproxy-2.1.2/doc/SPOE.txt haproxy-2.1.2/doc/WURFL-device-detection.txt haproxy-2.1.2/doc/acl.fig haproxy-2.1.2/doc/architecture.txt haproxy-2.1.2/doc/close-options.txt haproxy-2.1.2/doc/coding-style.txt haproxy-2.1.2/doc/configuration.txt haproxy-2.1.2/doc/cookie-options.txt haproxy-2.1.2/doc/design-thoughts/ haproxy-2.1.2/doc/design-thoughts/backends-v0.txt haproxy-2.1.2/doc/design-thoughts/backends.txt haproxy-2.1.2/doc/design-thoughts/be-fe-changes.txt haproxy-2.1.2/doc/design-thoughts/binding-possibilities.txt haproxy-2.1.2/doc/design-thoughts/config-language.txt haproxy-2.1.2/doc/design-thoughts/connection-reuse.txt haproxy-2.1.2/doc/design-thoughts/connection-sharing.txt haproxy-2.1.2/doc/design-thoughts/dynamic-buffers.txt haproxy-2.1.2/doc/design-thoughts/entities-v2.txt haproxy-2.1.2/doc/design-thoughts/how-it-works.txt haproxy-2.1.2/doc/design-thoughts/http2.txt haproxy-2.1.2/doc/design-thoughts/http_load_time.url haproxy-2.1.2/doc/design-thoughts/rate-shaping.txt haproxy-2.1.2/doc/design-thoughts/sess_par_sec.txt haproxy-2.1.2/doc/gpl.txt haproxy-2.1.2/doc/haproxy.1 haproxy-2.1.2/doc/internals/ haproxy-2.1.2/doc/internals/acl.txt haproxy-2.1.2/doc/internals/body-parsing.txt haproxy-2.1.2/doc/internals/buffer-api.txt haproxy-2.1.2/doc/internals/connect-status.txt haproxy-2.1.2/doc/internals/connection-header.txt haproxy-2.1.2/doc/internals/connection-scale.txt haproxy-2.1.2/doc/internals/entities-v2.txt haproxy-2.1.2/doc/internals/entities.fig haproxy-2.1.2/doc/internals/entities.pdf haproxy-2.1.2/doc/internals/entities.svg haproxy-2.1.2/doc/internals/entities.txt haproxy-2.1.2/doc/internals/filters.txt haproxy-2.1.2/doc/internals/hashing.txt haproxy-2.1.2/doc/internals/header-parser-speed.txt haproxy-2.1.2/doc/internals/header-tree.txt haproxy-2.1.2/doc/internals/http-cookies.txt haproxy-2.1.2/doc/internals/http-docs.txt haproxy-2.1.2/doc/internals/http-parsing.txt haproxy-2.1.2/doc/internals/htx-api.txt haproxy-2.1.2/doc/internals/initcalls.txt haproxy-2.1.2/doc/internals/list.fig haproxy-2.1.2/doc/internals/listener-states.fig haproxy-2.1.2/doc/internals/listener-states.png haproxy-2.1.2/doc/internals/lua_socket.fig haproxy-2.1.2/doc/internals/lua_socket.pdf haproxy-2.1.2/doc/internals/naming.txt haproxy-2.1.2/doc/internals/notes-layers.txt haproxy-2.1.2/doc/internals/pattern.dia haproxy-2.1.2/doc/internals/pattern.pdf haproxy-2.1.2/doc/internals/polling-states.fig haproxy-2.1.2/doc/internals/repartition-be-fe-fi.txt haproxy-2.1.2/doc/internals/sequence.fig haproxy-2.1.2/doc/internals/stats-v2.txt haproxy-2.1.2/doc/internals/stream-sock-states.fig haproxy-2.1.2/doc/intro.txt haproxy-2.1.2/doc/lgpl.txt haproxy-2.1.2/doc/linux-syn-cookies.txt haproxy-2.1.2/doc/lua-api/ haproxy-2.1.2/doc/lua-api/Makefile haproxy-2.1.2/doc/lua-api/_static/ haproxy-2.1.2/doc/lua-api/_static/channel.fig haproxy-2.1.2/doc/lua-api/_static/channel.png haproxy-2.1.2/doc/lua-api/conf.py haproxy-2.1.2/doc/lua-api/index.rst haproxy-2.1.2/doc/lua.txt haproxy-2.1.2/doc/management.txt haproxy-2.1.2/doc/netscaler-client-ip-insertion-protocol.txt haproxy-2.1.2/doc/network-namespaces.txt haproxy-2.1.2/doc/peers-v2.0.txt haproxy-2.1.2/doc/peers.txt haproxy-2.1.2/doc/proxy-protocol.txt haproxy-2.1.2/doc/queuing.fig haproxy-2.1.2/doc/regression-testing.txt haproxy-2.1.2/doc/seamless_reload.txt haproxy-2.1.2/ebtree/ haproxy-2.1.2/ebtree/LICENSE haproxy-2.1.2/ebtree/compiler.h haproxy-2.1.2/ebtree/eb32sctree.c haproxy-2.1.2/ebtree/eb32sctree.h haproxy-2.1.2/ebtree/eb32tree.c haproxy-2.1.2/ebtree/eb32tree.h haproxy-2.1.2/ebtree/eb64tree.c haproxy-2.1.2/ebtree/eb64tree.h haproxy-2.1.2/ebtree/ebimtree.c haproxy-2.1.2/ebtree/ebimtree.h haproxy-2.1.2/ebtree/ebistree.c haproxy-2.1.2/ebtree/ebistree.h haproxy-2.1.2/ebtree/ebmbtree.c haproxy-2.1.2/ebtree/ebmbtree.h haproxy-2.1.2/ebtree/ebpttree.c haproxy-2.1.2/ebtree/ebpttree.h haproxy-2.1.2/ebtree/ebsttree.c haproxy-2.1.2/ebtree/ebsttree.h haproxy-2.1.2/ebtree/ebtree.c haproxy-2.1.2/ebtree/ebtree.h haproxy-2.1.2/examples/ haproxy-2.1.2/examples/acl-content-sw.cfg haproxy-2.1.2/examples/content-sw-sample.cfg haproxy-2.1.2/examples/errorfiles/ haproxy-2.1.2/examples/errorfiles/400.http haproxy-2.1.2/examples/errorfiles/403.http haproxy-2.1.2/examples/errorfiles/408.http haproxy-2.1.2/examples/errorfiles/500.http haproxy-2.1.2/examples/errorfiles/502.http haproxy-2.1.2/examples/errorfiles/503.http haproxy-2.1.2/examples/errorfiles/504.http haproxy-2.1.2/examples/errorfiles/README haproxy-2.1.2/examples/haproxy.init haproxy-2.1.2/examples/option-http_proxy.cfg haproxy-2.1.2/examples/socks4.cfg haproxy-2.1.2/examples/transparent_proxy.cfg haproxy-2.1.2/examples/wurfl-example.cfg haproxy-2.1.2/include/ haproxy-2.1.2/include/common/ haproxy-2.1.2/include/common/accept4.h haproxy-2.1.2/include/common/base64.h haproxy-2.1.2/include/common/buf.h haproxy-2.1.2/include/common/buffer.h haproxy-2.1.2/include/common/cfgparse.h haproxy-2.1.2/include/common/chunk.h haproxy-2.1.2/include/common/compat.h haproxy-2.1.2/include/common/compiler.h haproxy-2.1.2/include/common/config.h haproxy-2.1.2/include/common/debug.h haproxy-2.1.2/include/common/defaults.h haproxy-2.1.2/include/common/epoll.h haproxy-2.1.2/include/common/errors.h haproxy-2.1.2/include/common/fcgi.h haproxy-2.1.2/include/common/h1.h haproxy-2.1.2/include/common/h2.h haproxy-2.1.2/include/common/hash.h haproxy-2.1.2/include/common/hathreads.h haproxy-2.1.2/include/common/hpack-dec.h haproxy-2.1.2/include/common/hpack-enc.h haproxy-2.1.2/include/common/hpack-huff.h haproxy-2.1.2/include/common/hpack-tbl.h haproxy-2.1.2/include/common/http-hdr.h haproxy-2.1.2/include/common/http.h haproxy-2.1.2/include/common/htx.h haproxy-2.1.2/include/common/initcall.h haproxy-2.1.2/include/common/ist.h haproxy-2.1.2/include/common/istbuf.h haproxy-2.1.2/include/common/memory.h haproxy-2.1.2/include/common/mini-clist.h haproxy-2.1.2/include/common/namespace.h haproxy-2.1.2/include/common/net_helper.h haproxy-2.1.2/include/common/openssl-compat.h haproxy-2.1.2/include/common/regex.h haproxy-2.1.2/include/common/splice.h haproxy-2.1.2/include/common/standard.h haproxy-2.1.2/include/common/syscall.h haproxy-2.1.2/include/common/template.h haproxy-2.1.2/include/common/ticks.h haproxy-2.1.2/include/common/time.h haproxy-2.1.2/include/common/tools.h haproxy-2.1.2/include/common/uri_auth.h haproxy-2.1.2/include/common/version.h haproxy-2.1.2/include/common/xref.h haproxy-2.1.2/include/import/ haproxy-2.1.2/include/import/atomic-ops.h haproxy-2.1.2/include/import/lru.h haproxy-2.1.2/include/import/plock.h haproxy-2.1.2/include/import/sha1.h haproxy-2.1.2/include/import/xxhash.h haproxy-2.1.2/include/proto/ haproxy-2.1.2/include/proto/acl.h haproxy-2.1.2/include/proto/action.h haproxy-2.1.2/include/proto/activity.h haproxy-2.1.2/include/proto/applet.h haproxy-2.1.2/include/proto/arg.h haproxy-2.1.2/include/proto/auth.h haproxy-2.1.2/include/proto/backend.h haproxy-2.1.2/include/proto/channel.h haproxy-2.1.2/include/proto/checks.h haproxy-2.1.2/include/proto/cli.h haproxy-2.1.2/include/proto/compression.h haproxy-2.1.2/include/proto/connection.h haproxy-2.1.2/include/proto/dict.h haproxy-2.1.2/include/proto/dns.h haproxy-2.1.2/include/proto/fcgi-app.h haproxy-2.1.2/include/proto/fd.h haproxy-2.1.2/include/proto/filters.h haproxy-2.1.2/include/proto/flt_http_comp.h haproxy-2.1.2/include/proto/freq_ctr.h haproxy-2.1.2/include/proto/frontend.h haproxy-2.1.2/include/proto/h1_htx.h haproxy-2.1.2/include/proto/hlua.h haproxy-2.1.2/include/proto/hlua_fcn.h haproxy-2.1.2/include/proto/http_ana.h haproxy-2.1.2/include/proto/http_fetch.h haproxy-2.1.2/include/proto/http_htx.h haproxy-2.1.2/include/proto/http_rules.h haproxy-2.1.2/include/proto/lb_chash.h haproxy-2.1.2/include/proto/lb_fas.h haproxy-2.1.2/include/proto/lb_fwlc.h haproxy-2.1.2/include/proto/lb_fwrr.h haproxy-2.1.2/include/proto/lb_map.h haproxy-2.1.2/include/proto/listener.h haproxy-2.1.2/include/proto/log.h haproxy-2.1.2/include/proto/map.h haproxy-2.1.2/include/proto/mux_pt.h haproxy-2.1.2/include/proto/mworker.h haproxy-2.1.2/include/proto/obj_type.h haproxy-2.1.2/include/proto/pattern.h haproxy-2.1.2/include/proto/payload.h haproxy-2.1.2/include/proto/peers.h haproxy-2.1.2/include/proto/pipe.h haproxy-2.1.2/include/proto/port_range.h haproxy-2.1.2/include/proto/proto_sockpair.h haproxy-2.1.2/include/proto/proto_tcp.h haproxy-2.1.2/include/proto/proto_udp.h haproxy-2.1.2/include/proto/protocol.h haproxy-2.1.2/include/proto/protocol_buffers.h haproxy-2.1.2/include/proto/proxy.h haproxy-2.1.2/include/proto/queue.h haproxy-2.1.2/include/proto/raw_sock.h haproxy-2.1.2/include/proto/ring.h haproxy-2.1.2/include/proto/sample.h haproxy-2.1.2/include/proto/server.h haproxy-2.1.2/include/proto/session.h haproxy-2.1.2/include/proto/shctx.h haproxy-2.1.2/include/proto/signal.h haproxy-2.1.2/include/proto/sink.h haproxy-2.1.2/include/proto/spoe.h haproxy-2.1.2/include/proto/ssl_sock.h haproxy-2.1.2/include/proto/stats.h haproxy-2.1.2/include/proto/stick_table.h haproxy-2.1.2/include/proto/stream.h haproxy-2.1.2/include/proto/stream_interface.h haproxy-2.1.2/include/proto/task.h haproxy-2.1.2/include/proto/tcp_rules.h haproxy-2.1.2/include/proto/template.h haproxy-2.1.2/include/proto/trace.h haproxy-2.1.2/include/proto/vars.h haproxy-2.1.2/include/types/ haproxy-2.1.2/include/types/acl.h haproxy-2.1.2/include/types/action.h haproxy-2.1.2/include/types/activity.h haproxy-2.1.2/include/types/applet.h haproxy-2.1.2/include/types/arg.h haproxy-2.1.2/include/types/auth.h haproxy-2.1.2/include/types/backend.h haproxy-2.1.2/include/types/capture.h haproxy-2.1.2/include/types/channel.h haproxy-2.1.2/include/types/checks.h haproxy-2.1.2/include/types/cli.h haproxy-2.1.2/include/types/compression.h haproxy-2.1.2/include/types/connection.h haproxy-2.1.2/include/types/counters.h haproxy-2.1.2/include/types/dict.h haproxy-2.1.2/include/types/dns.h haproxy-2.1.2/include/types/fcgi-app.h haproxy-2.1.2/include/types/fd.h haproxy-2.1.2/include/types/filters.h haproxy-2.1.2/include/types/freq_ctr.h haproxy-2.1.2/include/types/global.h haproxy-2.1.2/include/types/hlua.h haproxy-2.1.2/include/types/http_ana.h haproxy-2.1.2/include/types/http_htx.h haproxy-2.1.2/include/types/lb_chash.h haproxy-2.1.2/include/types/lb_fas.h haproxy-2.1.2/include/types/lb_fwlc.h haproxy-2.1.2/include/types/lb_fwrr.h haproxy-2.1.2/include/types/lb_map.h haproxy-2.1.2/include/types/listener.h haproxy-2.1.2/include/types/log.h haproxy-2.1.2/include/types/mailers.h haproxy-2.1.2/include/types/map.h haproxy-2.1.2/include/types/obj_type.h haproxy-2.1.2/include/types/pattern.h haproxy-2.1.2/include/types/peers.h haproxy-2.1.2/include/types/pipe.h haproxy-2.1.2/include/types/port_range.h haproxy-2.1.2/include/types/proto_udp.h haproxy-2.1.2/include/types/protocol.h haproxy-2.1.2/include/types/protocol_buffers.h haproxy-2.1.2/include/types/proxy.h haproxy-2.1.2/include/types/queue.h haproxy-2.1.2/include/types/ring.h haproxy-2.1.2/include/types/sample.h haproxy-2.1.2/include/types/server.h haproxy-2.1.2/include/types/session.h haproxy-2.1.2/include/types/shctx.h haproxy-2.1.2/include/types/signal.h haproxy-2.1.2/include/types/sink.h haproxy-2.1.2/include/types/spoe.h haproxy-2.1.2/include/types/ssl_sock.h haproxy-2.1.2/include/types/stats.h haproxy-2.1.2/include/types/stick_table.h haproxy-2.1.2/include/types/stream.h haproxy-2.1.2/include/types/stream_interface.h haproxy-2.1.2/include/types/task.h haproxy-2.1.2/include/types/template.h haproxy-2.1.2/include/types/trace.h haproxy-2.1.2/include/types/vars.h haproxy-2.1.2/reg-tests/ haproxy-2.1.2/reg-tests/README haproxy-2.1.2/reg-tests/cache/ haproxy-2.1.2/reg-tests/cache/basic.vtc haproxy-2.1.2/reg-tests/checks/ haproxy-2.1.2/reg-tests/checks/1be_40srv_odd_health_checks.vtc haproxy-2.1.2/reg-tests/checks/40be_2srv_odd_health_checks.vtc haproxy-2.1.2/reg-tests/checks/4be_1srv_health_checks.vtc haproxy-2.1.2/reg-tests/checks/4be_1srv_smtpchk_httpchk_layer47errors.vtc haproxy-2.1.2/reg-tests/checks/common.pem haproxy-2.1.2/reg-tests/checks/tcp-check_multiple_ports.vtc haproxy-2.1.2/reg-tests/checks/tls_health_checks.vtc haproxy-2.1.2/reg-tests/compression/ haproxy-2.1.2/reg-tests/compression/basic.vtc haproxy-2.1.2/reg-tests/compression/common.pem haproxy-2.1.2/reg-tests/compression/etags_conversion.vtc haproxy-2.1.2/reg-tests/compression/lua_validation.lua haproxy-2.1.2/reg-tests/compression/lua_validation.vtc haproxy-2.1.2/reg-tests/compression/vary.vtc haproxy-2.1.2/reg-tests/connection/ haproxy-2.1.2/reg-tests/connection/common.pem haproxy-2.1.2/reg-tests/connection/dispatch.vtc haproxy-2.1.2/reg-tests/connection/proxy_protocol_random_fail.vtc haproxy-2.1.2/reg-tests/converter/ haproxy-2.1.2/reg-tests/converter/field.vtc haproxy-2.1.2/reg-tests/converter/sha2.vtc haproxy-2.1.2/reg-tests/http-capture/ haproxy-2.1.2/reg-tests/http-capture/multiple_headers.vtc haproxy-2.1.2/reg-tests/http-cookies/ haproxy-2.1.2/reg-tests/http-cookies/cookie_insert_indirect.vtc haproxy-2.1.2/reg-tests/http-messaging/ haproxy-2.1.2/reg-tests/http-messaging/h1_to_h1.vtc haproxy-2.1.2/reg-tests/http-messaging/h2_to_h1.vtc haproxy-2.1.2/reg-tests/http-messaging/http_request_buffer.vtc haproxy-2.1.2/reg-tests/http-rules/ haproxy-2.1.2/reg-tests/http-rules/converters_ipmask_concat_strcmp_field_word.map haproxy-2.1.2/reg-tests/http-rules/converters_ipmask_concat_strcmp_field_word.vtc haproxy-2.1.2/reg-tests/http-rules/h1_to_h1c.vtc haproxy-2.1.2/reg-tests/http-rules/h1or2_to_h1c.vtc haproxy-2.1.2/reg-tests/http-rules/map_redirect-be.map haproxy-2.1.2/reg-tests/http-rules/map_redirect.map haproxy-2.1.2/reg-tests/http-rules/map_redirect.vtc haproxy-2.1.2/reg-tests/http-rules/map_regm_with_backref.map haproxy-2.1.2/reg-tests/http-rules/map_regm_with_backref.vtc haproxy-2.1.2/reg-tests/log/ haproxy-2.1.2/reg-tests/log/load_balancing.vtc haproxy-2.1.2/reg-tests/log/wrong_ip_port_logging.vtc haproxy-2.1.2/reg-tests/lua/ haproxy-2.1.2/reg-tests/lua/bad_http_clt_req_duration.lua haproxy-2.1.2/reg-tests/lua/bad_http_clt_req_duration.vtc haproxy-2.1.2/reg-tests/lua/close_wait_lf.lua haproxy-2.1.2/reg-tests/lua/close_wait_lf.vtc haproxy-2.1.2/reg-tests/lua/common.pem haproxy-2.1.2/reg-tests/lua/h_txn_get_priv.lua haproxy-2.1.2/reg-tests/lua/h_txn_get_priv.vtc haproxy-2.1.2/reg-tests/lua/lua_socket.lua haproxy-2.1.2/reg-tests/lua/lua_socket.vtc haproxy-2.1.2/reg-tests/lua/txn_get_priv-print_r.lua haproxy-2.1.2/reg-tests/lua/txn_get_priv.lua haproxy-2.1.2/reg-tests/lua/txn_get_priv.vtc haproxy-2.1.2/reg-tests/lua/wrong_types_usage.lua haproxy-2.1.2/reg-tests/lua/wrong_types_usage.vtc haproxy-2.1.2/reg-tests/mailers/ haproxy-2.1.2/reg-tests/mailers/healthcheckmail.lua haproxy-2.1.2/reg-tests/mailers/healthcheckmail.vtc haproxy-2.1.2/reg-tests/mcli/ haproxy-2.1.2/reg-tests/mcli/mcli_show_info.vtc haproxy-2.1.2/reg-tests/peers/ haproxy-2.1.2/reg-tests/peers/basic_sync.vtc haproxy-2.1.2/reg-tests/peers/basic_sync_wo_stkt_backend.vtc haproxy-2.1.2/reg-tests/peers/common.pem haproxy-2.1.2/reg-tests/peers/tls_basic_sync.vtc haproxy-2.1.2/reg-tests/peers/tls_basic_sync_wo_stkt_backend.vtc haproxy-2.1.2/reg-tests/sample_fetches/ haproxy-2.1.2/reg-tests/sample_fetches/srv_name.vtc haproxy-2.1.2/reg-tests/seamless-reload/ haproxy-2.1.2/reg-tests/seamless-reload/abns_socket.vtc haproxy-2.1.2/reg-tests/server/ haproxy-2.1.2/reg-tests/server/cli_set_fdqn.vtc haproxy-2.1.2/reg-tests/spoe/ haproxy-2.1.2/reg-tests/spoe/wrong_init.vtc haproxy-2.1.2/reg-tests/ssl/ haproxy-2.1.2/reg-tests/ssl/README haproxy-2.1.2/reg-tests/ssl/common.pem haproxy-2.1.2/reg-tests/ssl/wrong_ctx_storage.vtc haproxy-2.1.2/reg-tests/stick-table/ haproxy-2.1.2/reg-tests/stick-table/converteers_ref_cnt_never_dec.vtc haproxy-2.1.2/reg-tests/stick-table/unknown_key.vtc haproxy-2.1.2/reg-tests/stickiness/ haproxy-2.1.2/reg-tests/stickiness/lb-services.vtc haproxy-2.1.2/reg-tests/webstats/ haproxy-2.1.2/reg-tests/webstats/webstats-scope-and-post-change.vtc haproxy-2.1.2/scripts/ haproxy-2.1.2/scripts/announce-release haproxy-2.1.2/scripts/build-ssl.sh haproxy-2.1.2/scripts/create-release haproxy-2.1.2/scripts/git-show-backports haproxy-2.1.2/scripts/publish-release haproxy-2.1.2/scripts/run-regtests.sh haproxy-2.1.2/src/ haproxy-2.1.2/src/51d.c haproxy-2.1.2/src/acl.c haproxy-2.1.2/src/action.c haproxy-2.1.2/src/activity.c haproxy-2.1.2/src/applet.c haproxy-2.1.2/src/arg.c haproxy-2.1.2/src/auth.c haproxy-2.1.2/src/backend.c haproxy-2.1.2/src/base64.c haproxy-2.1.2/src/buffer.c haproxy-2.1.2/src/cache.c haproxy-2.1.2/src/calltrace.c haproxy-2.1.2/src/cfgparse-global.c haproxy-2.1.2/src/cfgparse-listen.c haproxy-2.1.2/src/cfgparse.c haproxy-2.1.2/src/channel.c haproxy-2.1.2/src/checks.c haproxy-2.1.2/src/chunk.c haproxy-2.1.2/src/cli.c haproxy-2.1.2/src/compression.c haproxy-2.1.2/src/connection.c haproxy-2.1.2/src/da.c haproxy-2.1.2/src/debug.c haproxy-2.1.2/src/dict.c haproxy-2.1.2/src/dns.c haproxy-2.1.2/src/ev_epoll.c haproxy-2.1.2/src/ev_evports.c haproxy-2.1.2/src/ev_kqueue.c haproxy-2.1.2/src/ev_poll.c haproxy-2.1.2/src/ev_select.c haproxy-2.1.2/src/fcgi-app.c haproxy-2.1.2/src/fcgi.c haproxy-2.1.2/src/fd.c haproxy-2.1.2/src/filters.c haproxy-2.1.2/src/flt_http_comp.c haproxy-2.1.2/src/flt_spoe.c haproxy-2.1.2/src/flt_trace.c haproxy-2.1.2/src/freq_ctr.c haproxy-2.1.2/src/frontend.c haproxy-2.1.2/src/h1.c haproxy-2.1.2/src/h1_htx.c haproxy-2.1.2/src/h2.c haproxy-2.1.2/src/haproxy.c haproxy-2.1.2/src/hash.c haproxy-2.1.2/src/hathreads.c haproxy-2.1.2/src/hlua.c haproxy-2.1.2/src/hlua_fcn.c haproxy-2.1.2/src/hpack-dec.c haproxy-2.1.2/src/hpack-enc.c haproxy-2.1.2/src/hpack-huff.c haproxy-2.1.2/src/hpack-tbl.c haproxy-2.1.2/src/http.c haproxy-2.1.2/src/http_acl.c haproxy-2.1.2/src/http_act.c haproxy-2.1.2/src/http_ana.c haproxy-2.1.2/src/http_conv.c haproxy-2.1.2/src/http_fetch.c haproxy-2.1.2/src/http_htx.c haproxy-2.1.2/src/http_rules.c haproxy-2.1.2/src/htx.c haproxy-2.1.2/src/i386-linux-vsys.c haproxy-2.1.2/src/lb_chash.c haproxy-2.1.2/src/lb_fas.c haproxy-2.1.2/src/lb_fwlc.c haproxy-2.1.2/src/lb_fwrr.c haproxy-2.1.2/src/lb_map.c haproxy-2.1.2/src/listener.c haproxy-2.1.2/src/log.c haproxy-2.1.2/src/lru.c haproxy-2.1.2/src/mailers.c haproxy-2.1.2/src/map.c haproxy-2.1.2/src/memory.c haproxy-2.1.2/src/mux_fcgi.c haproxy-2.1.2/src/mux_h1.c haproxy-2.1.2/src/mux_h2.c haproxy-2.1.2/src/mux_pt.c haproxy-2.1.2/src/mworker-prog.c haproxy-2.1.2/src/mworker.c haproxy-2.1.2/src/namespace.c haproxy-2.1.2/src/pattern.c haproxy-2.1.2/src/payload.c haproxy-2.1.2/src/peers.c haproxy-2.1.2/src/pipe.c haproxy-2.1.2/src/proto_sockpair.c haproxy-2.1.2/src/proto_tcp.c haproxy-2.1.2/src/proto_udp.c haproxy-2.1.2/src/proto_uxst.c haproxy-2.1.2/src/protocol.c haproxy-2.1.2/src/proxy.c haproxy-2.1.2/src/queue.c haproxy-2.1.2/src/raw_sock.c haproxy-2.1.2/src/regex.c haproxy-2.1.2/src/ring.c haproxy-2.1.2/src/sample.c haproxy-2.1.2/src/server.c haproxy-2.1.2/src/session.c haproxy-2.1.2/src/sha1.c haproxy-2.1.2/src/shctx.c haproxy-2.1.2/src/signal.c haproxy-2.1.2/src/sink.c haproxy-2.1.2/src/ssl_sock.c haproxy-2.1.2/src/standard.c haproxy-2.1.2/src/stats.c haproxy-2.1.2/src/stick_table.c haproxy-2.1.2/src/stream.c haproxy-2.1.2/src/stream_interface.c haproxy-2.1.2/src/task.c haproxy-2.1.2/src/tcp_rules.c haproxy-2.1.2/src/time.c haproxy-2.1.2/src/trace.c haproxy-2.1.2/src/uri_auth.c haproxy-2.1.2/src/vars.c haproxy-2.1.2/src/version.c haproxy-2.1.2/src/wdt.c haproxy-2.1.2/src/wurfl.c haproxy-2.1.2/src/xprt_handshake.c haproxy-2.1.2/src/xxhash.c haproxy-2.1.2/tests/ haproxy-2.1.2/tests/0000-debug-stats.diff haproxy-2.1.2/tests/blocksig.c haproxy-2.1.2/tests/ext-check.cfg haproxy-2.1.2/tests/filltab25.c haproxy-2.1.2/tests/hash_results.txt haproxy-2.1.2/tests/hashing-results.txt haproxy-2.1.2/tests/io_limits.txt haproxy-2.1.2/tests/ip-hash.c haproxy-2.1.2/tests/ist.c haproxy-2.1.2/tests/reset.c haproxy-2.1.2/tests/sockstat.txt haproxy-2.1.2/tests/tcp-check.cfg haproxy-2.1.2/tests/test-acl-args.cfg haproxy-2.1.2/tests/test-address-syntax.cfg haproxy-2.1.2/tests/test-arg.c haproxy-2.1.2/tests/test-backlog.cfg haproxy-2.1.2/tests/test-check-expect.cfg haproxy-2.1.2/tests/test-connection.cfg haproxy-2.1.2/tests/test-cookie-indirect.cfg haproxy-2.1.2/tests/test-cookie-insert.cfg haproxy-2.1.2/tests/test-cookie-passive.cfg haproxy-2.1.2/tests/test-cookie-prefix.cfg haproxy-2.1.2/tests/test-cookie-rewrite.cfg haproxy-2.1.2/tests/test-disable-404.cfg haproxy-2.1.2/tests/test-fsm.cfg haproxy-2.1.2/tests/test-fwlc.cfg haproxy-2.1.2/tests/test-fwrr.cfg haproxy-2.1.2/tests/test-handshakes-chk.cfg haproxy-2.1.2/tests/test-handshakes.cfg haproxy-2.1.2/tests/test-http-send-name-hdr.cfg haproxy-2.1.2/tests/test-inherited-fd.py haproxy-2.1.2/tests/test-inspect-smtp.cfg haproxy-2.1.2/tests/test-inspect-ssl.cfg haproxy-2.1.2/tests/test-list.c haproxy-2.1.2/tests/test-map-ports.cfg haproxy-2.1.2/tests/test-pollers.cfg haproxy-2.1.2/tests/test-redirect.cfg haproxy-2.1.2/tests/test-sample-fetch-args.cfg haproxy-2.1.2/tests/test-sample-fetch-conv.cfg haproxy-2.1.2/tests/test-sockpair.py haproxy-2.1.2/tests/test-sql.cfg haproxy-2.1.2/tests/test-srv-verify.cfg haproxy-2.1.2/tests/test-str2sa.cfg haproxy-2.1.2/tests/test-time.cfg haproxy-2.1.2/tests/test-timeout.cfg haproxy-2.1.2/tests/test-url-hash.cfg haproxy-2.1.2/tests/test-valid-names.cfg haproxy-2.1.2/tests/test.c haproxy-2.1.2/tests/test_hashes.c haproxy-2.1.2/tests/test_pools.c haproxy-2.1.2/tests/testinet.c haproxy-2.1.2/tests/uri_hash.c CC src/ev_epoll.o CC src/ssl_sock.o CC src/ev_poll.o CC src/hlua.o CC src/hlua_fcn.o CC src/namespace.o CC src/mux_h2.o CC src/stream.o CC src/mux_fcgi.o CC src/cfgparse-listen.o CC src/http_ana.o CC src/stats.o CC src/mux_h1.o CC src/flt_spoe.o CC src/server.o CC src/cfgparse.o CC src/checks.o CC src/backend.o CC src/log.o CC src/peers.o CC src/cli.o CC src/haproxy.o CC src/stick_table.o CC src/standard.o CC src/sample.o CC src/proxy.o CC src/stream_interface.o CC src/pattern.o CC src/dns.o CC src/proto_tcp.o CC src/listener.o CC src/cfgparse-global.o CC src/h1.o CC src/http_rules.o CC src/cache.o CC src/http_fetch.o CC src/session.o CC src/fcgi-app.o CC src/connection.o CC src/tcp_rules.o CC src/filters.o CC src/task.o CC src/mworker.o CC src/map.o CC src/h1_htx.o CC src/trace.o CC src/flt_trace.o CC src/acl.o CC src/http_htx.o CC src/flt_http_comp.o CC src/payload.o CC src/vars.o CC src/debug.o CC src/mux_pt.o CC src/http_act.o CC src/h2.o CC src/queue.o CC src/fd.o CC src/proto_uxst.o CC src/lb_chash.o CC src/ring.o CC src/frontend.o CC src/raw_sock.o CC src/xprt_handshake.o CC src/htx.o CC src/memory.o CC src/applet.o CC src/channel.o CC src/signal.o CC src/lb_fwrr.o CC src/ev_select.o CC src/sink.o CC src/http_conv.o CC src/proto_sockpair.o CC src/mworker-prog.o CC src/activity.o CC src/lb_fwlc.o CC src/http.o CC src/lb_fas.o CC src/hathreads.o CC src/regex.o CC src/uri_auth.o CC src/auth.o CC src/buffer.o CC src/compression.o CC src/proto_udp.o CC src/lb_map.o CC src/chunk.o CC src/wdt.o CC src/hpack-dec.o CC src/action.o CC src/xxhash.o CC src/pipe.o CC src/shctx.o CC src/hpack-tbl.o CC src/http_acl.o CC src/sha1.o CC src/time.o CC src/hpack-enc.o CC src/fcgi.o CC src/arg.o CC src/base64.o CC src/protocol.o CC src/freq_ctr.o CC src/lru.o CC src/hpack-huff.o CC src/dict.o CC src/hash.o CC src/mailers.o CC src/version.o CC ebtree/ebtree.o CC ebtree/eb32sctree.o CC ebtree/eb32tree.o CC ebtree/eb64tree.o CC ebtree/ebmbtree.o CC ebtree/ebsttree.o CC ebtree/ebimtree.o CC ebtree/ebistree.o LD haproxy 'haproxy' -> '/usr/local/sbin/haproxy' 'doc/haproxy.1' -> '/usr/local/share/man/man1/haproxy.1' install: creating directory '/usr/local/doc' install: creating directory '/usr/local/doc/haproxy' 'doc/configuration.txt' -> '/usr/local/doc/haproxy/configuration.txt' 'doc/management.txt' -> '/usr/local/doc/haproxy/management.txt' 'doc/proxy-protocol.txt' -> '/usr/local/doc/haproxy/proxy-protocol.txt' 'doc/seamless_reload.txt' -> '/usr/local/doc/haproxy/seamless_reload.txt' 'doc/architecture.txt' -> '/usr/local/doc/haproxy/architecture.txt' 'doc/peers-v2.0.txt' -> '/usr/local/doc/haproxy/peers-v2.0.txt' 'doc/regression-testing.txt' -> '/usr/local/doc/haproxy/regression-testing.txt' 'doc/cookie-options.txt' -> '/usr/local/doc/haproxy/cookie-options.txt' 'doc/lua.txt' -> '/usr/local/doc/haproxy/lua.txt' 'doc/WURFL-device-detection.txt' -> '/usr/local/doc/haproxy/WURFL-device-detection.txt' 'doc/linux-syn-cookies.txt' -> '/usr/local/doc/haproxy/linux-syn-cookies.txt' 'doc/SOCKS4.protocol.txt' -> '/usr/local/doc/haproxy/SOCKS4.protocol.txt' 'doc/network-namespaces.txt' -> '/usr/local/doc/haproxy/network-namespaces.txt' 'doc/DeviceAtlas-device-detection.txt' -> '/usr/local/doc/haproxy/DeviceAtlas-device-detection.txt' 'doc/51Degrees-device-detection.txt' -> '/usr/local/doc/haproxy/51Degrees-device-detection.txt' 'doc/netscaler-client-ip-insertion-protocol.txt' -> '/usr/local/doc/haproxy/netscaler-client-ip-insertion-protocol.txt' 'doc/peers.txt' -> '/usr/local/doc/haproxy/peers.txt' 'doc/close-options.txt' -> '/usr/local/doc/haproxy/close-options.txt' 'doc/SPOE.txt' -> '/usr/local/doc/haproxy/SPOE.txt' 'doc/intro.txt' -> '/usr/local/doc/haproxy/intro.txt' Removing intermediate container 6b1d7c201558 ---> 494267cb8401 Step 19/32 : RUN mkdir /etc/haproxy && cd /etc/haproxy && curl -sSL https://github.com/janeczku/haproxy-acme-validation-plugin/archive/${ACME_PLUGIN_VERSION}.tar.gz -o acme-plugin.tar.gz && tar xvf acme-plugin.tar.gz --strip-components=1 --no-anchored acme-http01-webroot.lua && rm *.tar.gz && cd ---> Running in a979180e18ba haproxy-acme-validation-plugin-0.1.1/acme-http01-webroot.lua Removing intermediate container a979180e18ba ---> 41585fff4cf1 Step 20/32 : RUN apt-get purge --auto-remove -y make gcc g++ libreadline-dev libssl-dev libpcre3-dev libz-dev ---> Running in 511475e1bf90 Reading package lists... Building dependency tree... Reading state information... The following packages will be REMOVED: binutils* cpp* cpp-6* g++* g++-6* gcc* gcc-6* libasan3* libatomic1* libcc1-0* libcilkrts5* libgcc-6-dev* libgomp1* libisl15* libitm1* liblsan0* libmpc3* libmpfr4* libmpx2* libpcre16-3* libpcre3-dev* libpcre32-3* libpcrecpp0v5* libquadmath0* libreadline-dev* libssl-dev* libstdc++-6-dev* libtinfo-dev* libtsan0* libubsan0* make* 0 upgraded, 0 newly installed, 31 to remove and 0 not upgraded. After this operation, 145 MB disk space will be freed. (Reading database ... 13739 files and directories currently installed.) Removing g++ (4:6.3.0-4) ... Removing gcc (4:6.3.0-4) ... Removing g++-6 (6.3.0-18+deb9u1) ... Removing gcc-6 (6.3.0-18+deb9u1) ... Removing binutils (2.28-5) ... Removing cpp (4:6.3.0-4) ... Removing cpp-6 (6.3.0-18+deb9u1) ... Removing libstdc++-6-dev:amd64 (6.3.0-18+deb9u1) ... Removing libgcc-6-dev:amd64 (6.3.0-18+deb9u1) ... Removing libasan3:amd64 (6.3.0-18+deb9u1) ... Removing libatomic1:amd64 (6.3.0-18+deb9u1) ... Removing libcc1-0:amd64 (6.3.0-18+deb9u1) ... Removing libcilkrts5:amd64 (6.3.0-18+deb9u1) ... Removing libgomp1:amd64 (6.3.0-18+deb9u1) ... Removing libisl15:amd64 (0.18-1) ... Removing libitm1:amd64 (6.3.0-18+deb9u1) ... Removing liblsan0:amd64 (6.3.0-18+deb9u1) ... Removing libmpc3:amd64 (1.0.3-1+b2) ... Removing libmpfr4:amd64 (3.1.5-1) ... Removing libmpx2:amd64 (6.3.0-18+deb9u1) ... Removing libpcre3-dev:amd64 (2:8.39-3) ... Removing libpcre16-3:amd64 (2:8.39-3) ... Removing libpcre32-3:amd64 (2:8.39-3) ... Removing libpcrecpp0v5:amd64 (2:8.39-3) ... Removing libquadmath0:amd64 (6.3.0-18+deb9u1) ... Removing libreadline-dev:amd64 (7.0-3) ... Removing libssl-dev:amd64 (1.1.0l-1~deb9u2) ... Removing libtinfo-dev:amd64 (6.0+20161126-1+deb9u2) ... Removing libtsan0:amd64 (6.3.0-18+deb9u1) ... Removing libubsan0:amd64 (6.3.0-18+deb9u1) ... Removing make (4.1-9.1) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Removing intermediate container 511475e1bf90 ---> 44256421c164 Step 21/32 : RUN mkdir /opt/selfsigned ---> Running in 5d6e15bb5840 Removing intermediate container 5d6e15bb5840 ---> b2d309845c5e Step 22/32 : ADD rsyslog.conf /etc/rsyslog.conf ---> 87b2bb242cdf Step 23/32 : ADD haproxy-init.cfg /etc/haproxy/haproxy-init.cfg ---> f5bc4442ed8f Step 24/32 : ADD haproxy.cfg /etc/haproxy/haproxy.cfg ---> 496d0ab1d2dd Step 25/32 : ADD selfsigned /opt/selfsigned ---> bff10c84b20e Step 26/32 : ADD cli.ini /root/.config/letsencrypt/ ---> 3e6acab2852b Step 27/32 : EXPOSE 80 443 8883 ---> Running in 1a9c894f1f82 Removing intermediate container 1a9c894f1f82 ---> a6bf6c7e7253 Step 28/32 : HEALTHCHECK --interval=3s --timeout=3s --start-period=2s --retries=30 CMD curl --fail --silent http://localhost:80 || exit 1 ---> Running in e95d25ab31ea Removing intermediate container e95d25ab31ea ---> 627dfc35f819 Step 29/32 : COPY entrypoint.sh / ---> 7fea6b3ca526 Step 30/32 : RUN chmod +x /entrypoint.sh ---> Running in 6ed4c215ffe9 Removing intermediate container 6ed4c215ffe9 ---> 8552ee9891cb Step 31/32 : ENTRYPOINT ["/entrypoint.sh"] ---> Running in b3333ade5ecd Removing intermediate container b3333ade5ecd ---> 97f615f2c351 Step 32/32 : CMD ["run"] ---> Running in fd6d1a98b7cb Removing intermediate container fd6d1a98b7cb ---> 3fc2d0df2a85 Successfully built 3fc2d0df2a85 Successfully tagged openremote/proxy:latest Creating openremote_deployment_1 ... done Creating openremote_postgresql_1 ... done Creating openremote_keycloak_1 ... done Creating openremote_manager_1 ... done Creating openremote_proxy_1 ... done Attaching to openremote_postgresql_1, openremote_deployment_1, openremote_keycloak_1, openremote_manager_1, openremote_proxy_1 keycloak_1 | openremote keycloak_1 | Added 'admin' to '/opt/jboss/keycloak/standalone/configuration/keycloak-add-user.json', restart server to load user keycloak_1 | -b 0.0.0.0 keycloak_1 | ========================================================================= keycloak_1 | keycloak_1 | Using PostgreSQL database keycloak_1 | keycloak_1 | ========================================================================= keycloak_1 | keycloak_1 | 11:16:14,639 INFO [org.jboss.modules] (CLI command executor) JBoss Modules version 1.10.1.Final keycloak_1 | 11:16:14,681 INFO [org.jboss.msc] (CLI command executor) JBoss MSC version 1.4.11.Final keycloak_1 | 11:16:14,688 INFO [org.jboss.threads] (CLI command executor) JBoss Threads version 2.3.3.Final manager_1 | Picked up JAVA_TOOL_OPTIONS: keycloak_1 | 11:16:14,759 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) starting keycloak_1 | 11:16:14,828 INFO [org.jboss.vfs] (MSC service thread 1-1) VFS000002: Failed to clean existing content for temp file provider of type temp. Enable DEBUG level log to find what caused this keycloak_1 | 11:16:15,284 INFO [org.wildfly.security] (ServerService Thread Pool -- 19) ELY00001: WildFly Elytron version 1.12.1.Final manager_1 | Using logging configuration: /deployment/manager/logging.properties keycloak_1 | 11:16:15,692 INFO [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. keycloak_1 | 11:16:15,740 INFO [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. manager_1 | 2020-12-23 11:16:34.965 INFO [main ] org.openremote.container.Container : >>> Starting runtime container... keycloak_1 | 11:16:15,836 INFO [org.jboss.as.patching] (MSC service thread 1-3) WFLYPAT0050: Keycloak cumulative patch ID is: base, one-off patches include: none keycloak_1 | 11:16:15,843 WARN [org.jboss.as.domain.management.security] (MSC service thread 1-8) WFLYDM0111: Keystore /opt/jboss/keycloak/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost manager_1 | 2020-12-23 11:16:34.971 INFO [main ] .openremote.manager.syslog.SyslogService : Syslog service enabled postgresql_1 | The files belonging to this database system will be owned by user "postgres". postgresql_1 | This user must also own the server process. postgresql_1 | postgresql_1 | The database cluster will be initialized with locale "en_US.utf8". postgresql_1 | The default database encoding has accordingly been set to "UTF8". postgresql_1 | The default text search configuration will be set to "english". postgresql_1 | postgresql_1 | Data page checksums are disabled. postgresql_1 | postgresql_1 | fixing permissions on existing directory /var/lib/postgresql/data ... ok keycloak_1 | 11:16:15,918 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server keycloak_1 | 11:16:15,919 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) started in 1274ms - Started 56 of 79 services (32 services are lazy, passive or on-demand) proxy_1 | [INFO][2020-12-23 11:16:44] DOMAINNAME: localhost proxy_1 | [INFO][2020-12-23 11:16:44] LOCAL_CERT_FILE: proxy_1 | [INFO][2020-12-23 11:16:44] HAPROXY_CERT_FILE: /opt/selfsigned/localhost.pem proxy_1 | [INFO][2020-12-23 11:16:44] HAPROXY_CONFIG: /etc/haproxy/haproxy.cfg proxy_1 | [INFO][2020-12-23 11:16:44] HAPROXY_CMD: haproxy -f /etc/haproxy/haproxy.cfg -D -p /var/run/haproxy.pid proxy_1 | [INFO][2020-12-23 11:16:44] HAPROXY_USER_PARAMS: postgresql_1 | creating subdirectories ... ok manager_1 | 2020-12-23 11:16:34.974 INFO [main ] .manager.security.ManagerIdentityService : Enabling Keycloak identity provider postgresql_1 | selecting default max_connections ... 100 postgresql_1 | selecting default shared_buffers ... 128MB openremote_deployment_1 exited with code 0 postgresql_1 | selecting default timezone ... Europe/Zurich postgresql_1 | selecting dynamic shared memory implementation ... posix proxy_1 | [INFO][2020-12-23 11:16:44] PROXY_LOGLEVEL: notice postgresql_1 | creating configuration files ... ok postgresql_1 | running bootstrap script ... ok postgresql_1 | performing post-bootstrap initialization ... ok postgresql_1 | syncing data to disk ... ok postgresql_1 | postgresql_1 | Success. You can now start the database server using: postgresql_1 | postgresql_1 | pg_ctl -D /var/lib/postgresql/data -l logfile start postgresql_1 | keycloak_1 | The batch executed successfully manager_1 | 2020-12-23 11:16:34.998 INFO [main ] curity.keycloak.KeycloakIdentityProvider : External system base URL: https://localhost postgresql_1 | postgresql_1 | WARNING: enabling "trust" authentication for local connections postgresql_1 | You can change this by editing pg_hba.conf or using the option -A, or postgresql_1 | --auth-local and --auth-host, the next time you run initdb. postgresql_1 | waiting for server to start....LOG: database system was shut down at 2020-12-23 11:16:06 CET postgresql_1 | LOG: MultiXact member wraparound protections are now enabled postgresql_1 | LOG: autovacuum launcher started postgresql_1 | LOG: database system is ready to accept connections postgresql_1 | done postgresql_1 | server started postgresql_1 | CREATE DATABASE postgresql_1 | postgresql_1 | postgresql_1 | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/* postgresql_1 | postgresql_1 | waiting for server to shut down...LOG: received fast shutdown request postgresql_1 | LOG: aborting any active transactions postgresql_1 | .LOG: autovacuum launcher shutting down postgresql_1 | LOG: shutting down postgresql_1 | LOG: database system is shut down postgresql_1 | done postgresql_1 | server stopped postgresql_1 | postgresql_1 | PostgreSQL init process complete; ready for start up. postgresql_1 | postgresql_1 | LOG: database system was shut down at 2020-12-23 11:16:08 CET postgresql_1 | LOG: MultiXact member wraparound protections are now enabled proxy_1 | [INFO][2020-12-23 11:16:44] LE_CERT_ROOT: /deployment/letsencrypt/live keycloak_1 | 11:16:16,030 INFO [org.jboss.as] (MSC service thread 1-8) WFLYSRV0050: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) stopped in 11ms postgresql_1 | LOG: database system is ready to accept connections postgresql_1 | LOG: autovacuum launcher started postgresql_1 | ERROR: relation "public.databasechangeloglock" does not exist at character 22 postgresql_1 | STATEMENT: select count(*) from public.databasechangeloglock manager_1 | 2020-12-23 11:16:35.001 INFO [main ] curity.keycloak.KeycloakIdentityProvider : Keycloak service URL: http://keycloak:8080/auth manager_1 | 2020-12-23 11:16:35.355 INFO [main ] curity.keycloak.KeycloakIdentityProvider : Connecting to Keycloak server: http://keycloak:8080/auth keycloak_1 | 11:16:16,942 INFO [org.jboss.modules] (CLI command executor) JBoss Modules version 1.10.1.Final postgresql_1 | ERROR: relation "public.databasechangelog" does not exist at character 22 postgresql_1 | STATEMENT: select count(*) from public.databasechangelog postgresql_1 | ERROR: relation "public.databasechangelog" does not exist at character 22 postgresql_1 | STATEMENT: select count(*) from public.databasechangelog keycloak_1 | 11:16:16,984 INFO [org.jboss.msc] (CLI command executor) JBoss MSC version 1.4.11.Final proxy_1 | [INFO][2020-12-23 11:16:44] LE_ARCHIVE_ROOT: /deployment/letsencrypt/archive manager_1 | 2020-12-23 11:16:36.349 INFO [main ] curity.keycloak.KeycloakIdentityProvider : Keycloak identity provider available: http://keycloak:8080/auth keycloak_1 | 11:16:16,990 INFO [org.jboss.threads] (CLI command executor) JBoss Threads version 2.3.3.Final keycloak_1 | 11:16:17,066 INFO [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) starting manager_1 | 2020-12-23 11:16:36.351 INFO [main ] container.persistence.PersistenceService : Preparing persistence service for database: POSTGRES manager_1 | 2020-12-23 11:16:36.354 INFO [main ] container.persistence.PersistenceService : Opening database connection: jdbc:postgresql://postgresql/openremote?currentSchema=openremote manager_1 | 2020-12-23 11:16:36.502 WARNING [main ] container.persistence.PersistenceService : DB is empty so changing forceClean to true manager_1 | 2020-12-23 11:16:36.502 WARNING [main ] container.persistence.PersistenceService : !!! Cleaning database !!! manager_1 | 2020-12-23 11:16:36.519 WARNING [main ] g.flywaydb.core.internal.command.DbClean : Unable to clean unknown schema: "openremote" manager_1 | 2020-12-23 11:16:36.529 INFO [main ] container.persistence.PersistenceService : Pending task: 20191202.01, Schema, V20191202_01__Schema.sql manager_1 | 2020-12-23 11:16:37.247 INFO [main ] container.persistence.PersistenceService : Applied database schema migrations: 1 keycloak_1 | 11:16:17,131 INFO [org.jboss.vfs] (MSC service thread 1-3) VFS000002: Failed to clean existing content for temp file provider of type temp. Enable DEBUG level log to find what caused this keycloak_1 | 11:16:17,564 INFO [org.wildfly.security] (ServerService Thread Pool -- 19) ELY00001: WildFly Elytron version 1.12.1.Final keycloak_1 | 11:16:18,032 INFO [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. manager_1 | 2020-12-23 11:16:38.272 INFO [main ] rg.openremote.manager.setup.SetupService : No custom SetupTasks provider found on classpath, enabling: org.openremote.manager.setup.builtin.BuiltinSetupTasks keycloak_1 | 11:16:18,086 INFO [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. keycloak_1 | 11:16:18,178 INFO [org.jboss.as.patching] (MSC service thread 1-6) WFLYPAT0050: Keycloak cumulative patch ID is: base, one-off patches include: none keycloak_1 | 11:16:18,186 WARN [org.jboss.as.domain.management.security] (MSC service thread 1-1) WFLYDM0111: Keystore /opt/jboss/keycloak/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost keycloak_1 | 11:16:18,232 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server keycloak_1 | 11:16:18,234 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) started in 1287ms - Started 56 of 86 services (39 services are lazy, passive or on-demand) keycloak_1 | The batch executed successfully keycloak_1 | 11:16:18,343 INFO [org.jboss.as] (MSC service thread 1-7) WFLYSRV0050: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) stopped in 11ms manager_1 | 2020-12-23 11:16:38.283 INFO [main ] rg.openremote.manager.setup.SetupService : --- EXECUTING INIT TASKS --- proxy_1 | [INFO][2020-12-23 11:16:44] LE_RENEWAL_CONFIG_ROOT: /deployment/letsencrypt/renewal keycloak_1 | JAVA_OPTS already set in environment; overriding default settings with values: -XX:NativeMemoryTracking=summary -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/javadump.core.hprof -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true keycloak_1 | ========================================================================= keycloak_1 | keycloak_1 | JBoss Bootstrap Environment keycloak_1 | keycloak_1 | JBOSS_HOME: /opt/jboss/keycloak keycloak_1 | keycloak_1 | JAVA: java keycloak_1 | keycloak_1 | JAVA_OPTS: -server -XX:NativeMemoryTracking=summary -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/javadump.core.hprof -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true --add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED --add-exports=jdk.unsupported/sun.reflect=ALL-UNNAMED keycloak_1 | keycloak_1 | ========================================================================= keycloak_1 | keycloak_1 | 11:16:18,863 INFO [org.jboss.modules] (main) JBoss Modules version 1.10.1.Final proxy_1 | [INFO][2020-12-23 11:16:44] LE_CMD: /usr/bin/certbot certonly --config-dir /deployment/letsencrypt -w /deployment/acme-webroot manager_1 | 2020-12-23 11:16:38.284 INFO [main ] rg.openremote.manager.setup.SetupService : --- INIT TASKS COMPLETED SUCCESSFULLY --- keycloak_1 | 11:16:19,179 INFO [org.jboss.msc] (main) JBoss MSC version 1.4.11.Final keycloak_1 | 11:16:19,195 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.3.Final keycloak_1 | 11:16:19,266 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) starting keycloak_1 | 11:16:19,370 INFO [org.jboss.vfs] (MSC service thread 1-8) VFS000002: Failed to clean existing content for temp file provider of type temp. Enable DEBUG level log to find what caused this keycloak_1 | 11:16:19,851 INFO [org.wildfly.security] (ServerService Thread Pool -- 22) ELY00001: WildFly Elytron version 1.12.1.Final manager_1 | 2020-12-23 11:16:38.581 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:simulator manager_1 | 2020-12-23 11:16:38.585 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:macro manager_1 | 2020-12-23 11:16:38.585 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:timer keycloak_1 | 11:16:20,323 INFO [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. manager_1 | 2020-12-23 11:16:38.585 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:knx keycloak_1 | 11:16:20,361 INFO [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 15) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. manager_1 | 2020-12-23 11:16:38.586 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:velbusTcp manager_1 | 2020-12-23 11:16:38.586 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:velbusSerial manager_1 | 2020-12-23 11:16:38.586 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:httpClient keycloak_1 | 11:16:20,439 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http) proxy_1 | [INFO][2020-12-23 11:16:44] LOGFILE: /var/log/proxy.log manager_1 | 2020-12-23 11:16:38.596 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:udpClient keycloak_1 | 11:16:20,449 INFO [org.xnio] (MSC service thread 1-3) XNIO version 3.8.1.Final manager_1 | 2020-12-23 11:16:38.597 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:websocketClient keycloak_1 | 11:16:20,453 INFO [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.8.1.Final keycloak_1 | 11:16:20,473 INFO [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.18.Final manager_1 | 2020-12-23 11:16:38.603 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:artnet keycloak_1 | 11:16:20,497 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 39) WFLYCLINF0001: Activating Infinispan subsystem. keycloak_1 | 11:16:20,513 INFO [org.wildfly.extension.microprofile.config.smallrye._private] (ServerService Thread Pool -- 48) WFLYCONF0001: Activating WildFly MicroProfile Config Subsystem manager_1 | 2020-12-23 11:16:38.603 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:tcpClient manager_1 | 2020-12-23 11:16:38.604 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:serialClient keycloak_1 | 11:16:20,511 INFO [org.jboss.as.jaxrs] (ServerService Thread Pool -- 41) WFLYRS0016: RESTEasy version 3.12.1.Final keycloak_1 | 11:16:20,514 INFO [org.jboss.as.clustering.jgroups] (ServerService Thread Pool -- 43) WFLYCLJG0001: Activating JGroups subsystem. JGroups version 4.2.4 keycloak_1 | 11:16:20,514 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 40) WFLYIO001: Worker 'default' has auto-configured to 12 IO threads with 96 max task threads based on your 6 available processors manager_1 | 2020-12-23 11:16:38.604 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:clientEvent manager_1 | 2020-12-23 11:16:38.605 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:tradfri keycloak_1 | 11:16:20,527 INFO [org.jboss.as.security] (ServerService Thread Pool -- 55) WFLYSEC0002: Activating Security Subsystem manager_1 | 2020-12-23 11:16:38.605 INFO [main ] agent.protocol.AbstractProtocol.PROTOCOL : Initializing protocol: urn:openremote:protocol:zwave keycloak_1 | 11:16:20,536 INFO [org.jboss.as.naming] (ServerService Thread Pool -- 52) WFLYNAM0001: Activating Naming Subsystem manager_1 | 2020-12-23 11:16:38.628 WARNING [main ] ger.notification.PushNotificationHandler : FIREBASE_CONFIG_FILE not defined, can not send FCM notifications manager_1 | 2020-12-23 11:16:38.640 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: READ_ATTRIBUTE manager_1 | 2020-12-23 11:16:38.640 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: WRITE_ATTRIBUTE keycloak_1 | 11:16:20,536 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 34) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.4) manager_1 | 2020-12-23 11:16:38.640 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: BOOLEAN_INPUT manager_1 | 2020-12-23 11:16:38.640 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: AND_GATE manager_1 | 2020-12-23 11:16:38.640 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: OR_GATE keycloak_1 | 11:16:20,550 WARN [org.jboss.as.txn] (ServerService Thread Pool -- 57) WFLYTX0013: The node-identifier attribute on the /subsystem=transactions is set to the default value. This is a danger for environments running multiple servers. Please make sure the attribute value is unique. keycloak_1 | 11:16:20,555 INFO [org.wildfly.extension.microprofile.health.smallrye] (ServerService Thread Pool -- 49) WFLYHEALTH0001: Activating Eclipse MicroProfile Health Subsystem manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: NOT_GATE manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: NUMBER_INPUT manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: ADD_OPERATOR keycloak_1 | 11:16:20,559 INFO [org.wildfly.extension.microprofile.metrics.smallrye] (ServerService Thread Pool -- 50) WFLYMETRICS0001: Activating Eclipse MicroProfile Metrics Subsystem keycloak_1 | 11:16:20,570 INFO [org.jboss.as.connector] (MSC service thread 1-7) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.4.22.Final) keycloak_1 | 11:16:20,578 INFO [org.jboss.as.security] (MSC service thread 1-7) WFLYSEC0001: Current PicketBox version=5.0.3.Final-redhat-00005 keycloak_1 | 11:16:20,582 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-8) WFLYJCA0018: Started Driver service with driver-name = h2 keycloak_1 | 11:16:20,592 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 34) WFLYJCA0005: Deploying non-JDBC-compliant driver class org.postgresql.Driver (version 42.2) keycloak_1 | 11:16:20,594 INFO [org.jboss.as.naming] (MSC service thread 1-3) WFLYNAM0003: Starting Naming Service keycloak_1 | 11:16:20,595 INFO [org.jboss.as.mail.extension] (MSC service thread 1-4) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default] keycloak_1 | 11:16:20,597 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-3) WFLYJCA0018: Started Driver service with driver-name = postgresql keycloak_1 | 11:16:20,597 INFO [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0003: Undertow 2.1.3.Final starting keycloak_1 | 11:16:20,650 WARN [org.wildfly.clustering.web.undertow] (ServerService Thread Pool -- 58) WFLYCLWEBUT0007: No routing provider found for default-server; using legacy provider based on static configuration manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: SUBTRACT_OPERATOR keycloak_1 | 11:16:20,666 INFO [org.jboss.as.ejb3] (MSC service thread 1-8) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 96 (per class), which is derived from thread worker pool sizing. keycloak_1 | 11:16:20,666 INFO [org.jboss.as.ejb3] (MSC service thread 1-1) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 24 (per class), which is derived from the number of CPUs on this host. keycloak_1 | 11:16:20,719 INFO [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0012: Started server default-server. keycloak_1 | 11:16:20,721 INFO [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0018: Host default-host starting keycloak_1 | 11:16:20,716 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 58) WFLYUT0014: Creating file handler for path '/opt/jboss/keycloak/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]'] manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: MULTIPLY_OPERATOR manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: DIVIDE_OPERATOR keycloak_1 | 11:16:20,779 INFO [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0006: Undertow HTTP listener default listening on 0.0.0.0:8080 keycloak_1 | 11:16:20,781 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0006: Undertow AJP listener ajp listening on 0.0.0.0:8009 keycloak_1 | 11:16:20,794 INFO [org.jboss.modcluster] (ServerService Thread Pool -- 60) MODCLUSTER000001: Initializing mod_cluster version 1.4.1.Final keycloak_1 | 11:16:20,798 INFO [org.jboss.modcluster] (ServerService Thread Pool -- 60) MODCLUSTER000032: Listening to proxy advertisements on /224.0.1.105:23364 keycloak_1 | 11:16:20,869 INFO [org.jboss.as.ejb3] (MSC service thread 1-7) WFLYEJB0493: EJB subsystem suspension complete keycloak_1 | 11:16:20,893 INFO [org.jboss.as.patching] (MSC service thread 1-7) WFLYPAT0050: Keycloak cumulative patch ID is: base, one-off patches include: none keycloak_1 | 11:16:20,909 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-5) WFLYJCA0001: Bound data source [java:jboss/datasources/KeycloakDS] keycloak_1 | 11:16:20,909 WARN [org.jboss.as.domain.management.security] (MSC service thread 1-4) WFLYDM0111: Keystore /opt/jboss/keycloak/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: EQUALS_COMPARATOR manager_1 | 2020-12-23 11:16:38.641 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: GREATER_THAN manager_1 | 2020-12-23 11:16:38.642 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: LESS_THAN manager_1 | 2020-12-23 11:16:38.642 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: ROUND_NODE manager_1 | 2020-12-23 11:16:38.642 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: ABS_OPERATOR manager_1 | 2020-12-23 11:16:38.642 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: POW_OPERATOR manager_1 | 2020-12-23 11:16:38.642 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: NUMBER_SWITCH manager_1 | 2020-12-23 11:16:38.642 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: TEXT_INPUT manager_1 | 2020-12-23 11:16:38.643 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: COMBINE_TEXT keycloak_1 | 11:16:20,912 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS] keycloak_1 | 11:16:20,918 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-3) WFLYDS0013: Started FileSystemDeploymentService for directory /opt/jboss/keycloak/standalone/deployments manager_1 | 2020-12-23 11:16:38.643 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: TEXT_SWITCH keycloak_1 | 11:16:20,929 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "keycloak-server.war" (runtime-name: "keycloak-server.war") keycloak_1 | 11:16:20,960 INFO [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0006: Undertow HTTPS listener https listening on 0.0.0.0:8443 keycloak_1 | 11:16:21,190 WARN [org.jgroups.protocols.UDP] (ServerService Thread Pool -- 60) JGRP000015: the send buffer of socket ManagedMulticastSocketBinding was set to 1.00MB, but the OS only allocated 212.99KB keycloak_1 | 11:16:21,190 WARN [org.jgroups.protocols.UDP] (ServerService Thread Pool -- 60) JGRP000015: the receive buffer of socket ManagedMulticastSocketBinding was set to 20.00MB, but the OS only allocated 212.99KB keycloak_1 | 11:16:21,191 WARN [org.jgroups.protocols.UDP] (ServerService Thread Pool -- 60) JGRP000015: the send buffer of socket ManagedMulticastSocketBinding was set to 1.00MB, but the OS only allocated 212.99KB keycloak_1 | 11:16:21,191 WARN [org.jgroups.protocols.UDP] (ServerService Thread Pool -- 60) JGRP000015: the receive buffer of socket ManagedMulticastSocketBinding was set to 25.00MB, but the OS only allocated 212.99KB manager_1 | 2020-12-23 11:16:38.643 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: SIN keycloak_1 | 11:16:24,198 INFO [org.jgroups.protocols.pbcast.GMS] (ServerService Thread Pool -- 60) 31ab624ce577: no members discovered after 3003 ms: creating cluster as coordinator keycloak_1 | 11:16:24,485 INFO [org.infinispan.PERSISTENCE] (MSC service thread 1-8) ISPN000556: Starting user marshaller 'org.wildfly.clustering.infinispan.marshalling.jboss.JBossMarshaller' manager_1 | 2020-12-23 11:16:38.643 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: COS keycloak_1 | 11:16:24,490 INFO [org.infinispan.PERSISTENCE] (MSC service thread 1-5) ISPN000556: Starting user marshaller 'org.wildfly.clustering.infinispan.marshalling.jboss.JBossMarshaller' keycloak_1 | 11:16:24,491 INFO [org.infinispan.PERSISTENCE] (MSC service thread 1-3) ISPN000556: Starting user marshaller 'org.wildfly.clustering.infinispan.marshalling.jboss.JBossMarshaller' keycloak_1 | 11:16:24,486 INFO [org.infinispan.PERSISTENCE] (MSC service thread 1-1) ISPN000556: Starting user marshaller 'org.wildfly.clustering.infinispan.marshalling.jboss.JBossMarshaller' keycloak_1 | 11:16:24,494 INFO [org.infinispan.PERSISTENCE] (MSC service thread 1-4) ISPN000556: Starting user marshaller 'org.wildfly.clustering.infinispan.marshalling.jboss.JBossMarshaller' keycloak_1 | 11:16:24,500 INFO [org.infinispan.CONTAINER] (MSC service thread 1-3) ISPN000128: Infinispan version: Infinispan 'Turia' 10.1.8.Final manager_1 | 2020-12-23 11:16:38.643 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: TAN manager_1 | 2020-12-23 11:16:38.643 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: SQRT manager_1 | 2020-12-23 11:16:38.644 INFO [main ] mote.manager.rules.flow.FlowResourceImpl : Node found: MOD manager_1 | 2020-12-23 11:16:38.652 INFO [main ] nremote.manager.event.EventSubscriptions : Starting background task checking for expired event subscriptions from clients keycloak_1 | 11:16:24,599 INFO [org.infinispan.CLUSTER] (MSC service thread 1-3) ISPN000078: Starting JGroups channel ejb keycloak_1 | 11:16:24,599 INFO [org.infinispan.CLUSTER] (MSC service thread 1-4) ISPN000078: Starting JGroups channel ejb keycloak_1 | 11:16:24,599 INFO [org.infinispan.CLUSTER] (MSC service thread 1-8) ISPN000078: Starting JGroups channel ejb keycloak_1 | 11:16:24,599 INFO [org.infinispan.CLUSTER] (MSC service thread 1-1) ISPN000078: Starting JGroups channel ejb keycloak_1 | 11:16:24,599 INFO [org.infinispan.CLUSTER] (MSC service thread 1-5) ISPN000078: Starting JGroups channel ejb keycloak_1 | 11:16:24,604 INFO [org.infinispan.CLUSTER] (MSC service thread 1-8) ISPN000094: Received new cluster view for channel ejb: [31ab624ce577|0] (1) [31ab624ce577] keycloak_1 | 11:16:24,604 INFO [org.infinispan.CLUSTER] (MSC service thread 1-1) ISPN000094: Received new cluster view for channel ejb: [31ab624ce577|0] (1) [31ab624ce577] keycloak_1 | 11:16:24,604 INFO [org.infinispan.CLUSTER] (MSC service thread 1-5) ISPN000094: Received new cluster view for channel ejb: [31ab624ce577|0] (1) [31ab624ce577] keycloak_1 | 11:16:24,604 INFO [org.infinispan.CLUSTER] (MSC service thread 1-3) ISPN000094: Received new cluster view for channel ejb: [31ab624ce577|0] (1) [31ab624ce577] keycloak_1 | 11:16:24,604 INFO [org.infinispan.CLUSTER] (MSC service thread 1-4) ISPN000094: Received new cluster view for channel ejb: [31ab624ce577|0] (1) [31ab624ce577] manager_1 | 2020-12-23 11:16:38.695 INFO [main ] org.openremote.container.web.WebService : Building web routing with handler(s): manager_1 | 2020-12-23 11:16:38.706 INFO [main ] emote.container.security.IdentityService : Securing web deployment: /api manager_1 | 2020-12-23 11:16:38.893 INFO [main ] org.openremote.container.web.WebService : Deploying insecure web context: /jsapi manager_1 | 2020-12-23 11:16:38.906 INFO [main ] org.openremote.container.web.WebService : Deploying insecure web context: / keycloak_1 | 11:16:24,614 INFO [org.infinispan.CLUSTER] (MSC service thread 1-8) ISPN000079: Channel ejb local address is 31ab624ce577, physical addresses are [172.18.0.3:55200] keycloak_1 | 11:16:24,615 INFO [org.infinispan.CLUSTER] (MSC service thread 1-1) ISPN000079: Channel ejb local address is 31ab624ce577, physical addresses are [172.18.0.3:55200] keycloak_1 | 11:16:24,616 INFO [org.infinispan.CLUSTER] (MSC service thread 1-4) ISPN000079: Channel ejb local address is 31ab624ce577, physical addresses are [172.18.0.3:55200] keycloak_1 | 11:16:24,618 INFO [org.infinispan.CLUSTER] (MSC service thread 1-5) ISPN000079: Channel ejb local address is 31ab624ce577, physical addresses are [172.18.0.3:55200] keycloak_1 | 11:16:24,618 INFO [org.infinispan.CLUSTER] (MSC service thread 1-3) ISPN000079: Channel ejb local address is 31ab624ce577, physical addresses are [172.18.0.3:55200] manager_1 | 2020-12-23 11:16:38.908 INFO [main ] org.openremote.container.web.WebService : Deploying insecure web context: / keycloak_1 | 11:16:24,927 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 60) WFLYCLINF0002: Started client-mappings cache from ejb container keycloak_1 | 11:16:25,019 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 60) WFLYCLINF0002: Started realms cache from keycloak container manager_1 | 2020-12-23 11:16:38.930 INFO [main ] curity.keycloak.KeycloakIdentityProvider : Enabling auth reverse proxy (passing requests through to Keycloak) on web context: /auth manager_1 | 2020-12-23 11:16:38.930 INFO [main ] rg.openremote.manager.setup.SetupService : --- EXECUTING START TASKS --- keycloak_1 | 11:16:25,018 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 67) WFLYCLINF0002: Started authorization cache from keycloak container keycloak_1 | 11:16:25,019 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 66) WFLYCLINF0002: Started offlineSessions cache from keycloak container keycloak_1 | 11:16:25,020 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 71) WFLYCLINF0002: Started authenticationSessions cache from keycloak container keycloak_1 | 11:16:25,018 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 62) WFLYCLINF0002: Started work cache from keycloak container keycloak_1 | 11:16:25,018 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 61) WFLYCLINF0002: Started keys cache from keycloak container manager_1 | 2020-12-23 11:16:38.930 INFO [main ] manager.setup.builtin.KeycloakCleanSetup : Deleting all non-master realms manager_1 | 2020-12-23 11:16:39.237 INFO [main ] manager.setup.builtin.KeycloakCleanSetup : Deleting client: account-console keycloak_1 | 11:16:25,015 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 63) WFLYCLINF0002: Started sessions cache from keycloak container keycloak_1 | 11:16:25,019 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 64) WFLYCLINF0002: Started users cache from keycloak container keycloak_1 | 11:16:25,028 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 70) WFLYCLINF0002: Started actionTokens cache from keycloak container keycloak_1 | 11:16:25,030 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 65) WFLYCLINF0002: Started clientSessions cache from keycloak container keycloak_1 | 11:16:25,031 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 68) WFLYCLINF0002: Started loginFailures cache from keycloak container keycloak_1 | 11:16:25,032 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 69) WFLYCLINF0002: Started offlineClientSessions cache from keycloak container manager_1 | 2020-12-23 11:16:40.968 INFO [main ] security.ManagerKeycloakIdentityProvider : Created user 'smartcity' with password 'smartcity' manager_1 | 2020-12-23 11:16:41.531 INFO [main ] ote.manager.setup.builtin.RulesDemoSetup : Importing demo rulesets manager_1 | 2020-12-23 11:16:41.594 INFO [main ] rg.openremote.manager.setup.SetupService : --- START TASKS COMPLETED SUCCESSFULLY --- manager_1 | 2020-12-23 11:16:41.598 INFO [main ] e.container.message.MessageBrokerService : Starting Camel message broker manager_1 | 2020-12-23 11:16:41.839 INFO [main ] .container.web.DefaultWebsocketComponent : Deploying websocket endpoint: /websocket/events manager_1 | 2020-12-23 11:16:41.881 INFO [main ] emote.container.security.IdentityService : Securing web deployment: /websocket manager_1 | 2020-12-23 11:16:41.904 INFO [main ] org.openremote.manager.map.MapService : Starting map service with tile data: /deployment/map/mapdata.mbtiles keycloak_1 | 11:16:25,094 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0273: Excluded subsystem webservices via jboss-deployment-structure.xml does not exist. keycloak_1 | 11:16:25,444 INFO [org.keycloak.services] (ServerService Thread Pool -- 68) KC-SERVICES0001: Loading config from standalone.xml or domain.xml keycloak_1 | 11:16:25,495 INFO [org.keycloak.url.DefaultHostnameProviderFactory] (ServerService Thread Pool -- 68) Frontend: , Admin: , Backend: keycloak_1 | 11:16:25,726 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 68) WFLYCLINF0002: Started realmRevisions cache from keycloak container keycloak_1 | 11:16:25,728 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 68) WFLYCLINF0002: Started userRevisions cache from keycloak container keycloak_1 | 11:16:25,730 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 68) WFLYCLINF0002: Started authorizationRevisions cache from keycloak container keycloak_1 | 11:16:25,732 INFO [org.keycloak.connections.infinispan.DefaultInfinispanConnectionProviderFactory] (ServerService Thread Pool -- 68) Node name: 31ab624ce577, Site name: null keycloak_1 | 11:16:27,569 INFO [org.keycloak.connections.jpa.updater.liquibase.LiquibaseJpaUpdaterProvider] (ServerService Thread Pool -- 68) Initializing database schema. Using changelog META-INF/jpa-changelog-master.xml keycloak_1 | 11:16:30,343 INFO [org.hibernate.jpa.internal.util.LogHelper] (ServerService Thread Pool -- 68) HHH000204: Processing PersistenceUnitInfo [ keycloak_1 | name: keycloak-default keycloak_1 | ...] keycloak_1 | 11:16:30,379 INFO [org.hibernate.Version] (ServerService Thread Pool -- 68) HHH000412: Hibernate Core {5.3.17.Final} keycloak_1 | 11:16:30,380 INFO [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 68) HHH000206: hibernate.properties not found keycloak_1 | 11:16:30,457 INFO [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 68) HCANN000001: Hibernate Commons Annotations {5.0.5.Final} manager_1 | 2020-12-23 11:16:41.947 WARNING [main ] ger.notification.PushNotificationHandler : FCM configuration invalid so cannot start keycloak_1 | 11:16:30,551 INFO [org.hibernate.dialect.Dialect] (ServerService Thread Pool -- 68) HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL95Dialect keycloak_1 | 11:16:30,652 INFO [org.hibernate.engine.jdbc.env.internal.LobCreatorBuilderImpl] (ServerService Thread Pool -- 68) HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException keycloak_1 | 11:16:30,654 INFO [org.hibernate.type.BasicTypeRegistry] (ServerService Thread Pool -- 68) HHH000270: Type registration [java.util.UUID] overrides previous : org.hibernate.type.UUIDBinaryType@44422059 keycloak_1 | 11:16:30,658 INFO [org.hibernate.envers.boot.internal.EnversServiceImpl] (ServerService Thread Pool -- 68) Envers integration enabled? : true keycloak_1 | 11:16:30,944 INFO [org.hibernate.orm.beans] (ServerService Thread Pool -- 68) HHH10005002: No explicit CDI BeanManager reference was passed to Hibernate, but CDI is available on the Hibernate ClassLoader. keycloak_1 | 11:16:30,996 INFO [org.hibernate.validator.internal.util.Version] (ServerService Thread Pool -- 68) HV000001: Hibernate Validator 6.0.20.Final keycloak_1 | 11:16:31,712 INFO [org.hibernate.hql.internal.QueryTranslatorFactoryInitiator] (ServerService Thread Pool -- 68) HHH000397: Using ASTQueryTranslatorFactory keycloak_1 | 11:16:32,019 INFO [org.keycloak.services] (ServerService Thread Pool -- 68) KC-SERVICES0050: Initializing master realm keycloak_1 | 11:16:32,572 INFO [org.keycloak.services] (ServerService Thread Pool -- 68) KC-SERVICES0006: Importing users from '/opt/jboss/keycloak/standalone/configuration/keycloak-add-user.json' keycloak_1 | 11:16:32,839 INFO [org.keycloak.services] (ServerService Thread Pool -- 68) KC-SERVICES0009: Added user 'admin' to realm 'master' keycloak_1 | 11:16:32,878 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002225: Deploying javax.ws.rs.core.Application: class org.keycloak.services.resources.KeycloakApplication manager_1 | 2020-12-23 11:16:41.950 INFO [main ] rg.openremote.manager.rules.RulesService : GeoefenceAssetAdapters found: 1 manager_1 | 2020-12-23 11:16:41.960 INFO [main ] rg.openremote.manager.rules.RulesService : Deploying global rulesets manager_1 | 2020-12-23 11:16:41.963 INFO [main ] rg.openremote.manager.rules.RulesService : Deploying tenant rulesets manager_1 | 2020-12-23 11:16:42.090 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1001', version='0', name='De Kuip', lang='JSON', createdOn='2020-12-23 11:16:41.537', lastModified='2020-12-23 11:16:41.534', enabled='true', meta='{"showOnMap":true,"showOnList":true}', realm='smartcity', accessPublicRead='true'} manager_1 | 2020-12-23 11:16:42.131 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1002', version='0', name='Euromast', lang='JSON', createdOn='2020-12-23 11:16:41.541', lastModified='2020-12-23 11:16:41.54', enabled='true', meta='{"showOnMap":true,"showOnList":true}', realm='smartcity', accessPublicRead='true'} manager_1 | 2020-12-23 11:16:42.132 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1003', version='0', name='Markthal', lang='JSON', createdOn='2020-12-23 11:16:41.544', lastModified='2020-12-23 11:16:41.543', enabled='true', meta='{"showOnMap":true,"showOnList":true}', realm='smartcity', accessPublicRead='true'} manager_1 | 2020-12-23 11:16:42.133 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1004', version='0', name='Markthal: All chargers in use', lang='JSON', createdOn='2020-12-23 11:16:41.547', lastModified='2020-12-23 11:16:41.547', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.137 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1005', version='0', name='Ons Park: Brighten lights', lang='JSON', createdOn='2020-12-23 11:16:41.553', lastModified='2020-12-23 11:16:41.553', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} keycloak_1 | 11:16:32,879 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002200: Adding class resource org.keycloak.services.resources.ThemeResource from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,879 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002205: Adding provider class org.keycloak.services.error.KeycloakErrorHandler from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,879 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002200: Adding class resource org.keycloak.services.resources.JsResource from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,880 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002205: Adding provider class org.keycloak.services.filters.KeycloakSecurityHeadersFilter from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,880 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002220: Adding singleton resource org.keycloak.services.resources.admin.AdminRoot from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,880 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002210: Adding provider singleton org.keycloak.services.util.ObjectMapperResolver from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,880 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002220: Adding singleton resource org.keycloak.services.resources.RealmsResource from Application class org.keycloak.services.resources.KeycloakApplication manager_1 | 2020-12-23 11:16:42.142 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1006', version='0', name='Ons Park: Dim lights', lang='JSON', createdOn='2020-12-23 11:16:41.557', lastModified='2020-12-23 11:16:41.556', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.143 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1007', version='0', name='Station: Crowded square', lang='JSON', createdOn='2020-12-23 11:16:41.56', lastModified='2020-12-23 11:16:41.559', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.144 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1008', version='0', name='Environment monitoring: Alerts', lang='JSON', createdOn='2020-12-23 11:16:41.563', lastModified='2020-12-23 11:16:41.563', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.145 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1009', version='0', name='Total power consumption', lang='FLOW', createdOn='2020-12-23 11:16:41.566', lastModified='2020-12-23 11:16:41.566', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.151 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.153 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Total power consumption - 0 manager_1 | 2020-12-23 11:16:42.153 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1010', version='0', name='Total power production', lang='FLOW', createdOn='2020-12-23 11:16:41.57', lastModified='2020-12-23 11:16:41.569', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.155 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.155 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Total power production - 0 manager_1 | 2020-12-23 11:16:42.156 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1011', version='0', name='De Rotterdam: Power balance', lang='FLOW', createdOn='2020-12-23 11:16:41.573', lastModified='2020-12-23 11:16:41.573', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.157 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.157 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: De Rotterdam: Power balance - 0 manager_1 | 2020-12-23 11:16:42.157 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1012', version='0', name='Parking: Occupied spaces', lang='FLOW', createdOn='2020-12-23 11:16:41.576', lastModified='2020-12-23 11:16:41.576', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.159 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.159 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Parking: Occupied spaces - 0 manager_1 | 2020-12-23 11:16:42.160 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1013', version='0', name='Parking: Almost full', lang='JSON', createdOn='2020-12-23 11:16:41.58', lastModified='2020-12-23 11:16:41.579', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.160 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1014', version='0', name='De Rotterdam: Battery use', lang='JSON', createdOn='2020-12-23 11:16:41.583', lastModified='2020-12-23 11:16:41.582', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.162 INFO [main ] org.openremote.manager.rules.RulesEngine : Compiling ruleset deployment: TenantRuleset{id='1015', version='0', name='Light group: On/Off', lang='FLOW', createdOn='2020-12-23 11:16:41.586', lastModified='2020-12-23 11:16:41.586', enabled='true', meta='null', realm='smartcity', accessPublicRead='false'} manager_1 | 2020-12-23 11:16:42.163 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.163 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.164 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.164 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.164 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.164 INFO [main ] org.openremote.rules.Rules : Flow rule created manager_1 | 2020-12-23 11:16:42.165 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Light group: On/Off - 0 manager_1 | 2020-12-23 11:16:42.165 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Light group: On/Off - 1 manager_1 | 2020-12-23 11:16:42.165 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Light group: On/Off - 2 keycloak_1 | 11:16:32,881 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002220: Adding singleton resource org.keycloak.services.resources.RobotsResource from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,881 INFO [org.jboss.resteasy.resteasy_jaxrs.i18n] (ServerService Thread Pool -- 68) RESTEASY002220: Adding singleton resource org.keycloak.services.resources.WelcomeResource from Application class org.keycloak.services.resources.KeycloakApplication keycloak_1 | 11:16:32,931 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 68) WFLYUT0021: Registered web context: '/auth' for server 'default-server' keycloak_1 | 11:16:32,982 INFO [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "keycloak-server.war" (runtime-name : "keycloak-server.war") keycloak_1 | 11:16:33,009 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server keycloak_1 | 11:16:33,011 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: Keycloak 11.0.2 (WildFly Core 12.0.3.Final) started in 14385ms - Started 687 of 992 services (703 services are lazy, passive or on-demand) keycloak_1 | 11:16:33,013 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management keycloak_1 | 11:16:33,013 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990 manager_1 | 2020-12-23 11:16:42.165 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Light group: On/Off - 3 manager_1 | 2020-12-23 11:16:42.166 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Light group: On/Off - 4 manager_1 | 2020-12-23 11:16:42.166 INFO [main ] org.openremote.manager.rules.RulesEngine : Registering rule: Light group: On/Off - 5 manager_1 | 2020-12-23 11:16:42.166 INFO [main ] rg.openremote.manager.rules.RulesService : Deploying asset rulesets manager_1 | 2020-12-23 11:16:42.170 INFO [main ] rg.openremote.manager.rules.RulesService : Loading all assets with fact attributes to initialize state of rules engines manager_1 | 2020-12-23 11:16:42.485 INFO [main ] org.openremote.manager.rules.RulesEngine : Starting: RulesEngine{id='RulesEngineId{scope=TenantRuleset, realm='smartcity', assetId='null'}', running='false', deployments='[RulesetDeployment{id=1001, name='De Kuip', version=0, status=READY}, RulesetDeployment{id=1002, name='Euromast', version=0, status=READY}, RulesetDeployment{id=1003, name='Markthal', version=0, status=READY}, RulesetDeployment{id=1004, name='Markthal: All chargers in use', version=0, status=READY}, RulesetDeployment{id=1005, name='Ons Park: Brighten lights', version=0, status=READY}, RulesetDeployment{id=1006, name='Ons Park: Dim lights', version=0, status=READY}, RulesetDeployment{id=1007, name='Station: Crowded square', version=0, status=READY}, RulesetDeployment{id=1008, name='Environment monitoring: Alerts', version=0, status=READY}, RulesetDeployment{id=1009, name='Total power consumption', version=0, status=READY}, RulesetDeployment{id=1010, name='Total power production', version=0, status=READY}, RulesetDeployment{id=1011, name='De Rotterdam: Power balance', version=0, status=READY}, RulesetDeployment{id=1012, name='Parking: Occupied spaces', version=0, status=READY}, RulesetDeployment{id=1013, name='Parking: Almost full', version=0, status=READY}, RulesetDeployment{id=1014, name='De Rotterdam: Battery use', version=0, status=READY}, RulesetDeployment{id=1015, name='Light group: On/Off', version=0, status=READY}]'} manager_1 | 2020-12-23 11:16:42.487 FINE [main ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.489 FINE [main ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.489 FINE [main ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.494 INFO [main ] org.openremote.manager.rules.RulesEngine : On RulesEngine{id='RulesEngineId{scope=TenantRuleset, realm='smartcity', assetId='null'}', running='true', deployments='[RulesetDeployment{id=1001, name='De Kuip', version=0, status=DEPLOYED}, RulesetDeployment{id=1002, name='Euromast', version=0, status=DEPLOYED}, RulesetDeployment{id=1003, name='Markthal', version=0, status=DEPLOYED}, RulesetDeployment{id=1004, name='Markthal: All chargers in use', version=0, status=DEPLOYED}, RulesetDeployment{id=1005, name='Ons Park: Brighten lights', version=0, status=DEPLOYED}, RulesetDeployment{id=1006, name='Ons Park: Dim lights', version=0, status=DEPLOYED}, RulesetDeployment{id=1007, name='Station: Crowded square', version=0, status=DEPLOYED}, RulesetDeployment{id=1008, name='Environment monitoring: Alerts', version=0, status=DEPLOYED}, RulesetDeployment{id=1009, name='Total power consumption', version=0, status=DEPLOYED}, RulesetDeployment{id=1010, name='Total power production', version=0, status=DEPLOYED}, RulesetDeployment{id=1011, name='De Rotterdam: Power balance', version=0, status=DEPLOYED}, RulesetDeployment{id=1012, name='Parking: Occupied spaces', version=0, status=DEPLOYED}, RulesetDeployment{id=1013, name='Parking: Almost full', version=0, status=DEPLOYED}, RulesetDeployment{id=1014, name='De Rotterdam: Battery use', version=0, status=DEPLOYED}, RulesetDeployment{id=1015, name='Light group: On/Off', version=0, status=DEPLOYED}]'}, enabling periodic full memory dump at FINEST level every 30 seconds on category: org.openremote.rules.RulesEngineStats manager_1 | 2020-12-23 11:16:42.512 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to WAITING: AttributeRef{entityId='6aJ3DdMLycfIJvnEGnwEsU', attributeName='weatherApiClient'} manager_1 | 2020-12-23 11:16:42.514 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to CONNECTING: AttributeRef{entityId='6aJ3DdMLycfIJvnEGnwEsU', attributeName='weatherApiClient'} manager_1 | 2020-12-23 11:16:42.518 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to CONNECTED: AttributeRef{entityId='6aJ3DdMLycfIJvnEGnwEsU', attributeName='weatherApiClient'} manager_1 | 2020-12-23 11:16:42.530 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to WAITING: AttributeRef{entityId='6wzFtBcsvtGa55MoMGeueD', attributeName='inputSimulator'} manager_1 | 2020-12-23 11:16:42.531 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to CONNECTING: AttributeRef{entityId='6wzFtBcsvtGa55MoMGeueD', attributeName='inputSimulator'} manager_1 | 2020-12-23 11:16:42.534 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to CONNECTED: AttributeRef{entityId='6wzFtBcsvtGa55MoMGeueD', attributeName='inputSimulator'} manager_1 | 2020-12-23 11:16:42.538 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to WAITING: AttributeRef{entityId='6wzFtBcsvtGa55MoMGeueD', attributeName='replaySimulator'} manager_1 | 2020-12-23 11:16:42.538 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to CONNECTING: AttributeRef{entityId='6wzFtBcsvtGa55MoMGeueD', attributeName='replaySimulator'} manager_1 | 2020-12-23 11:16:42.539 INFO [main ] rg.openremote.manager.agent.AgentService : Agent protocol status updated to CONNECTED: AttributeRef{entityId='6wzFtBcsvtGa55MoMGeueD', attributeName='replaySimulator'} manager_1 | 2020-12-23 11:16:42.551 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 3Mj9yiC6bcH4MoIYDY2T35 for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.552 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":23,"timestamp":0},{"value":21,"timestamp":3600},{"value":20,"timestamp":7200},{"value":22,"timestamp":10800},{"value":21,"timestamp":14400},{"value":22,"timestamp":18000},{"value":41,"timestamp":21600},{"value":54,"timestamp":25200},{"value":63,"timestamp":28800},{"value":76,"timestamp":32400},{"value":80,"timestamp":36000},{"value":79,"timestamp":39600},{"value":84,"timestamp":43200},{"value":76,"timestamp":46800},{"value":82,"timestamp":50400},{"value":83,"timestamp":54000},{"value":77,"timestamp":57600},{"value":71,"timestamp":61200},{"value":63,"timestamp":64800},{"value":41,"timestamp":68400},{"value":27,"timestamp":72000},{"value":22,"timestamp":75600},{"value":24,"timestamp":79200},{"value":20,"timestamp":82800}]}' for: AssetAttribute{assetId='3Mj9yiC6bcH4MoIYDY2T35', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":23,"timestamp":0},{"value":21,"timestamp":3600},{"value":20,"timestamp":7200},{"value":22,"timestamp":10800},{"value":21,"timestamp":14400},{"value":22,"timestamp":18000},{"value":41,"timestamp":21600},{"value":54,"timestamp":25200},{"value":63,"timestamp":28800},{"value":76,"timestamp":32400},{"value":80,"timestamp":36000},{"value":79,"timestamp":39600},{"value":84,"timestamp":43200},{"value":76,"timestamp":46800},{"value":82,"timestamp":50400},{"value":83,"timestamp":54000},{"value":77,"timestamp":57600},{"value":71,"timestamp":61200},{"value":63,"timestamp":64800},{"value":41,"timestamp":68400},{"value":27,"timestamp":72000},{"value":22,"timestamp":75600},{"value":24,"timestamp":79200},{"value":20,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.608718601156E12} manager_1 | 2020-12-23 11:16:42.554 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 6DW7WWYVtOybr7W1BWREc3 for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.555 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":1,"timestamp":25200},{"value":10,"timestamp":28800},{"value":15,"timestamp":32400},{"value":39,"timestamp":36000},{"value":52,"timestamp":39600},{"value":50,"timestamp":43200},{"value":48,"timestamp":46800},{"value":36,"timestamp":50400},{"value":23,"timestamp":54000},{"value":24,"timestamp":57600},{"value":18,"timestamp":61200},{"value":10,"timestamp":64800},{"value":8,"timestamp":68400},{"value":3,"timestamp":72000},{"value":1,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}' for: AssetAttribute{assetId='6DW7WWYVtOybr7W1BWREc3', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":1,"timestamp":25200},{"value":10,"timestamp":28800},{"value":15,"timestamp":32400},{"value":39,"timestamp":36000},{"value":52,"timestamp":39600},{"value":50,"timestamp":43200},{"value":48,"timestamp":46800},{"value":36,"timestamp":50400},{"value":23,"timestamp":54000},{"value":24,"timestamp":57600},{"value":18,"timestamp":61200},{"value":10,"timestamp":64800},{"value":8,"timestamp":68400},{"value":3,"timestamp":72000},{"value":1,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.60871860117E12} manager_1 | 2020-12-23 11:16:42.557 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 4oio0T4DX9lxeBsZVNIpEN for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.557 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":7,"timestamp":0},{"value":8,"timestamp":3600},{"value":7,"timestamp":7200},{"value":9,"timestamp":10800},{"value":8,"timestamp":14400},{"value":9,"timestamp":18000},{"value":12,"timestamp":21600},{"value":22,"timestamp":25200},{"value":30,"timestamp":28800},{"value":36,"timestamp":32400},{"value":39,"timestamp":36000},{"value":32,"timestamp":39600},{"value":36,"timestamp":43200},{"value":44,"timestamp":46800},{"value":47,"timestamp":50400},{"value":44,"timestamp":54000},{"value":38,"timestamp":57600},{"value":38,"timestamp":61200},{"value":34,"timestamp":64800},{"value":33,"timestamp":68400},{"value":23,"timestamp":72000},{"value":13,"timestamp":75600},{"value":9,"timestamp":79200},{"value":8,"timestamp":82800}]}' for: AssetAttribute{assetId='4oio0T4DX9lxeBsZVNIpEN', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":7,"timestamp":0},{"value":8,"timestamp":3600},{"value":7,"timestamp":7200},{"value":9,"timestamp":10800},{"value":8,"timestamp":14400},{"value":9,"timestamp":18000},{"value":12,"timestamp":21600},{"value":22,"timestamp":25200},{"value":30,"timestamp":28800},{"value":36,"timestamp":32400},{"value":39,"timestamp":36000},{"value":32,"timestamp":39600},{"value":36,"timestamp":43200},{"value":44,"timestamp":46800},{"value":47,"timestamp":50400},{"value":44,"timestamp":54000},{"value":38,"timestamp":57600},{"value":38,"timestamp":61200},{"value":34,"timestamp":64800},{"value":33,"timestamp":68400},{"value":23,"timestamp":72000},{"value":13,"timestamp":75600},{"value":9,"timestamp":79200},{"value":8,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.608718601198E12} manager_1 | 2020-12-23 11:16:42.559 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 5xgMdcrVWORYWpUKuP2Mo0 for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.560 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":1,"timestamp":25200},{"value":2,"timestamp":28800},{"value":3,"timestamp":32400},{"value":8,"timestamp":36000},{"value":14,"timestamp":39600},{"value":12,"timestamp":43200},{"value":10,"timestamp":46800},{"value":7,"timestamp":50400},{"value":5,"timestamp":54000},{"value":7,"timestamp":57600},{"value":5,"timestamp":61200},{"value":3,"timestamp":64800},{"value":2,"timestamp":68400},{"value":1,"timestamp":72000},{"value":1,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}' for: AssetAttribute{assetId='5xgMdcrVWORYWpUKuP2Mo0', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":1,"timestamp":25200},{"value":2,"timestamp":28800},{"value":3,"timestamp":32400},{"value":8,"timestamp":36000},{"value":14,"timestamp":39600},{"value":12,"timestamp":43200},{"value":10,"timestamp":46800},{"value":7,"timestamp":50400},{"value":5,"timestamp":54000},{"value":7,"timestamp":57600},{"value":5,"timestamp":61200},{"value":3,"timestamp":64800},{"value":2,"timestamp":68400},{"value":1,"timestamp":72000},{"value":1,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.608718601211E12} keycloak_1 | 11:16:36,121 INFO [org.keycloak.keys.DefaultKeyManager] (default task-1) No keys found for realm=master and algorithm=RS256 for use=SIG. Generating keys. keycloak_1 | 11:16:36,141 INFO [org.keycloak.keys.DefaultKeyManager] (default task-1) No keys found for realm=master and algorithm=HS256 for use=SIG. Generating keys. manager_1 | 2020-12-23 11:16:42.561 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 4Fnz8pxxdtDobuDGWYwRNp for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.562 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":0,"timestamp":25200},{"value":2,"timestamp":28800},{"value":6,"timestamp":32400},{"value":10,"timestamp":36000},{"value":13,"timestamp":39600},{"value":21,"timestamp":43200},{"value":14,"timestamp":46800},{"value":17,"timestamp":50400},{"value":10,"timestamp":54000},{"value":9,"timestamp":57600},{"value":7,"timestamp":61200},{"value":5,"timestamp":64800},{"value":4,"timestamp":68400},{"value":2,"timestamp":72000},{"value":1,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}' for: AssetAttribute{assetId='4Fnz8pxxdtDobuDGWYwRNp', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":0,"timestamp":25200},{"value":2,"timestamp":28800},{"value":6,"timestamp":32400},{"value":10,"timestamp":36000},{"value":13,"timestamp":39600},{"value":21,"timestamp":43200},{"value":14,"timestamp":46800},{"value":17,"timestamp":50400},{"value":10,"timestamp":54000},{"value":9,"timestamp":57600},{"value":7,"timestamp":61200},{"value":5,"timestamp":64800},{"value":4,"timestamp":68400},{"value":2,"timestamp":72000},{"value":1,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.608718601226E12} manager_1 | 2020-12-23 11:16:42.563 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 2QEKoczoTiOfLKh5UHqEf5 for attribute power in 2598 second(s) manager_1 | 2020-12-23 11:16:42.564 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":0,"timestamp":25200},{"value":0,"timestamp":28800},{"value":2,"timestamp":32400},{"value":5,"timestamp":36000},{"value":10,"timestamp":39600},{"value":5,"timestamp":43200},{"value":3,"timestamp":46800},{"value":0,"timestamp":50400},{"value":15,"timestamp":54000},{"value":32,"timestamp":57600},{"value":35,"timestamp":61200},{"value":17,"timestamp":64800},{"value":9,"timestamp":68400},{"value":6,"timestamp":72000},{"value":3,"timestamp":75600},{"value":3,"timestamp":79200},{"value":0,"timestamp":82800}]}' for: AssetAttribute{assetId='2QEKoczoTiOfLKh5UHqEf5', name='power'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Power consumption"},{"name":"urn:openremote:asset:meta:unitType","value":"POWER_KW"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":0,"timestamp":25200},{"value":0,"timestamp":28800},{"value":2,"timestamp":32400},{"value":5,"timestamp":36000},{"value":10,"timestamp":39600},{"value":5,"timestamp":43200},{"value":3,"timestamp":46800},{"value":0,"timestamp":50400},{"value":15,"timestamp":54000},{"value":32,"timestamp":57600},{"value":35,"timestamp":61200},{"value":17,"timestamp":64800},{"value":9,"timestamp":68400},{"value":6,"timestamp":72000},{"value":3,"timestamp":75600},{"value":3,"timestamp":79200},{"value":0,"timestamp":82800}]}],"type":"POWER","value":0,"valueTimestamp":1.608718601234E12} manager_1 | 2020-12-23 11:16:42.565 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 6Pgv4HQGmC0EjXg7GmNM6l for attribute power in 2598 second(s) manager_1 | 2020-12-23 11:16:42.566 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":5,"timestamp":0},{"value":0,"timestamp":3600},{"value":11,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":5,"timestamp":21600},{"value":10,"timestamp":25200},{"value":6,"timestamp":28800},{"value":3,"timestamp":32400},{"value":3,"timestamp":36000},{"value":17,"timestamp":39600},{"value":14,"timestamp":43200},{"value":9,"timestamp":46800},{"value":4,"timestamp":50400},{"value":0,"timestamp":54000},{"value":28,"timestamp":57600},{"value":38,"timestamp":61200},{"value":32,"timestamp":64800},{"value":26,"timestamp":68400},{"value":13,"timestamp":72000},{"value":6,"timestamp":75600},{"value":3,"timestamp":79200},{"value":0,"timestamp":82800}]}' for: AssetAttribute{assetId='6Pgv4HQGmC0EjXg7GmNM6l', name='power'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Power consumption"},{"name":"urn:openremote:asset:meta:unitType","value":"POWER_KW"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":5,"timestamp":0},{"value":0,"timestamp":3600},{"value":11,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":5,"timestamp":21600},{"value":10,"timestamp":25200},{"value":6,"timestamp":28800},{"value":3,"timestamp":32400},{"value":3,"timestamp":36000},{"value":17,"timestamp":39600},{"value":14,"timestamp":43200},{"value":9,"timestamp":46800},{"value":4,"timestamp":50400},{"value":0,"timestamp":54000},{"value":28,"timestamp":57600},{"value":38,"timestamp":61200},{"value":32,"timestamp":64800},{"value":26,"timestamp":68400},{"value":13,"timestamp":72000},{"value":6,"timestamp":75600},{"value":3,"timestamp":79200},{"value":0,"timestamp":82800}]}],"type":"POWER","value":0,"valueTimestamp":1.608718601241E12} manager_1 | 2020-12-23 11:16:42.569 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 6EaYX7DEAFwxOJr3de4GFf for attribute power in 2598 second(s) manager_1 | 2020-12-23 11:16:42.569 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":3,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":0,"timestamp":25200},{"value":0,"timestamp":28800},{"value":0,"timestamp":32400},{"value":4,"timestamp":36000},{"value":17,"timestamp":39600},{"value":15,"timestamp":43200},{"value":8,"timestamp":46800},{"value":16,"timestamp":50400},{"value":4,"timestamp":54000},{"value":0,"timestamp":57600},{"value":15,"timestamp":61200},{"value":34,"timestamp":64800},{"value":30,"timestamp":68400},{"value":11,"timestamp":72000},{"value":16,"timestamp":75600},{"value":7,"timestamp":79200},{"value":4,"timestamp":82800}]}' for: AssetAttribute{assetId='6EaYX7DEAFwxOJr3de4GFf', name='power'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Power consumption"},{"name":"urn:openremote:asset:meta:unitType","value":"POWER_KW"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":3,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":0,"timestamp":25200},{"value":0,"timestamp":28800},{"value":0,"timestamp":32400},{"value":4,"timestamp":36000},{"value":17,"timestamp":39600},{"value":15,"timestamp":43200},{"value":8,"timestamp":46800},{"value":16,"timestamp":50400},{"value":4,"timestamp":54000},{"value":0,"timestamp":57600},{"value":15,"timestamp":61200},{"value":34,"timestamp":64800},{"value":30,"timestamp":68400},{"value":11,"timestamp":72000},{"value":16,"timestamp":75600},{"value":7,"timestamp":79200},{"value":4,"timestamp":82800}]}],"type":"POWER","value":0,"valueTimestamp":1.608718601254E12} manager_1 | 2020-12-23 11:16:42.571 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 4jBtdIZOtA7pLxPNSwWCVa for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.571 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":6,"timestamp":0},{"value":5,"timestamp":3600},{"value":6,"timestamp":7200},{"value":7,"timestamp":10800},{"value":5,"timestamp":14400},{"value":6,"timestamp":18000},{"value":9,"timestamp":21600},{"value":23,"timestamp":25200},{"value":37,"timestamp":28800},{"value":41,"timestamp":32400},{"value":47,"timestamp":36000},{"value":49,"timestamp":39600},{"value":51,"timestamp":43200},{"value":43,"timestamp":46800},{"value":48,"timestamp":50400},{"value":45,"timestamp":54000},{"value":46,"timestamp":57600},{"value":41,"timestamp":61200},{"value":38,"timestamp":64800},{"value":30,"timestamp":68400},{"value":19,"timestamp":72000},{"value":15,"timestamp":75600},{"value":7,"timestamp":79200},{"value":6,"timestamp":82800}]}' for: AssetAttribute{assetId='4jBtdIZOtA7pLxPNSwWCVa', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":6,"timestamp":0},{"value":5,"timestamp":3600},{"value":6,"timestamp":7200},{"value":7,"timestamp":10800},{"value":5,"timestamp":14400},{"value":6,"timestamp":18000},{"value":9,"timestamp":21600},{"value":23,"timestamp":25200},{"value":37,"timestamp":28800},{"value":41,"timestamp":32400},{"value":47,"timestamp":36000},{"value":49,"timestamp":39600},{"value":51,"timestamp":43200},{"value":43,"timestamp":46800},{"value":48,"timestamp":50400},{"value":45,"timestamp":54000},{"value":46,"timestamp":57600},{"value":41,"timestamp":61200},{"value":38,"timestamp":64800},{"value":30,"timestamp":68400},{"value":19,"timestamp":72000},{"value":15,"timestamp":75600},{"value":7,"timestamp":79200},{"value":6,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.608718601267E12} manager_1 | 2020-12-23 11:16:42.573 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 6L8hVlM1fQ4dDHFM6HYA6O for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.573 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":16,"timestamp":0},{"value":16,"timestamp":3600},{"value":15,"timestamp":7200},{"value":16,"timestamp":10800},{"value":17,"timestamp":14400},{"value":16,"timestamp":18000},{"value":24,"timestamp":21600},{"value":35,"timestamp":25200},{"value":32,"timestamp":28800},{"value":33,"timestamp":32400},{"value":34,"timestamp":36000},{"value":33,"timestamp":39600},{"value":34,"timestamp":43200},{"value":31,"timestamp":46800},{"value":36,"timestamp":50400},{"value":34,"timestamp":54000},{"value":32,"timestamp":57600},{"value":37,"timestamp":61200},{"value":38,"timestamp":64800},{"value":37,"timestamp":68400},{"value":38,"timestamp":72000},{"value":35,"timestamp":75600},{"value":24,"timestamp":79200},{"value":19,"timestamp":82800}]}' for: AssetAttribute{assetId='6L8hVlM1fQ4dDHFM6HYA6O', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":16,"timestamp":0},{"value":16,"timestamp":3600},{"value":15,"timestamp":7200},{"value":16,"timestamp":10800},{"value":17,"timestamp":14400},{"value":16,"timestamp":18000},{"value":24,"timestamp":21600},{"value":35,"timestamp":25200},{"value":32,"timestamp":28800},{"value":33,"timestamp":32400},{"value":34,"timestamp":36000},{"value":33,"timestamp":39600},{"value":34,"timestamp":43200},{"value":31,"timestamp":46800},{"value":36,"timestamp":50400},{"value":34,"timestamp":54000},{"value":32,"timestamp":57600},{"value":37,"timestamp":61200},{"value":38,"timestamp":64800},{"value":37,"timestamp":68400},{"value":38,"timestamp":72000},{"value":35,"timestamp":75600},{"value":24,"timestamp":79200},{"value":19,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.608718601279E12} manager_1 | 2020-12-23 11:16:42.575 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 2RIt5xuSj1BSyaRhwU3z3I for attribute totalPower in 2598 second(s) manager_1 | 2020-12-23 11:16:42.575 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":1,"timestamp":25200},{"value":3,"timestamp":28800},{"value":8,"timestamp":32400},{"value":30,"timestamp":36000},{"value":44,"timestamp":39600},{"value":42,"timestamp":43200},{"value":41,"timestamp":46800},{"value":29,"timestamp":50400},{"value":19,"timestamp":54000},{"value":16,"timestamp":57600},{"value":11,"timestamp":61200},{"value":4,"timestamp":64800},{"value":3,"timestamp":68400},{"value":2,"timestamp":72000},{"value":0,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}' for: AssetAttribute{assetId='2RIt5xuSj1BSyaRhwU3z3I', name='totalPower'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Total power"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":0,"timestamp":0},{"value":0,"timestamp":3600},{"value":0,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0,"timestamp":18000},{"value":0,"timestamp":21600},{"value":1,"timestamp":25200},{"value":3,"timestamp":28800},{"value":8,"timestamp":32400},{"value":30,"timestamp":36000},{"value":44,"timestamp":39600},{"value":42,"timestamp":43200},{"value":41,"timestamp":46800},{"value":29,"timestamp":50400},{"value":19,"timestamp":54000},{"value":16,"timestamp":57600},{"value":11,"timestamp":61200},{"value":4,"timestamp":64800},{"value":3,"timestamp":68400},{"value":2,"timestamp":72000},{"value":0,"timestamp":75600},{"value":0,"timestamp":79200},{"value":0,"timestamp":82800}]}],"type":"POWER","valueTimestamp":1.608718601287E12} manager_1 | 2020-12-23 11:16:42.576 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2LtmnvGpsNW8rZg4xq2iij', name='nO2'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Nitrogen Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601332E12} manager_1 | 2020-12-23 11:16:42.578 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 2LtmnvGpsNW8rZg4xq2iij for attribute ozone in 2598 second(s) manager_1 | 2020-12-23 11:16:42.578 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":82,"timestamp":0},{"value":86,"timestamp":3600},{"value":81,"timestamp":7200},{"value":90,"timestamp":10800},{"value":86,"timestamp":14400},{"value":88,"timestamp":18000},{"value":82,"timestamp":21600},{"value":85,"timestamp":25200},{"value":89,"timestamp":28800},{"value":89,"timestamp":32400},{"value":110,"timestamp":36000},{"value":96,"timestamp":39600},{"value":105,"timestamp":43200},{"value":108,"timestamp":46800},{"value":115,"timestamp":50400},{"value":124,"timestamp":54000},{"value":119,"timestamp":57600},{"value":112,"timestamp":61200},{"value":108,"timestamp":64800},{"value":104,"timestamp":68400},{"value":80,"timestamp":72000},{"value":85,"timestamp":75600},{"value":89,"timestamp":79200},{"value":80,"timestamp":82800}]}' for: AssetAttribute{assetId='2LtmnvGpsNW8rZg4xq2iij', name='ozone'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Ozone Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":82,"timestamp":0},{"value":86,"timestamp":3600},{"value":81,"timestamp":7200},{"value":90,"timestamp":10800},{"value":86,"timestamp":14400},{"value":88,"timestamp":18000},{"value":82,"timestamp":21600},{"value":85,"timestamp":25200},{"value":89,"timestamp":28800},{"value":89,"timestamp":32400},{"value":110,"timestamp":36000},{"value":96,"timestamp":39600},{"value":105,"timestamp":43200},{"value":108,"timestamp":46800},{"value":115,"timestamp":50400},{"value":124,"timestamp":54000},{"value":119,"timestamp":57600},{"value":112,"timestamp":61200},{"value":108,"timestamp":64800},{"value":104,"timestamp":68400},{"value":80,"timestamp":72000},{"value":85,"timestamp":75600},{"value":89,"timestamp":79200},{"value":80,"timestamp":82800}]}],"type":"DENSITY","valueTimestamp":1.608718601332E12} manager_1 | 2020-12-23 11:16:42.579 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2LtmnvGpsNW8rZg4xq2iij', name='relHumidity'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Humidity"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"PERCENTAGE","valueTimestamp":1.608718601332E12} manager_1 | 2020-12-23 11:16:42.579 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2LtmnvGpsNW8rZg4xq2iij', name='temperature'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Temperature"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"TEMPERATURE","valueTimestamp":1.608718601332E12} manager_1 | 2020-12-23 11:16:42.580 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2LtmnvGpsNW8rZg4xq2iij', name='particlesPM1'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM1"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601332E12} manager_1 | 2020-12-23 11:16:42.580 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2LtmnvGpsNW8rZg4xq2iij', name='particlesPM10'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM10"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601332E12} manager_1 | 2020-12-23 11:16:42.581 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2LtmnvGpsNW8rZg4xq2iij', name='particlesPM2_5'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM2.5"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601332E12} manager_1 | 2020-12-23 11:16:42.581 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='5gONhfos3F5M9v8JcZSUoF', name='nO2'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Nitrogen Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601339E12} manager_1 | 2020-12-23 11:16:42.583 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 5gONhfos3F5M9v8JcZSUoF for attribute ozone in 2598 second(s) manager_1 | 2020-12-23 11:16:42.583 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":84,"timestamp":0},{"value":80,"timestamp":3600},{"value":85,"timestamp":7200},{"value":85,"timestamp":10800},{"value":90,"timestamp":14400},{"value":83,"timestamp":18000},{"value":88,"timestamp":21600},{"value":83,"timestamp":25200},{"value":80,"timestamp":28800},{"value":80,"timestamp":32400},{"value":104,"timestamp":36000},{"value":95,"timestamp":39600},{"value":97,"timestamp":43200},{"value":95,"timestamp":46800},{"value":110,"timestamp":50400},{"value":115,"timestamp":54000},{"value":122,"timestamp":57600},{"value":110,"timestamp":61200},{"value":109,"timestamp":64800},{"value":96,"timestamp":68400},{"value":80,"timestamp":72000},{"value":81,"timestamp":75600},{"value":80,"timestamp":79200},{"value":81,"timestamp":82800}]}' for: AssetAttribute{assetId='5gONhfos3F5M9v8JcZSUoF', name='ozone'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Ozone Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":84,"timestamp":0},{"value":80,"timestamp":3600},{"value":85,"timestamp":7200},{"value":85,"timestamp":10800},{"value":90,"timestamp":14400},{"value":83,"timestamp":18000},{"value":88,"timestamp":21600},{"value":83,"timestamp":25200},{"value":80,"timestamp":28800},{"value":80,"timestamp":32400},{"value":104,"timestamp":36000},{"value":95,"timestamp":39600},{"value":97,"timestamp":43200},{"value":95,"timestamp":46800},{"value":110,"timestamp":50400},{"value":115,"timestamp":54000},{"value":122,"timestamp":57600},{"value":110,"timestamp":61200},{"value":109,"timestamp":64800},{"value":96,"timestamp":68400},{"value":80,"timestamp":72000},{"value":81,"timestamp":75600},{"value":80,"timestamp":79200},{"value":81,"timestamp":82800}]}],"type":"DENSITY","valueTimestamp":1.608718601339E12} manager_1 | 2020-12-23 11:16:42.584 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='5gONhfos3F5M9v8JcZSUoF', name='relHumidity'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Humidity"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"PERCENTAGE","valueTimestamp":1.608718601339E12} manager_1 | 2020-12-23 11:16:42.584 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='5gONhfos3F5M9v8JcZSUoF', name='temperature'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Temperature"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"TEMPERATURE","valueTimestamp":1.608718601339E12} manager_1 | 2020-12-23 11:16:42.584 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='5gONhfos3F5M9v8JcZSUoF', name='particlesPM1'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM1"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601339E12} manager_1 | 2020-12-23 11:16:42.585 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='5gONhfos3F5M9v8JcZSUoF', name='particlesPM10'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM10"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601339E12} manager_1 | 2020-12-23 11:16:42.585 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='5gONhfos3F5M9v8JcZSUoF', name='particlesPM2_5'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM2.5"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601339E12} manager_1 | 2020-12-23 11:16:42.585 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='6rCPRY0vXP8vU27Hzni7qt', name='nO2'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Nitrogen Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601346E12} manager_1 | 2020-12-23 11:16:42.587 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 6rCPRY0vXP8vU27Hzni7qt for attribute ozone in 2598 second(s) manager_1 | 2020-12-23 11:16:42.587 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":87,"timestamp":0},{"value":80,"timestamp":3600},{"value":89,"timestamp":7200},{"value":89,"timestamp":10800},{"value":87,"timestamp":14400},{"value":88,"timestamp":18000},{"value":90,"timestamp":21600},{"value":83,"timestamp":25200},{"value":80,"timestamp":28800},{"value":83,"timestamp":32400},{"value":93,"timestamp":36000},{"value":97,"timestamp":39600},{"value":109,"timestamp":43200},{"value":94,"timestamp":46800},{"value":116,"timestamp":50400},{"value":122,"timestamp":54000},{"value":118,"timestamp":57600},{"value":112,"timestamp":61200},{"value":104,"timestamp":64800},{"value":105,"timestamp":68400},{"value":85,"timestamp":72000},{"value":89,"timestamp":75600},{"value":89,"timestamp":79200},{"value":85,"timestamp":82800}]}' for: AssetAttribute{assetId='6rCPRY0vXP8vU27Hzni7qt', name='ozone'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Ozone Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":87,"timestamp":0},{"value":80,"timestamp":3600},{"value":89,"timestamp":7200},{"value":89,"timestamp":10800},{"value":87,"timestamp":14400},{"value":88,"timestamp":18000},{"value":90,"timestamp":21600},{"value":83,"timestamp":25200},{"value":80,"timestamp":28800},{"value":83,"timestamp":32400},{"value":93,"timestamp":36000},{"value":97,"timestamp":39600},{"value":109,"timestamp":43200},{"value":94,"timestamp":46800},{"value":116,"timestamp":50400},{"value":122,"timestamp":54000},{"value":118,"timestamp":57600},{"value":112,"timestamp":61200},{"value":104,"timestamp":64800},{"value":105,"timestamp":68400},{"value":85,"timestamp":72000},{"value":89,"timestamp":75600},{"value":89,"timestamp":79200},{"value":85,"timestamp":82800}]}],"type":"DENSITY","valueTimestamp":1.608718601346E12} manager_1 | 2020-12-23 11:16:42.588 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='6rCPRY0vXP8vU27Hzni7qt', name='relHumidity'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Humidity"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"PERCENTAGE","valueTimestamp":1.608718601346E12} manager_1 | 2020-12-23 11:16:42.589 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='6rCPRY0vXP8vU27Hzni7qt', name='temperature'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Temperature"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"TEMPERATURE","valueTimestamp":1.608718601346E12} manager_1 | 2020-12-23 11:16:42.589 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='6rCPRY0vXP8vU27Hzni7qt', name='particlesPM1'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM1"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601346E12} manager_1 | 2020-12-23 11:16:42.589 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='6rCPRY0vXP8vU27Hzni7qt', name='particlesPM10'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM10"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601346E12} manager_1 | 2020-12-23 11:16:42.590 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='6rCPRY0vXP8vU27Hzni7qt', name='particlesPM2_5'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM2.5"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601346E12} manager_1 | 2020-12-23 11:16:42.590 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2K3nSg148fnzlSlaem0kkh', name='nO2'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Nitrogen Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601352E12} manager_1 | 2020-12-23 11:16:42.592 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 2K3nSg148fnzlSlaem0kkh for attribute ozone in 2598 second(s) manager_1 | 2020-12-23 11:16:42.593 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":90,"timestamp":0},{"value":81,"timestamp":3600},{"value":85,"timestamp":7200},{"value":81,"timestamp":10800},{"value":88,"timestamp":14400},{"value":86,"timestamp":18000},{"value":88,"timestamp":21600},{"value":84,"timestamp":25200},{"value":85,"timestamp":28800},{"value":84,"timestamp":32400},{"value":102,"timestamp":36000},{"value":104,"timestamp":39600},{"value":92,"timestamp":43200},{"value":98,"timestamp":46800},{"value":113,"timestamp":50400},{"value":117,"timestamp":54000},{"value":125,"timestamp":57600},{"value":111,"timestamp":61200},{"value":104,"timestamp":64800},{"value":103,"timestamp":68400},{"value":89,"timestamp":72000},{"value":80,"timestamp":75600},{"value":88,"timestamp":79200},{"value":81,"timestamp":82800}]}' for: AssetAttribute{assetId='2K3nSg148fnzlSlaem0kkh', name='ozone'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Ozone Level"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":90,"timestamp":0},{"value":81,"timestamp":3600},{"value":85,"timestamp":7200},{"value":81,"timestamp":10800},{"value":88,"timestamp":14400},{"value":86,"timestamp":18000},{"value":88,"timestamp":21600},{"value":84,"timestamp":25200},{"value":85,"timestamp":28800},{"value":84,"timestamp":32400},{"value":102,"timestamp":36000},{"value":104,"timestamp":39600},{"value":92,"timestamp":43200},{"value":98,"timestamp":46800},{"value":113,"timestamp":50400},{"value":117,"timestamp":54000},{"value":125,"timestamp":57600},{"value":111,"timestamp":61200},{"value":104,"timestamp":64800},{"value":103,"timestamp":68400},{"value":89,"timestamp":72000},{"value":80,"timestamp":75600},{"value":88,"timestamp":79200},{"value":81,"timestamp":82800}]}],"type":"DENSITY","valueTimestamp":1.608718601352E12} manager_1 | 2020-12-23 11:16:42.594 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2K3nSg148fnzlSlaem0kkh', name='relHumidity'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Humidity"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"PERCENTAGE","valueTimestamp":1.608718601352E12} manager_1 | 2020-12-23 11:16:42.595 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2K3nSg148fnzlSlaem0kkh', name='temperature'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Temperature"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"TEMPERATURE","valueTimestamp":1.608718601352E12} manager_1 | 2020-12-23 11:16:42.595 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2K3nSg148fnzlSlaem0kkh', name='particlesPM1'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM1"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601352E12} manager_1 | 2020-12-23 11:16:42.596 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2K3nSg148fnzlSlaem0kkh', name='particlesPM10'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM10"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601352E12} manager_1 | 2020-12-23 11:16:42.596 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='2K3nSg148fnzlSlaem0kkh', name='particlesPM2_5'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Particles PM2.5"},{"name":"urn:openremote:asset:meta:unitType","value":"DENSITY_UG_M3"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"DENSITY","valueTimestamp":1.608718601352E12} manager_1 | 2020-12-23 11:16:42.597 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 7edb2ExxUDhHowgmg53FjB for attribute waterLevel in 2598 second(s) manager_1 | 2020-12-23 11:16:42.598 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":116,"timestamp":0},{"value":115,"timestamp":3600},{"value":115,"timestamp":7200},{"value":117,"timestamp":10800},{"value":117,"timestamp":14400},{"value":111,"timestamp":18000},{"value":119,"timestamp":21600},{"value":113,"timestamp":25200},{"value":113,"timestamp":28800},{"value":118,"timestamp":32400},{"value":116,"timestamp":36000},{"value":113,"timestamp":39600},{"value":115,"timestamp":43200},{"value":115,"timestamp":46800},{"value":113,"timestamp":50400},{"value":103,"timestamp":54000},{"value":103,"timestamp":57600},{"value":110,"timestamp":61200},{"value":108,"timestamp":64800},{"value":120,"timestamp":68400},{"value":112,"timestamp":72000},{"value":120,"timestamp":75600},{"value":112,"timestamp":79200},{"value":117,"timestamp":82800}]}' for: AssetAttribute{assetId='7edb2ExxUDhHowgmg53FjB', name='waterLevel'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Water level"},{"name":"urn:openremote:asset:meta:description","value":"Level of the groundwater"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:unitType","value":"DISTANCE_CM"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":116,"timestamp":0},{"value":115,"timestamp":3600},{"value":115,"timestamp":7200},{"value":117,"timestamp":10800},{"value":117,"timestamp":14400},{"value":111,"timestamp":18000},{"value":119,"timestamp":21600},{"value":113,"timestamp":25200},{"value":113,"timestamp":28800},{"value":118,"timestamp":32400},{"value":116,"timestamp":36000},{"value":113,"timestamp":39600},{"value":115,"timestamp":43200},{"value":115,"timestamp":46800},{"value":113,"timestamp":50400},{"value":103,"timestamp":54000},{"value":103,"timestamp":57600},{"value":110,"timestamp":61200},{"value":108,"timestamp":64800},{"value":120,"timestamp":68400},{"value":112,"timestamp":72000},{"value":120,"timestamp":75600},{"value":112,"timestamp":79200},{"value":117,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601359E12} manager_1 | 2020-12-23 11:16:42.600 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 7edb2ExxUDhHowgmg53FjB for attribute soilTemperature in 2598 second(s) manager_1 | 2020-12-23 11:16:42.600 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":12.2,"timestamp":0},{"value":12.1,"timestamp":3600},{"value":12,"timestamp":7200},{"value":11.8,"timestamp":10800},{"value":11.7,"timestamp":14400},{"value":11.7,"timestamp":18000},{"value":11.9,"timestamp":21600},{"value":12.1,"timestamp":25200},{"value":12.8,"timestamp":28800},{"value":13.5,"timestamp":32400},{"value":13.9,"timestamp":36000},{"value":15.2,"timestamp":39600},{"value":15.3,"timestamp":43200},{"value":15.5,"timestamp":46800},{"value":15.5,"timestamp":50400},{"value":15.4,"timestamp":54000},{"value":15.2,"timestamp":57600},{"value":15.2,"timestamp":61200},{"value":14.6,"timestamp":64800},{"value":14.2,"timestamp":68400},{"value":13.8,"timestamp":72000},{"value":13.4,"timestamp":75600},{"value":12.8,"timestamp":79200},{"value":12.3,"timestamp":82800}]}' for: AssetAttribute{assetId='7edb2ExxUDhHowgmg53FjB', name='soilTemperature'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Soil temperature"},{"name":"urn:openremote:asset:meta:description","value":"Temperature of the soil"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":12.2,"timestamp":0},{"value":12.1,"timestamp":3600},{"value":12,"timestamp":7200},{"value":11.8,"timestamp":10800},{"value":11.7,"timestamp":14400},{"value":11.7,"timestamp":18000},{"value":11.9,"timestamp":21600},{"value":12.1,"timestamp":25200},{"value":12.8,"timestamp":28800},{"value":13.5,"timestamp":32400},{"value":13.9,"timestamp":36000},{"value":15.2,"timestamp":39600},{"value":15.3,"timestamp":43200},{"value":15.5,"timestamp":46800},{"value":15.5,"timestamp":50400},{"value":15.4,"timestamp":54000},{"value":15.2,"timestamp":57600},{"value":15.2,"timestamp":61200},{"value":14.6,"timestamp":64800},{"value":14.2,"timestamp":68400},{"value":13.8,"timestamp":72000},{"value":13.4,"timestamp":75600},{"value":12.8,"timestamp":79200},{"value":12.3,"timestamp":82800}]}],"type":"TEMPERATURE","valueTimestamp":1.608718601359E12} manager_1 | 2020-12-23 11:16:42.602 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 5rehNWufPIBl7omFpRSxKd for attribute waterLevel in 2598 second(s) manager_1 | 2020-12-23 11:16:42.602 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":110,"timestamp":0},{"value":114,"timestamp":3600},{"value":120,"timestamp":7200},{"value":118,"timestamp":10800},{"value":119,"timestamp":14400},{"value":118,"timestamp":18000},{"value":115,"timestamp":21600},{"value":114,"timestamp":25200},{"value":116,"timestamp":28800},{"value":116,"timestamp":32400},{"value":115,"timestamp":36000},{"value":111,"timestamp":39600},{"value":119,"timestamp":43200},{"value":112,"timestamp":46800},{"value":120,"timestamp":50400},{"value":109,"timestamp":54000},{"value":114,"timestamp":57600},{"value":109,"timestamp":61200},{"value":109,"timestamp":64800},{"value":113,"timestamp":68400},{"value":118,"timestamp":72000},{"value":119,"timestamp":75600},{"value":112,"timestamp":79200},{"value":113,"timestamp":82800}]}' for: AssetAttribute{assetId='5rehNWufPIBl7omFpRSxKd', name='waterLevel'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Water level"},{"name":"urn:openremote:asset:meta:description","value":"Level of the groundwater"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:unitType","value":"DISTANCE_CM"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":110,"timestamp":0},{"value":114,"timestamp":3600},{"value":120,"timestamp":7200},{"value":118,"timestamp":10800},{"value":119,"timestamp":14400},{"value":118,"timestamp":18000},{"value":115,"timestamp":21600},{"value":114,"timestamp":25200},{"value":116,"timestamp":28800},{"value":116,"timestamp":32400},{"value":115,"timestamp":36000},{"value":111,"timestamp":39600},{"value":119,"timestamp":43200},{"value":112,"timestamp":46800},{"value":120,"timestamp":50400},{"value":109,"timestamp":54000},{"value":114,"timestamp":57600},{"value":109,"timestamp":61200},{"value":109,"timestamp":64800},{"value":113,"timestamp":68400},{"value":118,"timestamp":72000},{"value":119,"timestamp":75600},{"value":112,"timestamp":79200},{"value":113,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601365E12} manager_1 | 2020-12-23 11:16:42.603 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 5rehNWufPIBl7omFpRSxKd for attribute soilTemperature in 2598 second(s) manager_1 | 2020-12-23 11:16:42.604 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":12.2,"timestamp":0},{"value":12.1,"timestamp":3600},{"value":12,"timestamp":7200},{"value":11.8,"timestamp":10800},{"value":11.7,"timestamp":14400},{"value":11.7,"timestamp":18000},{"value":11.9,"timestamp":21600},{"value":12.1,"timestamp":25200},{"value":12.8,"timestamp":28800},{"value":13.5,"timestamp":32400},{"value":13.9,"timestamp":36000},{"value":15.2,"timestamp":39600},{"value":15.3,"timestamp":43200},{"value":15.5,"timestamp":46800},{"value":15.5,"timestamp":50400},{"value":15.4,"timestamp":54000},{"value":15.2,"timestamp":57600},{"value":15.2,"timestamp":61200},{"value":14.6,"timestamp":64800},{"value":14.2,"timestamp":68400},{"value":13.8,"timestamp":72000},{"value":13.4,"timestamp":75600},{"value":12.8,"timestamp":79200},{"value":12.3,"timestamp":82800}]}' for: AssetAttribute{assetId='5rehNWufPIBl7omFpRSxKd', name='soilTemperature'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Soil temperature"},{"name":"urn:openremote:asset:meta:description","value":"Temperature of the soil"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":12.2,"timestamp":0},{"value":12.1,"timestamp":3600},{"value":12,"timestamp":7200},{"value":11.8,"timestamp":10800},{"value":11.7,"timestamp":14400},{"value":11.7,"timestamp":18000},{"value":11.9,"timestamp":21600},{"value":12.1,"timestamp":25200},{"value":12.8,"timestamp":28800},{"value":13.5,"timestamp":32400},{"value":13.9,"timestamp":36000},{"value":15.2,"timestamp":39600},{"value":15.3,"timestamp":43200},{"value":15.5,"timestamp":46800},{"value":15.5,"timestamp":50400},{"value":15.4,"timestamp":54000},{"value":15.2,"timestamp":57600},{"value":15.2,"timestamp":61200},{"value":14.6,"timestamp":64800},{"value":14.2,"timestamp":68400},{"value":13.8,"timestamp":72000},{"value":13.4,"timestamp":75600},{"value":12.8,"timestamp":79200},{"value":12.3,"timestamp":82800}]}],"type":"TEMPERATURE","valueTimestamp":1.608718601365E12} manager_1 | 2020-12-23 11:16:42.606 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 7UpFh8xef9bomHX5FpObR9 for attribute waterLevel in 2598 second(s) manager_1 | 2020-12-23 11:16:42.606 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":118,"timestamp":0},{"value":111,"timestamp":3600},{"value":112,"timestamp":7200},{"value":114,"timestamp":10800},{"value":113,"timestamp":14400},{"value":120,"timestamp":18000},{"value":118,"timestamp":21600},{"value":110,"timestamp":25200},{"value":110,"timestamp":28800},{"value":114,"timestamp":32400},{"value":112,"timestamp":36000},{"value":117,"timestamp":39600},{"value":112,"timestamp":43200},{"value":116,"timestamp":46800},{"value":118,"timestamp":50400},{"value":115,"timestamp":54000},{"value":110,"timestamp":57600},{"value":99,"timestamp":61200},{"value":103,"timestamp":64800},{"value":106,"timestamp":68400},{"value":120,"timestamp":72000},{"value":111,"timestamp":75600},{"value":112,"timestamp":79200},{"value":111,"timestamp":82800}]}' for: AssetAttribute{assetId='7UpFh8xef9bomHX5FpObR9', name='waterLevel'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Water level"},{"name":"urn:openremote:asset:meta:description","value":"Level of the groundwater"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:unitType","value":"DISTANCE_CM"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":118,"timestamp":0},{"value":111,"timestamp":3600},{"value":112,"timestamp":7200},{"value":114,"timestamp":10800},{"value":113,"timestamp":14400},{"value":120,"timestamp":18000},{"value":118,"timestamp":21600},{"value":110,"timestamp":25200},{"value":110,"timestamp":28800},{"value":114,"timestamp":32400},{"value":112,"timestamp":36000},{"value":117,"timestamp":39600},{"value":112,"timestamp":43200},{"value":116,"timestamp":46800},{"value":118,"timestamp":50400},{"value":115,"timestamp":54000},{"value":110,"timestamp":57600},{"value":99,"timestamp":61200},{"value":103,"timestamp":64800},{"value":106,"timestamp":68400},{"value":120,"timestamp":72000},{"value":111,"timestamp":75600},{"value":112,"timestamp":79200},{"value":111,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601372E12} manager_1 | 2020-12-23 11:16:42.607 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 7UpFh8xef9bomHX5FpObR9 for attribute soilTemperature in 2598 second(s) manager_1 | 2020-12-23 11:16:42.608 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":12.2,"timestamp":0},{"value":12.1,"timestamp":3600},{"value":12,"timestamp":7200},{"value":11.8,"timestamp":10800},{"value":11.7,"timestamp":14400},{"value":11.7,"timestamp":18000},{"value":11.9,"timestamp":21600},{"value":12.1,"timestamp":25200},{"value":12.8,"timestamp":28800},{"value":13.5,"timestamp":32400},{"value":13.9,"timestamp":36000},{"value":15.2,"timestamp":39600},{"value":15.3,"timestamp":43200},{"value":15.5,"timestamp":46800},{"value":15.5,"timestamp":50400},{"value":15.4,"timestamp":54000},{"value":15.2,"timestamp":57600},{"value":15.2,"timestamp":61200},{"value":14.6,"timestamp":64800},{"value":14.2,"timestamp":68400},{"value":13.8,"timestamp":72000},{"value":13.4,"timestamp":75600},{"value":12.8,"timestamp":79200},{"value":12.3,"timestamp":82800}]}' for: AssetAttribute{assetId='7UpFh8xef9bomHX5FpObR9', name='soilTemperature'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Soil temperature"},{"name":"urn:openremote:asset:meta:description","value":"Temperature of the soil"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":12.2,"timestamp":0},{"value":12.1,"timestamp":3600},{"value":12,"timestamp":7200},{"value":11.8,"timestamp":10800},{"value":11.7,"timestamp":14400},{"value":11.7,"timestamp":18000},{"value":11.9,"timestamp":21600},{"value":12.1,"timestamp":25200},{"value":12.8,"timestamp":28800},{"value":13.5,"timestamp":32400},{"value":13.9,"timestamp":36000},{"value":15.2,"timestamp":39600},{"value":15.3,"timestamp":43200},{"value":15.5,"timestamp":46800},{"value":15.5,"timestamp":50400},{"value":15.4,"timestamp":54000},{"value":15.2,"timestamp":57600},{"value":15.2,"timestamp":61200},{"value":14.6,"timestamp":64800},{"value":14.2,"timestamp":68400},{"value":13.8,"timestamp":72000},{"value":13.4,"timestamp":75600},{"value":12.8,"timestamp":79200},{"value":12.3,"timestamp":82800}]}],"type":"TEMPERATURE","valueTimestamp":1.608718601372E12} manager_1 | 2020-12-23 11:16:42.609 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 1yuaW634x1LqumPTwGxvyg for attribute occupiedSpaces in 2598 second(s) manager_1 | 2020-12-23 11:16:42.609 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":34,"timestamp":0},{"value":37,"timestamp":3600},{"value":31,"timestamp":7200},{"value":36,"timestamp":10800},{"value":32,"timestamp":14400},{"value":39,"timestamp":18000},{"value":47,"timestamp":21600},{"value":53,"timestamp":25200},{"value":165,"timestamp":28800},{"value":301,"timestamp":32400},{"value":417,"timestamp":36000},{"value":442,"timestamp":39600},{"value":489,"timestamp":43200},{"value":467,"timestamp":46800},{"value":490,"timestamp":50400},{"value":438,"timestamp":54000},{"value":457,"timestamp":57600},{"value":402,"timestamp":61200},{"value":379,"timestamp":64800},{"value":336,"timestamp":68400},{"value":257,"timestamp":72000},{"value":204,"timestamp":75600},{"value":112,"timestamp":79200},{"value":75,"timestamp":82800}]}' for: AssetAttribute{assetId='1yuaW634x1LqumPTwGxvyg', name='occupiedSpaces'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Occupied spaces"},{"name":"urn:openremote:asset:meta:description","value":"Occupied spaces in parking"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":34,"timestamp":0},{"value":37,"timestamp":3600},{"value":31,"timestamp":7200},{"value":36,"timestamp":10800},{"value":32,"timestamp":14400},{"value":39,"timestamp":18000},{"value":47,"timestamp":21600},{"value":53,"timestamp":25200},{"value":165,"timestamp":28800},{"value":301,"timestamp":32400},{"value":417,"timestamp":36000},{"value":442,"timestamp":39600},{"value":489,"timestamp":43200},{"value":467,"timestamp":46800},{"value":490,"timestamp":50400},{"value":438,"timestamp":54000},{"value":457,"timestamp":57600},{"value":402,"timestamp":61200},{"value":379,"timestamp":64800},{"value":336,"timestamp":68400},{"value":257,"timestamp":72000},{"value":204,"timestamp":75600},{"value":112,"timestamp":79200},{"value":75,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601391E12} manager_1 | 2020-12-23 11:16:42.611 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 3D49AxXerrIycM8gNd0zlK for attribute occupiedSpaces in 2598 second(s) manager_1 | 2020-12-23 11:16:42.611 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":31,"timestamp":0},{"value":24,"timestamp":3600},{"value":36,"timestamp":7200},{"value":38,"timestamp":10800},{"value":46,"timestamp":14400},{"value":48,"timestamp":18000},{"value":52,"timestamp":21600},{"value":89,"timestamp":25200},{"value":142,"timestamp":28800},{"value":187,"timestamp":32400},{"value":246,"timestamp":36000},{"value":231,"timestamp":39600},{"value":367,"timestamp":43200},{"value":345,"timestamp":46800},{"value":386,"timestamp":50400},{"value":312,"timestamp":54000},{"value":363,"timestamp":57600},{"value":276,"timestamp":61200},{"value":249,"timestamp":64800},{"value":256,"timestamp":68400},{"value":123,"timestamp":72000},{"value":153,"timestamp":75600},{"value":83,"timestamp":79200},{"value":25,"timestamp":82800}]}' for: AssetAttribute{assetId='3D49AxXerrIycM8gNd0zlK', name='occupiedSpaces'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Occupied spaces"},{"name":"urn:openremote:asset:meta:description","value":"Occupied spaces in parking"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":31,"timestamp":0},{"value":24,"timestamp":3600},{"value":36,"timestamp":7200},{"value":38,"timestamp":10800},{"value":46,"timestamp":14400},{"value":48,"timestamp":18000},{"value":52,"timestamp":21600},{"value":89,"timestamp":25200},{"value":142,"timestamp":28800},{"value":187,"timestamp":32400},{"value":246,"timestamp":36000},{"value":231,"timestamp":39600},{"value":367,"timestamp":43200},{"value":345,"timestamp":46800},{"value":386,"timestamp":50400},{"value":312,"timestamp":54000},{"value":363,"timestamp":57600},{"value":276,"timestamp":61200},{"value":249,"timestamp":64800},{"value":256,"timestamp":68400},{"value":123,"timestamp":72000},{"value":153,"timestamp":75600},{"value":83,"timestamp":79200},{"value":25,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601399E12} manager_1 | 2020-12-23 11:16:42.612 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 2tLAEBGjmRCu1KrdJn9T2Z for attribute occupiedSpaces in 2598 second(s) manager_1 | 2020-12-23 11:16:42.613 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":25,"timestamp":0},{"value":23,"timestamp":3600},{"value":23,"timestamp":7200},{"value":21,"timestamp":10800},{"value":18,"timestamp":14400},{"value":13,"timestamp":18000},{"value":29,"timestamp":21600},{"value":36,"timestamp":25200},{"value":119,"timestamp":28800},{"value":257,"timestamp":32400},{"value":357,"timestamp":36000},{"value":368,"timestamp":39600},{"value":362,"timestamp":43200},{"value":349,"timestamp":46800},{"value":370,"timestamp":50400},{"value":367,"timestamp":54000},{"value":355,"timestamp":57600},{"value":314,"timestamp":61200},{"value":254,"timestamp":64800},{"value":215,"timestamp":68400},{"value":165,"timestamp":72000},{"value":149,"timestamp":75600},{"value":108,"timestamp":79200},{"value":47,"timestamp":82800}]}' for: AssetAttribute{assetId='2tLAEBGjmRCu1KrdJn9T2Z', name='occupiedSpaces'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Occupied spaces"},{"name":"urn:openremote:asset:meta:description","value":"Occupied spaces in parking"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":25,"timestamp":0},{"value":23,"timestamp":3600},{"value":23,"timestamp":7200},{"value":21,"timestamp":10800},{"value":18,"timestamp":14400},{"value":13,"timestamp":18000},{"value":29,"timestamp":21600},{"value":36,"timestamp":25200},{"value":119,"timestamp":28800},{"value":257,"timestamp":32400},{"value":357,"timestamp":36000},{"value":368,"timestamp":39600},{"value":362,"timestamp":43200},{"value":349,"timestamp":46800},{"value":370,"timestamp":50400},{"value":367,"timestamp":54000},{"value":355,"timestamp":57600},{"value":314,"timestamp":61200},{"value":254,"timestamp":64800},{"value":215,"timestamp":68400},{"value":165,"timestamp":72000},{"value":149,"timestamp":75600},{"value":108,"timestamp":79200},{"value":47,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601406E12} manager_1 | 2020-12-23 11:16:42.613 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='51IpifWLilD1pd00xjBPjH', name='peopleCountIn'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count In"},{"name":"urn:openremote:asset:meta:description","value":"Cumulative number of people going into area"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601418E12} manager_1 | 2020-12-23 11:16:42.613 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='51IpifWLilD1pd00xjBPjH', name='peopleCountOut'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Out"},{"name":"urn:openremote:asset:meta:description","value":"Cumulative number of people leaving area"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601418E12} manager_1 | 2020-12-23 11:16:42.614 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='51IpifWLilD1pd00xjBPjH', name='peopleCountTotal'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Total"},{"name":"urn:openremote:asset:meta:description","value":"cameraCountIn - cameraCountOut"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601418E12} manager_1 | 2020-12-23 11:16:42.615 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 51IpifWLilD1pd00xjBPjH for attribute peopleCountGrowth in 2598 second(s) manager_1 | 2020-12-23 11:16:42.615 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":0.2,"timestamp":0},{"value":0.3,"timestamp":3600},{"value":0.1,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0.2,"timestamp":14400},{"value":0.4,"timestamp":18000},{"value":0.5,"timestamp":21600},{"value":0.7,"timestamp":25200},{"value":1.8,"timestamp":28800},{"value":2.1,"timestamp":32400},{"value":2.4,"timestamp":36000},{"value":1.9,"timestamp":39600},{"value":1.8,"timestamp":43200},{"value":2.1,"timestamp":46800},{"value":1.8,"timestamp":50400},{"value":1.7,"timestamp":54000},{"value":2.3,"timestamp":57600},{"value":3.1,"timestamp":61200},{"value":2.8,"timestamp":64800},{"value":2.2,"timestamp":68400},{"value":1.6,"timestamp":72000},{"value":1.7,"timestamp":75600},{"value":1.1,"timestamp":79200},{"value":0.8,"timestamp":82800}]}' for: AssetAttribute{assetId='51IpifWLilD1pd00xjBPjH', name='peopleCountGrowth'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Growth"},{"name":"urn:openremote:asset:meta:description","value":"cameraCountIn - cameraCountOut"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":0.2,"timestamp":0},{"value":0.3,"timestamp":3600},{"value":0.1,"timestamp":7200},{"value":0,"timestamp":10800},{"value":0.2,"timestamp":14400},{"value":0.4,"timestamp":18000},{"value":0.5,"timestamp":21600},{"value":0.7,"timestamp":25200},{"value":1.8,"timestamp":28800},{"value":2.1,"timestamp":32400},{"value":2.4,"timestamp":36000},{"value":1.9,"timestamp":39600},{"value":1.8,"timestamp":43200},{"value":2.1,"timestamp":46800},{"value":1.8,"timestamp":50400},{"value":1.7,"timestamp":54000},{"value":2.3,"timestamp":57600},{"value":3.1,"timestamp":61200},{"value":2.8,"timestamp":64800},{"value":2.2,"timestamp":68400},{"value":1.6,"timestamp":72000},{"value":1.7,"timestamp":75600},{"value":1.1,"timestamp":79200},{"value":0.8,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601418E12} manager_1 | 2020-12-23 11:16:42.616 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='51IpifWLilD1pd00xjBPjH', name='peopleCountInMinute'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count In Minute"},{"name":"urn:openremote:asset:meta:description","value":"Number of people going into area per minute"},{"name":"urn:openremote:asset:meta:unitType","value":"COUNT_PER_MINUTE"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601418E12} manager_1 | 2020-12-23 11:16:42.616 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='51IpifWLilD1pd00xjBPjH', name='peopleCountOutMinute'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Out Minute"},{"name":"urn:openremote:asset:meta:description","value":"Number of people leaving area per minute"},{"name":"urn:openremote:asset:meta:unitType","value":"COUNT_PER_MINUTE"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601418E12} manager_1 | 2020-12-23 11:16:42.617 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='4vD8XpKSR6iieaSLJ35nKl', name='peopleCountIn'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count In"},{"name":"urn:openremote:asset:meta:description","value":"Cumulative number of people going into area"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601427E12} manager_1 | 2020-12-23 11:16:42.617 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='4vD8XpKSR6iieaSLJ35nKl', name='peopleCountOut'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Out"},{"name":"urn:openremote:asset:meta:description","value":"Cumulative number of people leaving area"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601427E12} manager_1 | 2020-12-23 11:16:42.617 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='4vD8XpKSR6iieaSLJ35nKl', name='peopleCountTotal'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Total"},{"name":"urn:openremote:asset:meta:description","value":"cameraCountIn - cameraCountOut"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601427E12} manager_1 | 2020-12-23 11:16:42.619 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 4vD8XpKSR6iieaSLJ35nKl for attribute peopleCountGrowth in 2598 second(s) manager_1 | 2020-12-23 11:16:42.619 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":0.3,"timestamp":0},{"value":0.2,"timestamp":3600},{"value":0.3,"timestamp":7200},{"value":0.1,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0.3,"timestamp":18000},{"value":0.7,"timestamp":21600},{"value":0.6,"timestamp":25200},{"value":1.9,"timestamp":28800},{"value":2.2,"timestamp":32400},{"value":2.8,"timestamp":36000},{"value":1.6,"timestamp":39600},{"value":1.9,"timestamp":43200},{"value":2.2,"timestamp":46800},{"value":1.9,"timestamp":50400},{"value":1.6,"timestamp":54000},{"value":2.4,"timestamp":57600},{"value":3.2,"timestamp":61200},{"value":2.9,"timestamp":64800},{"value":2.3,"timestamp":68400},{"value":1.7,"timestamp":72000},{"value":1.4,"timestamp":75600},{"value":1.2,"timestamp":79200},{"value":0.7,"timestamp":82800}]}' for: AssetAttribute{assetId='4vD8XpKSR6iieaSLJ35nKl', name='peopleCountGrowth'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Growth"},{"name":"urn:openremote:asset:meta:description","value":"cameraCountIn - cameraCountOut"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":0.3,"timestamp":0},{"value":0.2,"timestamp":3600},{"value":0.3,"timestamp":7200},{"value":0.1,"timestamp":10800},{"value":0,"timestamp":14400},{"value":0.3,"timestamp":18000},{"value":0.7,"timestamp":21600},{"value":0.6,"timestamp":25200},{"value":1.9,"timestamp":28800},{"value":2.2,"timestamp":32400},{"value":2.8,"timestamp":36000},{"value":1.6,"timestamp":39600},{"value":1.9,"timestamp":43200},{"value":2.2,"timestamp":46800},{"value":1.9,"timestamp":50400},{"value":1.6,"timestamp":54000},{"value":2.4,"timestamp":57600},{"value":3.2,"timestamp":61200},{"value":2.9,"timestamp":64800},{"value":2.3,"timestamp":68400},{"value":1.7,"timestamp":72000},{"value":1.4,"timestamp":75600},{"value":1.2,"timestamp":79200},{"value":0.7,"timestamp":82800}]}],"type":"INTEGER","valueTimestamp":1.608718601427E12} manager_1 | 2020-12-23 11:16:42.619 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='4vD8XpKSR6iieaSLJ35nKl', name='peopleCountInMinute'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count In Minute"},{"name":"urn:openremote:asset:meta:description","value":"Number of people going into area per minute"},{"name":"urn:openremote:asset:meta:unitType","value":"COUNT_PER_MINUTE"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601427E12} manager_1 | 2020-12-23 11:16:42.620 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'NumberSimulatorElement{value=null}' for: AssetAttribute{assetId='4vD8XpKSR6iieaSLJ35nKl', name='peopleCountOutMinute'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"People Count Out Minute"},{"name":"urn:openremote:asset:meta:description","value":"Number of people leaving area per minute"},{"name":"urn:openremote:asset:meta:unitType","value":"COUNT_PER_MINUTE"},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"number"}],"type":"INTEGER","valueTimestamp":1.608718601427E12} manager_1 | 2020-12-23 11:16:42.621 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 5WKcxVxZqFq1GYd9b2YVGD for attribute microphoneLevel in 2598 second(s) manager_1 | 2020-12-23 11:16:42.621 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":50,"timestamp":0},{"value":46,"timestamp":3600},{"value":48,"timestamp":7200},{"value":45,"timestamp":10800},{"value":48,"timestamp":14400},{"value":47,"timestamp":18000},{"value":54,"timestamp":21600},{"value":50,"timestamp":25200},{"value":53,"timestamp":28800},{"value":57,"timestamp":32400},{"value":59,"timestamp":36000},{"value":57,"timestamp":39600},{"value":64,"timestamp":43200},{"value":60,"timestamp":46800},{"value":56,"timestamp":50400},{"value":55,"timestamp":54000},{"value":60,"timestamp":57600},{"value":68,"timestamp":61200},{"value":62,"timestamp":64800},{"value":59,"timestamp":68400},{"value":58,"timestamp":72000},{"value":60,"timestamp":75600},{"value":62,"timestamp":79200},{"value":51,"timestamp":82800}]}' for: AssetAttribute{assetId='5WKcxVxZqFq1GYd9b2YVGD', name='microphoneLevel'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Microphone Level"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":50,"timestamp":0},{"value":46,"timestamp":3600},{"value":48,"timestamp":7200},{"value":45,"timestamp":10800},{"value":48,"timestamp":14400},{"value":47,"timestamp":18000},{"value":54,"timestamp":21600},{"value":50,"timestamp":25200},{"value":53,"timestamp":28800},{"value":57,"timestamp":32400},{"value":59,"timestamp":36000},{"value":57,"timestamp":39600},{"value":64,"timestamp":43200},{"value":60,"timestamp":46800},{"value":56,"timestamp":50400},{"value":55,"timestamp":54000},{"value":60,"timestamp":57600},{"value":68,"timestamp":61200},{"value":62,"timestamp":64800},{"value":59,"timestamp":68400},{"value":58,"timestamp":72000},{"value":60,"timestamp":75600},{"value":62,"timestamp":79200},{"value":51,"timestamp":82800}]}],"type":"SOUND","valueTimestamp":1.608718601434E12} manager_1 | 2020-12-23 11:16:42.622 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 2bdD9xZlveIOabucPi9Iur for attribute microphoneLevel in 2598 second(s) manager_1 | 2020-12-23 11:16:42.622 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":57,"timestamp":0},{"value":48,"timestamp":3600},{"value":50,"timestamp":7200},{"value":45,"timestamp":10800},{"value":49,"timestamp":14400},{"value":45,"timestamp":18000},{"value":51,"timestamp":21600},{"value":54,"timestamp":25200},{"value":52,"timestamp":28800},{"value":56,"timestamp":32400},{"value":56,"timestamp":36000},{"value":58,"timestamp":39600},{"value":65,"timestamp":43200},{"value":64,"timestamp":46800},{"value":58,"timestamp":50400},{"value":60,"timestamp":54000},{"value":62,"timestamp":57600},{"value":70,"timestamp":61200},{"value":60,"timestamp":64800},{"value":55,"timestamp":68400},{"value":58,"timestamp":72000},{"value":60,"timestamp":75600},{"value":62,"timestamp":79200},{"value":58,"timestamp":82800}]}' for: AssetAttribute{assetId='2bdD9xZlveIOabucPi9Iur', name='microphoneLevel'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Microphone Level"},{"name":"urn:openremote:asset:meta:readOnly","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:ruleState","value":true},{"name":"urn:openremote:asset:meta:storeDataPoints","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":57,"timestamp":0},{"value":48,"timestamp":3600},{"value":50,"timestamp":7200},{"value":45,"timestamp":10800},{"value":49,"timestamp":14400},{"value":45,"timestamp":18000},{"value":51,"timestamp":21600},{"value":54,"timestamp":25200},{"value":52,"timestamp":28800},{"value":56,"timestamp":32400},{"value":56,"timestamp":36000},{"value":58,"timestamp":39600},{"value":65,"timestamp":43200},{"value":64,"timestamp":46800},{"value":58,"timestamp":50400},{"value":60,"timestamp":54000},{"value":62,"timestamp":57600},{"value":70,"timestamp":61200},{"value":60,"timestamp":64800},{"value":55,"timestamp":68400},{"value":58,"timestamp":72000},{"value":60,"timestamp":75600},{"value":62,"timestamp":79200},{"value":58,"timestamp":82800}]}],"type":"SOUND","valueTimestamp":1.60871860144E12} manager_1 | 2020-12-23 11:16:42.630 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 7Z1Sc6Ys2OUsL0LyPbz6Hc for attribute location in 198 second(s) manager_1 | 2020-12-23 11:16:42.632 INFO [main ] col.simulator.SimulatorProtocol.PROTOCOL : Putting element 'ReplaySimulatorElement{value=[{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":21600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":21900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":22200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":22500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":22800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":23100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":23400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":23700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":24000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":24300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":24600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":24900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":25200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":25500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":25800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":26100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":26400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":26700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":27000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":27300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":27600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":27900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":28200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":28500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":28800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":29100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":29400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":29700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":30000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":30300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":30600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":30900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":31200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":31500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":31800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":32100},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":32400},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":32700},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":33000},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":33300},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":33600},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":33900},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":34200},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":34500},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":34800},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":35100},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":35400},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":35700},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":36000},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":36300},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":36600},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":36900},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":37200},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":37500},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":37800},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":38100},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":38400},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":38700},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":39000},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":39300},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":39600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":39900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":40200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":40500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":40800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":41100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":41400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":41700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":42000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":42300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":42600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":42900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":43200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":43500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":43800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":44100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":44400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":44700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":45000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":45300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":45600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":45900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":46200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":46500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":46800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":47100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":47400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":47700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":48000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":48300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":48600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":48900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":49200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":49500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":49800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":50100},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":50400},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":50700},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":51000},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":51300},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":51600},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":51900},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":52200},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":52500},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":52800},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":53100},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":53400},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":53700},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":54000},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":54300},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":54600},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":54900},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":55200},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":55500},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":55800},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":56100},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":56400},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":56700},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":57000},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":57300},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":57600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":57900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":58200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":58500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":58800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":59100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":59400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":59700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":60000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":60300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":60600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":60900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":61200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":61500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":61800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":62100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":62400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":62700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":63000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":63300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":63600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":63900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":64200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":64500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":64800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":65100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":65400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":65700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":66000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":66300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":66600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":66900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":67200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":67500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":67800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":68100},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":68400},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":68700},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":69000},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":69300},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":69600},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":69900},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":70200},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":70500},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":70800},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":71100},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":71400},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":71700},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":72000},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":72300},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":72600},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":72900},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":73200},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":73500},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":73800},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":74100},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":74400},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":74700},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":75000},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":75300},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":75600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":75900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":76200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":76500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":76800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":77100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":77400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":77700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":78000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":78300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":78600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":78900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":79200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":79500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":79800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":80100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":80400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":80700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":81000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":81300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":81600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":81900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":82200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":82500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":82800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":83100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":83400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":83700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":84000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":84300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":84600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":84900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":85200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":85500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":85800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":86100}]}' for: AssetAttribute{assetId='7Z1Sc6Ys2OUsL0LyPbz6Hc', name='location'} {"meta":[{"name":"urn:openremote:asset:meta:label","value":"Location"},{"name":"urn:openremote:asset:meta:showOnDashboard","value":true},{"name":"urn:openremote:asset:meta:agentLink","value":["6wzFtBcsvtGa55MoMGeueD","replaySimulator"]},{"name":"urn:openremote:protocol:simulator:element","value":"replay"},{"name":"urn:openremote:protocol:simulator:replayAttributeLinkData","value":[{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":21600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":21900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":22200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":22500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":22800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":23100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":23400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":23700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":24000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":24300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":24600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":24900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":25200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":25500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":25800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":26100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":26400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":26700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":27000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":27300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":27600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":27900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":28200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":28500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":28800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":29100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":29400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":29700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":30000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":30300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":30600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":30900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":31200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":31500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":31800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":32100},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":32400},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":32700},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":33000},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":33300},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":33600},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":33900},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":34200},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":34500},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":34800},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":35100},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":35400},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":35700},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":36000},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":36300},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":36600},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":36900},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":37200},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":37500},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":37800},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":38100},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":38400},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":38700},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":39000},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":39300},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":39600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":39900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":40200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":40500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":40800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":41100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":41400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":41700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":42000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":42300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":42600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":42900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":43200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":43500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":43800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":44100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":44400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":44700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":45000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":45300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":45600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":45900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":46200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":46500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":46800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":47100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":47400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":47700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":48000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":48300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":48600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":48900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":49200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":49500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":49800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":50100},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":50400},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":50700},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":51000},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":51300},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":51600},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":51900},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":52200},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":52500},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":52800},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":53100},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":53400},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":53700},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":54000},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":54300},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":54600},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":54900},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":55200},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":55500},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":55800},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":56100},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":56400},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":56700},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":57000},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":57300},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":57600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":57900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":58200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":58500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":58800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":59100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":59400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":59700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":60000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":60300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":60600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":60900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":61200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":61500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":61800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":62100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":62400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":62700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":63000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":63300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":63600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":63900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":64200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":64500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":64800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":65100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":65400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":65700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":66000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":66300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":66600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":66900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":67200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":67500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":67800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":68100},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":68400},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":68700},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":69000},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":69300},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":69600},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":69900},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":70200},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":70500},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":70800},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":71100},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":71400},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":71700},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":72000},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":72300},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":72600},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":72900},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":73200},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":73500},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":73800},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":74100},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":74400},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":74700},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":75000},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":75300},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":75600},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":75900},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":76200},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":76500},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":76800},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":77100},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":77400},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":77700},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":78000},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":78300},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":78600},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":78900},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":79200},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":79500},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":79800},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":80100},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":80400},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":80700},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":81000},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":81300},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":81600},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":81900},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":82200},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":82500},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":82800},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":83100},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":83400},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":83700},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":84000},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":84300},{"value":{"type":"Point","coordinates":[4.484374,51.903518]},"timestamp":84600},{"value":{"type":"Point","coordinates":[4.479779,51.904404]},"timestamp":84900},{"value":{"type":"Point","coordinates":[4.482914,51.906769]},"timestamp":85200},{"value":{"type":"Point","coordinates":[4.486156,51.90857]},"timestamp":85500},{"value":{"type":"Point","coordinates":[4.483362,51.911897]},"timestamp":85800},{"value":{"type":"Point","coordinates":[4.482669,51.916436]},"timestamp":86100}]}],"type":"GEO_JSON_POINT","value":{"type":"Point","coordinates":[4.48527,51.91984]},"valueTimestamp":1.608718601512E12} manager_1 | 2020-12-23 11:16:42.780 INFO [main ] org.openremote.container.web.WebService : Webserver ready on http://0.0.0.0:8080 manager_1 | 2020-12-23 11:16:42.780 INFO [main ] org.openremote.container.Container : >>> Runtime container startup complete manager_1 | 2020-12-23 11:16:42.873 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.874 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.874 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.881 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.881 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.881 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.886 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.887 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.887 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.891 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.892 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found manager_1 | 2020-12-23 11:16:42.892 FINE [Messaging-AssetQueue-25 ] org.openremote.rules.Rules : Location predicate found proxy_1 | Starting enhanced syslogd: rsyslogd. proxy_1 | [INFO][2020-12-23 11:16:44] Checking HAProxy configuration: /etc/haproxy/haproxy.cfg proxy_1 | Configuration file is valid proxy_1 | [info] 357/111644 (48) : [acme] http-01 plugin v0.1.1 proxy_1 | Dec 23 11:16:44 localhost haproxy[48]: Proxy http started. proxy_1 | Dec 23 11:16:44 localhost haproxy[48]: Proxy https started. proxy_1 | Dec 23 11:16:44 localhost haproxy[48]: Proxy mqtt started. proxy_1 | Dec 23 11:16:44 localhost haproxy[48]: Proxy proxy_backend started. proxy_1 | [INFO][2020-12-23 11:16:44] HAProxy started with /etc/haproxy/haproxy.cfg config, pid 50.HAPROXY_CERT_FILE proxy_1 | [INFO][2020-12-23 11:16:44] Executing cron_auto_renewal_init at Wed, 23 Dec 2020 11:16:44 +0100 proxy_1 | [INFO][2020-12-23 11:16:44] Domain is 'localhost', dummy SSL certificate does not have to be renewed proxy_1 | [INFO][2020-12-23 11:16:44] Monitoring config file /etc/haproxy/haproxy.cfg and certs in /deployment/letsencrypt/live for changes... manager_1 | 2020-12-23 11:16:45.506 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1001, name='De Kuip', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.508 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 2ms manager_1 | 2020-12-23 11:16:45.508 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1002, name='Euromast', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.508 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:45.508 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1003, name='Markthal', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.508 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:45.508 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1004, name='Markthal: All chargers in use', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.511 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 3ms manager_1 | 2020-12-23 11:16:45.511 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1005, name='Ons Park: Brighten lights', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.512 INFO [Scheduled task-36 ] org.openremote.rules.RulesFired.RULES : Rule fired 'Ons Park: Brighten lights' manager_1 | 2020-12-23 11:16:45.515 FINE [Scheduled task-36 ] org.openremote.rules.Rules : JSON Rules: Writing attribute 'lightDimLevel' for 1 asset(s) for rule action: Ons Park: Brighten lights 'then' action index 0 manager_1 | 2020-12-23 11:16:45.519 FINE [Scheduled task-36 ] org.openremote.rules.Rules : JSON Rules: Writing attribute 'lightDimLevel' for 1 asset(s) for rule action: Ons Park: Brighten lights 'then' action index 1 manager_1 | 2020-12-23 11:16:45.521 FINE [Scheduled task-36 ] org.openremote.rules.Rules : JSON Rules: Writing attribute 'lightDimLevel' for 1 asset(s) for rule action: Ons Park: Brighten lights 'then' action index 2 manager_1 | 2020-12-23 11:16:45.523 FINE [Scheduled task-36 ] org.openremote.rules.Rules : JSON Rules: Writing attribute 'lightDimLevel' for 1 asset(s) for rule action: Ons Park: Brighten lights 'then' action index 3 manager_1 | 2020-12-23 11:16:45.525 FINE [Scheduled task-36 ] org.openremote.rules.Rules : JSON Rules: Writing attribute 'lightDimLevel' for 1 asset(s) for rule action: Ons Park: Brighten lights 'then' action index 4 manager_1 | 2020-12-23 11:16:45.527 FINE [Scheduled task-36 ] org.openremote.rules.Rules : JSON Rules: Writing attribute 'lightDimLevel' for 1 asset(s) for rule action: Ons Park: Brighten lights 'then' action index 5 manager_1 | 2020-12-23 11:16:45.528 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 17ms manager_1 | 2020-12-23 11:16:45.528 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1006, name='Ons Park: Dim lights', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.529 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 1ms manager_1 | 2020-12-23 11:16:45.529 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1007, name='Station: Crowded square', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.529 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:45.529 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1008, name='Environment monitoring: Alerts', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.529 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:45.529 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1009, name='Total power consumption', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.535 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule processing error: null manager_1 | 2020-12-23 11:16:45.537 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule processing error: null manager_1 | 2020-12-23 11:16:45.540 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 11ms manager_1 | 2020-12-23 11:16:45.540 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1010, name='Total power production', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.541 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule processing error: null manager_1 | 2020-12-23 11:16:45.543 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule processing error: null manager_1 | 2020-12-23 11:16:45.545 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 5ms manager_1 | 2020-12-23 11:16:45.545 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1011, name='De Rotterdam: Power balance', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.546 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule processing error: null manager_1 | 2020-12-23 11:16:45.549 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 4ms manager_1 | 2020-12-23 11:16:45.549 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1012, name='Parking: Occupied spaces', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.551 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule processing error: null manager_1 | 2020-12-23 11:16:45.551 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule processing error: null manager_1 | 2020-12-23 11:16:45.557 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 7ms manager_1 | 2020-12-23 11:16:45.557 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1013, name='Parking: Almost full', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.557 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:45.557 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1014, name='De Rotterdam: Battery use', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.557 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:45.557 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718605505E12, time=2020-12-23T11:16:45.505} of: RulesetDeployment{id=1015, name='Light group: On/Off', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:45.559 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule error: node WRITE_ATTRIBUTE receives invalid value manager_1 | 2020-12-23 11:16:45.560 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule error: node WRITE_ATTRIBUTE receives invalid value manager_1 | 2020-12-23 11:16:45.561 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule error: node WRITE_ATTRIBUTE receives invalid value manager_1 | 2020-12-23 11:16:45.562 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule error: node WRITE_ATTRIBUTE receives invalid value manager_1 | 2020-12-23 11:16:45.563 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule error: node WRITE_ATTRIBUTE receives invalid value manager_1 | 2020-12-23 11:16:45.565 WARNING [Scheduled task-36 ] org.openremote.manager.rules.RulesEngine : Flow rule error: node WRITE_ATTRIBUTE receives invalid value manager_1 | 2020-12-23 11:16:45.566 FINE [Scheduled task-36 ] org.openremote.rules.Rules : Rules executed in: 9ms manager_1 | 2020-12-23 11:16:48.569 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1001, name='De Kuip', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.570 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.570 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1002, name='Euromast', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.570 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.570 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1003, name='Markthal', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.570 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.570 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1004, name='Markthal: All chargers in use', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.571 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 1ms manager_1 | 2020-12-23 11:16:48.571 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1005, name='Ons Park: Brighten lights', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.571 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.571 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1006, name='Ons Park: Dim lights', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.571 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.572 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1007, name='Station: Crowded square', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.572 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.572 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1008, name='Environment monitoring: Alerts', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.572 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.573 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1009, name='Total power consumption', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.574 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 1ms manager_1 | 2020-12-23 11:16:48.575 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1010, name='Total power production', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.576 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 1ms manager_1 | 2020-12-23 11:16:48.576 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1011, name='De Rotterdam: Power balance', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.576 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.576 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1012, name='Parking: Occupied spaces', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.577 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 1ms manager_1 | 2020-12-23 11:16:48.577 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1013, name='Parking: Almost full', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.578 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.578 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1014, name='De Rotterdam: Battery use', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.578 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 0ms manager_1 | 2020-12-23 11:16:48.578 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Executing rules @RulesClock{timestamp=1.608718608569E12, time=2020-12-23T11:16:48.569} of: RulesetDeployment{id=1015, name='Light group: On/Off', version=0, status=DEPLOYED} manager_1 | 2020-12-23 11:16:48.579 FINE [Scheduled task-38 ] org.openremote.rules.Rules : Rules executed in: 1ms manager_1 | 2020-12-23 11:20:00.632 INFO [Scheduled task-36 ] col.simulator.SimulatorProtocol.PROTOCOL : Updating asset 7Z1Sc6Ys2OUsL0LyPbz6Hc for attribute location with value {"type":"Point","coordinates":[4.479779,51.904404]} manager_1 | 2020-12-23 11:20:00.639 INFO [Scheduled task-36 ] col.simulator.SimulatorProtocol.PROTOCOL : Next update for asset 7Z1Sc6Ys2OUsL0LyPbz6Hc for attribute location in 300 second(s)